* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Header */
.main-header {
    background: linear-gradient(90deg, #1a0033 0%, #33006b 50%, #1a0033 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(179, 136, 255, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #ffd700;
    border-color: #b388ff;
    background: rgba(179, 136, 255, 0.1);
}

.nav-link.active {
    color: #ffd700;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a0033 0%, #0a0a0a 100%);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 15px;
}

.mobile-nav {
    margin-top: 80px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav a:hover {
    background: rgba(179, 136, 255, 0.2);
    border-left-color: #ffd700;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #33006b 0%, #b388ff 50%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    background: #ffd700;
    color: #1a0033;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: #ffed4e;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ffd700;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #b388ff, transparent);
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 30px;
    background: #0f0f0f;
}

.intro-text {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    background: linear-gradient(135deg, #1a0033 0%, #33006b 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #b388ff;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(179, 136, 255, 0.4);
    border-color: #ffd700;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Critical Info */
.critical-info {
    padding: 60px 30px;
    background: #1a0033;
}

.info-banner {
    background: linear-gradient(135deg, rgba(179, 136, 255, 0.2), rgba(255, 215, 0, 0.1));
    border: 3px solid #b388ff;
    border-radius: 15px;
    padding: 40px;
}

.info-banner h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-point {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ffd700;
    font-size: 1.1rem;
}

.info-point strong {
    color: #ffd700;
}

/* Featured Game */
.featured-game {
    padding: 80px 30px;
    background: #0f0f0f;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.game-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #1a0033;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #b388ff;
    box-shadow: 0 15px 50px rgba(179, 136, 255, 0.3);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-action {
    text-align: center;
    margin-top: 40px;
}

.action-btn {
    display: inline-block;
    background: linear-gradient(90deg, #b388ff 0%, #ffd700 100%);
    color: #1a0033;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(179, 136, 255, 0.4);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(179, 136, 255, 0.6);
}

/* Platform Features */
.platform-features {
    padding: 80px 30px;
    background: #1a0033;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-block {
    background: rgba(179, 136, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(179, 136, 255, 0.3);
}

.feature-block h3 {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Additional Content */
.additional-content {
    padding: 80px 30px;
    background: #0f0f0f;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.content-col {
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #b388ff;
}

.content-col h3 {
    font-size: 1.7rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content-col p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background: #1a0033;
    padding: 60px 30px 30px;
    margin-top: 80px;
    border-top: 3px solid #b388ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffd700;
}

.age-indicator {
    display: inline-block;
    background: #ffd700;
    color: #1a0033;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-note {
    font-size: 0.95rem;
    font-weight: 600;
    color: #b388ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(179, 136, 255, 0.3);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #33006b 0%, #b388ff 100%);
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.page-header p {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.updated-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* Game Instructions */
.game-instructions {
    padding: 50px 30px;
    background: #0f0f0f;
}

.instructions-box {
    background: linear-gradient(135deg, #1a0033 0%, #33006b 100%);
    border: 3px solid #b388ff;
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.instructions-box h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.instruction-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    font-size: 1rem;
}

.instruction-item strong {
    color: #ffd700;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Game Area */
.game-area {
    padding: 50px 30px;
    background: #1a0033;
}

.game-frame-container {
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #b388ff;
    box-shadow: 0 20px 60px rgba(179, 136, 255, 0.4);
}

.game-frame-play {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

/* Technical Info */
.technical-info {
    padding: 60px 30px;
    background: #0f0f0f;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #b388ff;
}

.tech-card h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tech-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Legal Section */
.legal-section {
    padding: 80px 30px;
    background: #0f0f0f;
}

.legal-document {
    max-width: 950px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-document p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.terms-summary,
.privacy-summary,
.disclaimer-alert {
    background: linear-gradient(135deg, rgba(179, 136, 255, 0.2), rgba(255, 215, 0, 0.1));
    border: 3px solid #b388ff;
    border-radius: 15px;
    padding: 35px;
    margin-top: 50px;
}

.terms-summary h3,
.privacy-summary h3,
.disclaimer-alert h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.disclaimer-alert ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer-alert li {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #ffd700;
}

.disclaimer-alert li strong {
    color: #ffd700;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a0033 0%, #33006b 100%);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #ffd700;
    box-shadow: 0 25px 80px rgba(179, 136, 255, 0.5);
}

.age-icon {
    font-size: 5rem;
    margin-bottom: 25px;
}

.age-modal-content h2 {
    font-size: 2.3rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-modal-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-confirm,
.btn-decline {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #ffd700;
    color: #1a0033;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-confirm:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-decline {
    background: #6c757d;
    color: white;
}

.btn-decline:hover {
    background: #5a6268;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .benefits-grid,
    .features-layout,
    .content-columns,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .game-embed {
        height: 450px;
    }
    
    .game-frame-play {
        height: 550px;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .btn-confirm,
    .btn-decline {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
