:root {
    --primary-color: #d4af37;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent-text: #b8860b;
    --border-color: #333;
    --input-bg: #2a2a2a;
    --success-color: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0d0d0d 100%);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    text-align: center;
}

header {
    margin-bottom: 60px;
}

header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.3rem;
    color: var(--accent-text);
    font-style: italic;
    letter-spacing: 1px;
}

main {
    margin-bottom: 40px;
}

.coming-soon h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.coming-soon p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.feature {
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.feature:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-color: var(--primary-color);
}

.feature .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature p {
    font-size: 0.95rem;
    color: #aaa;
}

footer {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 60px;
    color: #999;
    font-size: 0.95rem;
}

footer p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .coming-soon h2 {
        font-size: 1.8rem;
    }

    .coming-soon p {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .feature .icon {
        font-size: 2rem;
    }
}
