* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(to bottom, #001f3f 0%, #003d5c 50%, #005f73 100%);
    color: #ffffff;
    min-height: 100vh;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 30, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #003d5c 0%, #005f73 100%);
    padding: 50px 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.age-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.age-box h1 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn-confirm, .btn-decline {
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.btn-confirm {
    background: #00d4ff;
    color: #001f3f;
}

.btn-confirm:hover {
    background: #00b8e6;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar {
    background: rgba(0, 31, 63, 0.95);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
}

.brand-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active {
    color: #001f3f;
    background: #00d4ff;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #00d4ff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-wrapper {
    padding: 0;
}

.hero {
    background: linear-gradient(135deg, #003d5c 0%, #005f73 50%, #007991 100%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 4px solid #00d4ff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-lead {
    font-size: 1.5rem;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #00d4ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #00d4ff;
    font-weight: 700;
}

.info-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.key-points {
    padding: 60px 0;
    background: rgba(0, 95, 115, 0.2);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.point-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.point-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.point-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #00d4ff;
    font-weight: 700;
}

.point-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.game-showcase {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00d4ff;
    font-weight: 700;
    text-align: center;
}

.game-showcase p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #e0e0e0;
    text-align: center;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.benefits {
    padding: 60px 0;
    background: rgba(0, 95, 115, 0.15);
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #00d4ff;
    font-weight: 700;
    text-align: center;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00d4ff;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.about-platform {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.25);
}

.about-platform h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #00d4ff;
    font-weight: 700;
}

.about-platform p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-header {
    padding: 60px 0;
    text-align: center;
    background: rgba(0, 95, 115, 0.3);
    border-bottom: 3px solid #00d4ff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #00d4ff;
    font-weight: 700;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.game-area {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.browser-list {
    list-style: none;
    padding-left: 0;
}

.browser-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00d4ff;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #d0d0d0;
}

.critical-notice {
    background: rgba(0, 212, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #00d4ff;
    margin-bottom: 40px;
}

.critical-notice h2 {
    margin-top: 0;
    font-size: 2.2rem;
    color: #00d4ff;
}

.critical-notice p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 0 30px;
    border-top: 4px solid #00d4ff;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #00d4ff;
    font-weight: 700;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #d0d0d0;
}

.footer-col a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00b8e6;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    color: #b0b0b0;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(0, 31, 63, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease;
        border-left: 3px solid #00d4ff;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .game-iframe {
        height: 500px;
    }
    
    .game-iframe-full {
        height: 550px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .container, .container-wide {
        padding: 0 20px;
    }
    
    .age-box {
        padding: 35px 25px;
        margin: 20px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .game-iframe, .game-iframe-full {
        height: 400px;
    }
}
