*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #3a1020;
    --bg-card: rgba(22, 6, 14, 0.88);
    --text-primary: #ede0d4;
    --text-secondary: #b09a8e;
    --accent: #c9a84c;
    --accent-dim: rgba(201, 168, 76, 0.12);
    --border: rgba(140, 60, 80, 0.35);
}

html {
    height: 100%;
}

body {
    background: var(--bg-dark);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    position: relative;
    min-height: 100%;
    padding: 15px 15px 15px 0;
	display: flex;
  align-items: center;
}

.bg-layer {
    position: fixed;
    inset: 0;
    background: var(--bg-dark) url('bg.png') center/cover no-repeat;
    z-index: 0;
}

.center-block {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 65%;
    margin-left: auto;
    margin-right: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 52px;
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    color: var(--accent);
    animation: glow 3s ease-in-out infinite;
}

.logo svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLogo 1.5s ease-out forwards, glow 3s ease-in-out infinite 1.5s;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.8));
    }
}

.title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.new-url {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.new-url:hover {
    color: orange;
}

.banner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 32px;
}

.banner p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--accent);
    font-weight: 500;
    text-align: center;
}

.socials {
    display: flex;
    gap: 20px;
	margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .center-block {
        margin-left: auto;
        margin-right: 40px;
    }
}
@media (max-width: 1100px) {
	.bg-layer {
		background-position: left !important;
	}
}
@media (max-width: 768px) {
    body {
        padding: 40px 16px;
    }

    .center-block {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 36px 28px;
    }

    .title {
        font-size: 24px;
    }

    .logo {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
    }
}

@media (max-width: 520px) {
    body {
        padding: 24px 12px;
    }

    .center-block {
        border-radius: 12px;
        padding: 28px 18px;
    }

    .title {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .banner p {
        font-size: 13px;
    }
}

.space-1{
	height: 5px;
}