* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0e27;
    color: #e0e7ff;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* Age Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification-modal.hidden {
    display: none;
}

.modal-container {
    max-width: 550px;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 3px solid #3b82f6;
    border-radius: 0;
    overflow: hidden;
}

.modal-header {
    background: #3b82f6;
    padding: 30px;
    text-align: center;
}

.modal-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 2rem;
    color: #0a0e27;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.modal-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.modal-footer {
    padding: 0 30px 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.btn-secondary:hover {
    background: #ef4444;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Page Container */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Nav */
.top-nav {
    background: #1e293b;
    border-bottom: 3px solid #3b82f6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-links a:hover::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: #3b82f6;
    transition: all 0.3s;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
}

.content-box {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Block */
.hero-block {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-bottom: 3px solid #3b82f6;
}

.hero-block h1 {
    font-size: 5rem;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hero-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 900px;
}

/* Info Block */
.info-block {
    padding: 100px 0;
}

.info-block h2 {
    font-size: 3rem;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cbd5e1;
}

/* Features Block */
.features-block {
    padding: 100px 0;
    background: #0f172a;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-box {
    border: 3px solid;
    padding: 40px 35px;
}

.feature-box.danger {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
}

.feature-box.success {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
}

.feature-box.warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

.feature-label {
    display: inline-block;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.feature-box.danger .feature-label {
    background: #ef4444;
    color: #ffffff;
}

.feature-box.success .feature-label {
    background: #10b981;
    color: #ffffff;
}

.feature-box.warning .feature-label {
    background: #f59e0b;
    color: #0a0e27;
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-box.danger h3 {
    color: #ef4444;
}

.feature-box.success h3 {
    color: #10b981;
}

.feature-box.warning h3 {
    color: #f59e0b;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Game Block */
.game-block {
    padding: 100px 0;
}

.game-header {
    text-align: center;
    margin-bottom: 50px;
}

.game-header h2 {
    font-size: 3rem;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.game-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.game-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border: 3px solid #3b82f6;
    background: #0f172a;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.game-badge {
    padding: 10px 20px;
    background: #1e293b;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Specs Block */
.specs-block {
    padding: 100px 0;
    background: #0f172a;
}

.specs-block h2 {
    font-size: 3rem;
    color: #3b82f6;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.spec-card {
    background: #1e293b;
    padding: 40px 30px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s;
}

.spec-card:hover {
    transform: translateX(5px);
}

.spec-number {
    font-size: 2rem;
    color: rgba(59, 130, 246, 0.3);
    font-weight: 700;
    margin-bottom: 15px;
}

.spec-card h3 {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.spec-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Responsibility Block */
.responsibility-block {
    padding: 100px 0;
}

.responsibility-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 50px;
    border: 3px solid #3b82f6;
    max-width: 1200px;
    margin: 0 auto;
}

.responsibility-box h2 {
    font-size: 2.5rem;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.responsibility-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cbd5e1;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: #1e293b;
    border-bottom: 3px solid #3b82f6;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.legal-meta {
    font-size: 1rem;
    color: #64748b;
}

/* Fullscreen Game */
.fullscreen-game {
    padding: 0;
}

.fullscreen-game-wrapper {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border-top: 3px solid #3b82f6;
    border-bottom: 3px solid #3b82f6;
    background: #0f172a;
}

.fullscreen-game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Instructions Block */
.instructions-block {
    padding: 100px 0;
}

.instructions-block h2 {
    font-size: 3rem;
    color: #3b82f6;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.instruction-item {
    background: #1e293b;
    padding: 40px 30px;
    border-left: 4px solid #10b981;
    text-align: center;
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.instruction-item h3 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.instruction-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Warning Block */
.warning-block {
    padding: 80px 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    padding: 40px;
    border: 3px solid #ef4444;
    max-width: 1200px;
    margin: 0 auto;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.warning-icon {
    font-size: 2.5rem;
}

.warning-header h3 {
    font-size: 2rem;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

/* Legal Block */
.legal-block {
    padding: 80px 0;
}

.legal-document h2 {
    font-size: 2rem;
    color: #3b82f6;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cbd5e1;
}

/* Footer */
.site-footer {
    background: #1e293b;
    padding: 70px 0 30px;
    border-top: 3px solid #3b82f6;
    margin-top: 100px;
}

.footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(59, 130, 246, 0.3);
    color: #64748b;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #1e293b;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: right 0.3s;
        border-left: 3px solid #3b82f6;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-block h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .info-block h2,
    .specs-block h2,
    .instructions-block h2,
    .game-header h2 {
        font-size: 2.3rem;
    }

    .feature-row,
    .specs-grid,
    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .game-container {
        aspect-ratio: 4 / 3;
    }

    .fullscreen-game-wrapper {
        height: 60vh;
        min-height: 400px;
    }

    .modal-container {
        margin: 20px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .responsibility-box,
    .warning-box {
        padding: 30px 25px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}
