* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Verification Modal */
.age-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;
    backdrop-filter: blur(10px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border: 2px solid #00ff88;
    padding: 3rem 2.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.age-subtext {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #00ff88;
    color: #0a0e27;
}

.btn-confirm:hover {
    background: #00cc6f;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.btn-deny {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

.btn-deny:hover {
    background: rgba(255, 68, 68, 0.1);
}

/* Navigation */
.main-nav {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #00ff88;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #1a1f3a;
    padding: 1.5rem;
    border-bottom: 1px solid #00ff88;
}

.mobile-menu a {
    font-family: 'Orbitron', sans-serif;
    color: #b0b0b0;
    text-decoration: none;
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid #2a2f4a;
}

.mobile-menu.active {
    display: flex;
}

/* Main Content */
.main-content {
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 8rem 3rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #888;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00ff88;
    color: #0a0e27;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 5px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cta-primary:hover {
    background: #00cc6f;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 4rem 3rem;
    background: #0f1329;
}

.feature-item {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1329 100%);
    border: 1px solid #2a2f4a;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Critical Info */
.critical-info {
    padding: 5rem 3rem;
    background: #0a0e27;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.info-header p {
    font-size: 1.1rem;
    color: #888;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-block {
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.info-block.accent-red {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
}

.info-block.accent-blue {
    background: rgba(68, 138, 255, 0.1);
    border-color: #448aff;
}

.info-block.accent-yellow {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.info-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-block p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Game Preview */
.game-preview {
    padding: 5rem 3rem;
    background: #0f1329;
}

.preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.preview-header p {
    font-size: 1.1rem;
    color: #888;
}

.game-frame {
    max-width: 1400px;
    margin: 0 auto 2rem;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #00ff88;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.preview-footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1329 100%);
    border-radius: 8px;
    max-width: 1400px;
    margin: 0 auto;
}

.preview-footer p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.preview-footer a {
    color: #00ff88;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #00ff88;
}

/* Platform Info */
.platform-info {
    padding: 5rem 3rem;
    background: #0a0e27;
}

.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.info-left h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.info-left p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.9;
}

.benefit-list {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1329 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #2a2f4a;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2f4a;
}

.benefit-item:last-child {
    border-bottom: none;
}

.check-icon {
    font-size: 1.5rem;
    color: #00ff88;
    font-weight: 900;
}

.benefit-item span:last-child {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Responsibility Section */
.responsibility-section {
    padding: 5rem 3rem;
    background: #0f1329;
    text-align: center;
}

.responsibility-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.section-lead {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.resp-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #2a2f4a;
    transition: all 0.3s ease;
}

.resp-card:hover {
    border-color: #00ff88;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
}

.resp-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.resp-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #060814;
    border-top: 1px solid #00ff88;
    padding: 3rem 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-col p {
    color: #888;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a1f3a;
    color: #666;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 5rem 1.5rem;
    }
    
    .features-grid,
    .critical-info,
    .game-preview,
    .platform-info,
    .responsibility-section {
        padding: 3rem 1.5rem;
    }
    
    .info-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-frame iframe {
        height: 400px;
    }
    
    .age-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}
