:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #f3e5ab; /* Champagne */
    --text-secondary: #a8a8a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at center, #111111 0%, #000000 100%);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Import Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&display=swap');

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwMDAwIiBvcGFjaXR5PSIwLjEiLz4KPC9zdmc+'); /* Subtle grainy texture */
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(243, 229, 171, 0.1);
    border-radius: 20px; /* Soft corners for container */
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    font-variant: small-caps;
    text-shadow: 0 0 20px rgba(243, 229, 171, 0.2);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: #fff;
    font-style: italic;
    background: linear-gradient(to bottom, #ffffff, #f3e5ab);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 4rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: var(--accent-color);
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(243, 229, 171, 0.3);
}

footer {
    margin-top: 4rem;
}

.line {
    width: 1px;
    height: 60px;
    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.5;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* 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.2s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 { font-size: 3.5rem; }
    .container { border: none; }
}


/* Footer Telegram Button (Auto-generated to match theme) */
.footer-telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 4rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.footer-telegram-button:hover {
    background: var(--accent-color);
    color: #050505;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(243, 229, 171, 0.3);
}
