* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0A0E27;
    color: #E0E0E0;
    line-height: 1.6;
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.97);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verification.show {
    display: flex;
}

.age-box {
    background: linear-gradient(145deg, #1A1F3A, #0F1629);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 2px solid #00D9FF;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.age-icon-wrapper {
    margin-bottom: 30px;
}

.age-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00D9FF, #0099CC);
    color: #0A0E27;
    font-size: 3em;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.age-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2em;
    color: #00D9FF;
    margin-bottom: 20px;
}

.age-box p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.age-info {
    color: #999;
    font-size: 0.9em !important;
}

.age-button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.age-accept, .age-decline {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.age-accept {
    background: linear-gradient(135deg, #00D9FF, #0099CC);
    color: #0A0E27;
}

.age-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.4);
}

.age-decline {
    background: #2A2F45;
    color: #999;
}

.age-decline:hover {
    background: #3A3F55;
}

.top-nav {
    background: rgba(26, 31, 58, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #00D9FF;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #00D9FF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05em;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #00D9FF;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00D9FF;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.main-header {
    background: linear-gradient(135deg, #00D9FF 0%, #0099CC 50%, #006699 100%);
    padding: 120px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><polygon points="30,5 55,20 55,40 30,55 5,40 5,20" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4em;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #0A0E27;
    color: #00D9FF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    border: 2px solid #00D9FF;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
    background: #00D9FF;
    color: #0A0E27;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-section {
    padding: 100px 30px;
    background: #0F1629;
}

.intro-card {
    background: linear-gradient(145deg, #1A1F3A, #0F1629);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.intro-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5em;
    color: #00D9FF;
    margin-bottom: 30px;
}

.intro-card p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.game-showcase {
    padding: 100px 30px;
    background: #0A0E27;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8em;
    color: #00D9FF;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2em;
    color: #888;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.info-cards {
    padding: 100px 30px;
    background: #0F1629;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-card {
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.card-cyan {
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.1), rgba(0, 153, 204, 0.05));
    border-color: rgba(0, 217, 255, 0.3);
}

.card-purple {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.1), rgba(126, 34, 206, 0.05));
    border-color: rgba(147, 51, 234, 0.3);
}

.card-orange {
    background: linear-gradient(145deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.05));
    border-color: rgba(251, 146, 60, 0.3);
}

.info-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6em;
    color: #00D9FF;
    margin-bottom: 20px;
}

.info-card p {
    color: #B0B0B0;
    line-height: 1.7;
}

.features-section {
    padding: 100px 30px;
    background: #0A0E27;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(145deg, #1A1F3A, #0F1629);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #00D9FF;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    color: #00D9FF;
    margin-bottom: 15px;
}

.feature-box p {
    color: #999;
    line-height: 1.6;
}

.final-cta {
    padding: 120px 30px;
    background: linear-gradient(135deg, #00D9FF 0%, #0099CC 50%, #006699 100%);
    text-align: center;
    color: #FFF;
}

.final-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.site-footer {
    background: #0F1629;
    padding: 70px 30px 30px;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #00D9FF;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.footer-column p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.7;
}

.support-links, .legal-links {
    list-style: none;
}

.support-links li, .legal-links li {
    margin-bottom: 12px;
}

.support-links a, .legal-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover, .legal-links a:hover {
    color: #00D9FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: #666;
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(26, 31, 58, 0.98);
        flex-direction: column;
        padding: 40px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(0, 217, 255, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    }

    .header-content h1 {
        font-size: 2.5em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .section-title h2 {
        font-size: 2em;
    }

    .game-iframe {
        height: 450px;
    }

    .intro-card {
        padding: 40px 30px;
    }

    .intro-card h2 {
        font-size: 2em;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .age-button-group {
        flex-direction: column;
    }
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
    background: #0F1629;
    min-height: calc(100vh - 200px);
}

.content-wrapper h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3em;
    color: #00D9FF;
    margin-bottom: 10px;
}

.updated-date {
    color: #666;
    margin-bottom: 40px;
}

.content-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9em;
    color: #00D9FF;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper p {
    color: #B0B0B0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.play-header {
    background: linear-gradient(135deg, #00D9FF 0%, #0099CC 100%);
    padding: 80px 30px;
    text-align: center;
    color: #FFF;
}

.play-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.play-intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.play-content {
    padding: 80px 30px;
    background: #0A0E27;
}

.game-info-box {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 40px;
    background: linear-gradient(145deg, #1A1F3A, #0F1629);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.game-info-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6em;
    color: #00D9FF;
    margin-bottom: 20px;
}

.game-info-box p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
}