* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    min-height: 100vh;
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
}

.app-wrapper {
    min-height: 100vh;
}

.top-nav {
    background: rgba(15, 15, 25, 0.95);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Audiowide', cursive;
    font-size: 2rem;
    color: #0a0a0f;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.brand-text {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    color: #00ffff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #00ffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.menu-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #00ffff;
    border-color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.menu-link.current {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #0a0a0f;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-zone {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 15px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.hero-heading {
    font-family: 'Audiowide', cursive;
    font-size: 3.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.3rem;
    color: #c0c0c0;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid;
}

.pill-cyan {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.pill-magenta {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

.pill-yellow {
    background: rgba(255, 255, 0, 0.2);
    border-color: #ffff00;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.features-zone {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: rgba(20, 20, 30, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.box-cyan {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.box-cyan:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

.box-magenta {
    border-color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.box-magenta:hover {
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.box-yellow {
    border-color: #ffff00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.box-yellow:hover {
    box-shadow: 0 0 40px rgba(255, 255, 0, 0.5);
}

.feature-graphic {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.8;
}

.alert-zone {
    margin-bottom: 3rem;
}

.alert-container {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.alert-title {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-entry {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    color: #e0e0e0;
    line-height: 1.7;
}

.alert-entry strong {
    color: #ffc107;
}

.game-zone {
    margin-bottom: 3rem;
}

.zone-heading {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.zone-subtext {
    text-align: center;
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.game-frame-wrapper {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.advantages-zone {
    margin-bottom: 3rem;
    text-align: center;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.advantage-tile {
    background: rgba(20, 20, 30, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    text-align: left;
}

.tile-number {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    color: rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.advantage-tile h4 {
    font-family: 'Audiowide', cursive;
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 0.75rem;
}

.advantage-tile p {
    color: #b0b0b0;
    line-height: 1.7;
}

.metrics-zone {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.metric-block {
    text-align: center;
}

.metric-value {
    font-family: 'Audiowide', cursive;
    font-size: 4rem;
    color: #ff00ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.metric-label {
    font-size: 1.2rem;
    color: #c0c0c0;
    font-weight: 700;
    letter-spacing: 2px;
}

.page-top {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.page-title {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.page-desc {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-tile {
    background: rgba(20, 20, 30, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.info-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-tile h3 {
    font-family: 'Audiowide', cursive;
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-tile p {
    color: #b0b0b0;
    line-height: 1.7;
}

.doc-sections {
    max-width: 900px;
    margin: 0 auto;
}

.doc-segment {
    background: rgba(20, 20, 30, 0.6);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #00ffff;
}

.doc-segment h3 {
    font-family: 'Audiowide', cursive;
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.doc-segment p,
.doc-segment li {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.doc-segment ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.doc-segment a {
    color: #ff00ff;
    text-decoration: none;
    font-weight: 700;
}

.doc-segment a:hover {
    color: #00ffff;
    text-decoration: underline;
}

.warning-block {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 0, 0, 0.2));
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ffc107;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.warning-symbol {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.warning-block h3 {
    font-family: 'Audiowide', cursive;
    color: #ffc107;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-block p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.app-footer {
    background: rgba(15, 15, 25, 0.95);
    border-top: 2px solid #00ffff;
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(0, 255, 255, 0.2);
}

.footer-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-segment h4 {
    font-family: 'Audiowide', cursive;
    color: #00ffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-segment p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #ff00ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #00ffff;
}

.footer-legal {
    font-size: 0.9rem;
    color: #707070;
    margin-top: 1.5rem;
}

.age-check {
    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-check.show {
    display: flex;
}

.age-check-container {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.95), rgba(10, 10, 15, 0.95));
    max-width: 550px;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #00ffff;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.age-glow {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 255, 0.8); }
}

.age-check-container h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.age-check-container p {
    color: #c0c0c0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-disclaimer {
    font-size: 1rem;
    color: #909090;
}

.age-choice {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-button {
    flex: 1;
    padding: 1.25rem 2rem;
    font-family: 'Audiowide', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-button:hover {
    transform: scale(1.05);
}

.confirm-btn {
    background: linear-gradient(135deg, #00ffff, #00cccc);
    color: #0a0a0f;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.confirm-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.deny-btn {
    background: linear-gradient(135deg, #ff0080, #cc0066);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.deny-btn:hover {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
}

@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }
    
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 25, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid #00ffff;
    }
    
    .menu-items.open {
        display: flex;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .metrics-zone {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 1rem;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .age-check-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-choice {
        flex-direction: column;
    }
}
