* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(to bottom, #1c1410 0%, #2d1f15 50%, #1c1410 100%);
    color: #f5f5dc;
    line-height: 1.7;
}

.age-verification {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.age-verification.hidden {
    display: none;
}

.verification-card {
    background: linear-gradient(135deg, #78350f 0%, #d97706 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.5);
    border: 3px solid #fcd34d;
}

.verification-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.verification-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.verification-card p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fef3c7;
}

.verification-note {
    font-size: 1rem;
    font-style: italic;
    color: #fde68a;
}

.verification-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-confirm,
.btn-decline {
    flex: 1;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-confirm {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
}

.btn-decline {
    background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%);
    color: white;
}

.btn-decline:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
}

.main-header {
    background: linear-gradient(90deg, #78350f 0%, #92400e 50%, #78350f 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #d97706;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fcd34d;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #fef3c7;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(252, 211, 77, 0.2);
    color: #fcd34d;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fcd34d;
    transition: 0.3s;
    border-radius: 3px;
}

.content-wrapper {
    min-height: 100vh;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.8) 0%, rgba(146, 64, 14, 0.8) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d97706" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 5px solid #d97706;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fcd34d;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.8rem;
    color: #fef3c7;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.6);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 5rem 0;
    background: rgba(45, 31, 21, 0.5);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #fcd34d;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.3rem;
    text-align: center;
    color: #fef3c7;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

.features-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.3) 0%, rgba(146, 64, 14, 0.3) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.showcase-item {
    background: rgba(45, 31, 21, 0.7);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d97706;
    transition: all 0.3s;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3);
    border-color: #fcd34d;
}

.showcase-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.showcase-item h3 {
    font-size: 2rem;
    color: #fcd34d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-item p {
    font-size: 1.1rem;
    color: #fef3c7;
    line-height: 1.8;
}

.game-feature {
    padding: 5rem 0;
    background: rgba(28, 20, 16, 0.8);
}

.game-embed {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #d97706;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border-radius: 10px;
}

.important-notices {
    padding: 5rem 0;
    background: rgba(45, 31, 21, 0.5);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.notice-card {
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid;
}

.red-notice {
    background: rgba(153, 27, 27, 0.2);
    border-color: #ef4444;
}

.yellow-notice {
    background: rgba(161, 98, 7, 0.2);
    border-color: #fbbf24;
}

.orange-notice {
    background: rgba(194, 65, 12, 0.2);
    border-color: #f97316;
}

.notice-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.notice-card p {
    font-size: 1.1rem;
    color: #fef3c7;
    line-height: 1.8;
}

.additional-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.2) 0%, rgba(146, 64, 14, 0.2) 100%);
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-panel {
    background: rgba(45, 31, 21, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #d97706;
    transition: all 0.3s;
}

.info-panel:hover {
    border-left-width: 10px;
    background: rgba(45, 31, 21, 0.8);
}

.info-panel h3 {
    font-size: 1.8rem;
    color: #fcd34d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-panel p {
    font-size: 1.1rem;
    color: #fef3c7;
    line-height: 1.7;
}

.site-footer {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 5px solid #d97706;
}

.site-footer h4 {
    font-size: 2rem;
    color: #fcd34d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.site-footer p {
    font-size: 1.2rem;
    color: #fef3c7;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-links a {
    color: #fcd34d;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    font-size: 1rem;
    color: #d1d5db;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #78350f;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        border-bottom: 3px solid #d97706;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-item {
        padding: 1rem 2rem;
        border-radius: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .verification-actions {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}