:root {
    --bg-color: #020410;
    --text-color: #e6eaff;
    --accent-color: #9c27b0; /* Velvet Purple */
    --text-secondary: #708090;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #020410 0%, #0a112e 50%, #020410 100%);
    color: var(--text-color);
    font-family: 'Sora', 'Inter', system-ui, sans-serif; /* Modern, tech */
    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(156, 39, 176, 0.05) 0%,
        rgba(0, 0, 0, 0.55) 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: 1.8rem;
    color: var(--accent-color);
    letter-spacing: 0.25em;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.6);
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(to bottom, #ffffff, #e0aaf0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(156, 39, 176, 0.3));
}

h2 {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: rgba(156, 39, 176, 0.05);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: var(--accent-color);
    color: #020410;
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
    transform: translateY(-2px);
}

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.3;
}

footer p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.4;
    margin: 0;
    letter-spacing: 0.1em;
}

/* 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(156, 39, 176, 0.05);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-telegram-button:hover {
    background: var(--accent-color);
    color: #020410;
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
    transform: translateY(-2px);
}
