* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6b 50%, #2d1450 100%);
    color: #f0e6d2;
    min-height: 100vh;
    line-height: 1.7;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 46, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(145deg, #2d1450, #4a1a6b);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.age-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 700;
}

.age-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #e0d5c7;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-age {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-age:hover {
    background: #d4af37;
    color: #1a0a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

header {
    background: rgba(26, 10, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #f0e6d2;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #d4af37;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    padding: 100px 30px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #e0d5c7;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a0a2e;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.features {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(74, 26, 107, 0.3);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.feature-card p {
    color: #e0d5c7;
    font-size: 1.1rem;
}

.game-section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #d4af37;
    font-weight: 700;
}

.game-container {
    background: rgba(26, 10, 46, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
}

footer {
    background: rgba(26, 10, 46, 0.9);
    padding: 60px 30px 30px;
    margin-top: 100px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4d03f;
}

.footer-disclaimer {
    font-size: 0.95rem;
    color: #b8a890;
    margin: 30px 0;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
}

.legal-content h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e0d5c7;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
    color: #e0d5c7;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(26, 10, 46, 0.98);
        transition: right 0.3s ease;
        padding-top: 80px;
        border-left: 2px solid #d4af37;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 20px 30px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}
