:root {
    --bg-color: #0f0505;
    --text-color: #ffe6e6;
    --accent-color: #ff0055;
    --text-secondary: #b38080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f0505 0%, #2b0a12 50%, #0f0505 100%);
    color: var(--text-color);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 0, 85, 0.08) 0%,
        rgba(0, 0, 0, 0.5) 80%
    );
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
}

.logo {
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-color);
    letter-spacing: 0.15em;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.6);
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ffccd5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.6);
}

footer {
    margin-top: 3rem;
}

.line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    margin: 0 auto 1rem auto;
    opacity: 0.5;
}

footer p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin: 0;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.8rem; }
}


/* Footer Telegram Button (Auto-generated to match theme) */
.footer-telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

.footer-telegram-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.6);
}
