* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    color: #f0f0f0;
    line-height: 1.6;
}

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal-overlay.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 3px solid #00bcd4;
    box-shadow: 0 0 60px rgba(0, 188, 212, 0.4);
}

.age-modal-icon {
    margin-bottom: 2rem;
}

.age-modal-box h2 {
    font-size: 2.2rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-modal-box > p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-modal-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 64, 129, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #ff4081;
    color: #ff4081;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-age-yes,
.btn-age-no {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-age-yes {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-color: #00bcd4;
    color: #fff;
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
}

.btn-age-no {
    background: transparent;
    border-color: #ff4081;
    color: #ff4081;
}

.btn-age-no:hover {
    background: rgba(255, 64, 129, 0.1);
}

.navbar {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00bcd4;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00bcd4;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #00bcd4;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00bcd4, #ff4081);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #00bcd4;
}

.nav-menu a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(13, 17, 23, 0.98);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid #00bcd4;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1.3rem;
        display: block;
        padding: 1rem 0;
    }
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00bcd4 0%, #ff4081 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #d0d0d0;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #00bcd4;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.5);
}

.hero-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #00bcd4;
    top: 10%;
    left: 5%;
    animation: float 10s infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #ff4081;
    top: 60%;
    right: 10%;
    animation: float 8s infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #00bcd4;
    bottom: 10%;
    left: 50%;
    animation: float 12s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.features-showcase {
    padding: 5rem 0;
    background: #0d1117;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #2d3748;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00bcd4;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #00bcd4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.game-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
    color: #c0c0c0;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
}

.game-frame-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #00bcd4;
    box-shadow: 0 0 50px rgba(0, 188, 212, 0.4), 0 0 30px rgba(255, 64, 129, 0.2);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.info-blocks {
    padding: 6rem 0;
    background: #0d1117;
}

.info-heading {
    font-size: 2.8rem;
    text-align: center;
    color: #00bcd4;
    margin-bottom: 4rem;
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-block {
    background: #1a1f2e;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #ff4081;
}

.info-block h3 {
    font-size: 1.5rem;
    color: #ff4081;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.disclosure-section {
    padding: 6rem 0;
    background: #161b22;
}

.disclosure-box {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #ff4081;
    box-shadow: 0 0 40px rgba(255, 64, 129, 0.3);
}

.disclosure-box h2 {
    font-size: 2.5rem;
    color: #ff4081;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.disclosure-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.disclosure-item h4 {
    font-size: 1.4rem;
    color: #00bcd4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclosure-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.about-section {
    padding: 6rem 0;
    background: #0d1117;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #c0c0c0;
}

.play-header {
    padding: 4rem 0;
    text-align: center;
    background: #0d1117;
}

.play-header h1 {
    font-size: 3.2rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.play-description {
    font-size: 1.2rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #c0c0c0;
}

.game-player {
    padding: 3rem 0;
    background: #161b22;
}

.player-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #00bcd4;
    box-shadow: 0 0 50px rgba(0, 188, 212, 0.4), 0 0 30px rgba(255, 64, 129, 0.2);
}

.player-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-details {
    padding: 5rem 0;
    background: #0d1117;
}

.game-details h2 {
    font-size: 2.5rem;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: #1a1f2e;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #2d3748;
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: #ff4081;
    transform: translateY(-3px);
}

.detail-card h3 {
    font-size: 1.4rem;
    color: #ff4081;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.play-disclaimer {
    padding: 4rem 0;
    background: #161b22;
}

.disclaimer-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #ff4081;
    text-align: center;
}

.disclaimer-card h3 {
    font-size: 2rem;
    color: #ff4081;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.disclaimer-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #c0c0c0;
}

.legal-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 3.2rem;
    color: #00bcd4;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.updated-date {
    text-align: center;
    font-size: 1.05rem;
    color: #888;
    margin-bottom: 4rem;
}

.legal-block {
    margin-bottom: 3.5rem;
}

.legal-block h2 {
    font-size: 1.9rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.legal-block p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #c0c0c0;
}

.important-notice {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #ff4081;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff4081;
}

.acknowledgment-section {
    background: #1a1f2e;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #00bcd4;
}

.site-footer {
    background: #0d1117;
    border-top: 2px solid #00bcd4;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    color: #00bcd4;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: #c0c0c0;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #00bcd4;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #888;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .player-iframe {
        height: 500px;
    }
    
    .play-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-page h1 {
        font-size: 2.4rem;
    }
}
