:root {
    --bg-color: #0e0e0e;
    --text-color: #f5f5f5;
    --accent-color: #e6b8a2;
    --text-secondary: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMGUwZTBlIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiMxYTFhMWEiLz4KPC9zdmc+');
    color: var(--text-color);
    font-family: 'Lato', 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(230, 184, 162, 0.1) 0%,
        rgba(0, 0, 0, 0.6) 80%
    );
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
}

header {
    margin-bottom: 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem; /* Increased size */
    color: var(--accent-color);
    letter-spacing: 0.2rem;
    opacity: 1; /* Increased opacity */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.ornament {
    width: 100px;
    height: 2px;
    background: var(--accent-color);
    position: relative;
    margin: 0 auto 2rem;
}

.ornament::before, .ornament::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: var(--accent-color);
    top: 50%; transform: translateY(-50%) rotate(45deg);
}
.ornament::before { left: -3px; }
.ornament::after { right: -3px; }

main {
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-style: italic;
}

h2 {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.separator {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.4);
    margin: 1.5rem auto;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    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: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

footer {
    margin-top: 3rem;
}

.line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.5), transparent);
    margin: 0 auto 1rem auto;
}

footer p {
    font-size: 0.7rem;
    color: rgba(212, 175, 55, 0.5);
    letter-spacing: 0.2em;
    margin: 0;
}

/* Анимации */
.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.5rem; }
}


/* Footer Telegram Button (Auto-generated to match theme) */
.footer-telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.footer-telegram-button:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
