* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #2d3748;
    line-height: 1.7;
}

.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #059669;
    letter-spacing: -0.5px;
}

.brand svg {
    color: #059669;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #059669;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #059669;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-drawer {
    display: none;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-drawer.active {
    display: flex;
    flex-direction: column;
}

.mobile-drawer a {
    padding: 20px 30px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s;
}

.mobile-drawer a:hover {
    background: #f7fafc;
    color: #059669;
}

.hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 100px 30px;
}

.hero-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    color: white;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-pill {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: absolute;
}

.visual-text {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    z-index: 1;
}

.split-section {
    padding: 100px 30px;
    background: white;
}

.split-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-text h2 {
    font-size: 2.8rem;
    color: #059669;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-large {
    font-size: 10rem;
}

.info-grid-section {
    padding: 100px 30px;
    background: #f7fafc;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.info-tile {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 5px solid #059669;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(5,150,105,0.15);
}

.tile-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.info-tile h3 {
    font-size: 1.8rem;
    color: #059669;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-tile p {
    color: #4a5568;
    font-size: 1.05rem;
}

.game-showcase-section {
    padding: 100px 30px;
    background: white;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 3rem;
    color: #059669;
    font-weight: 800;
    margin-bottom: 15px;
}

.showcase-header p {
    font-size: 1.3rem;
    color: #718096;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 3px solid #059669;
}

.game-display iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.values-section {
    padding: 100px 30px;
    background: #f7fafc;
}

.values-title {
    text-align: center;
    font-size: 3rem;
    color: #059669;
    font-weight: 800;
    margin-bottom: 70px;
}

.values-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.value-col {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-col:hover {
    transform: translateY(-5px);
}

.value-num {
    font-size: 3rem;
    color: #059669;
    opacity: 0.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.value-col h4 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-col p {
    color: #718096;
    font-size: 1.05rem;
}

.disclaimer-banner {
    padding: 80px 30px;
    background: white;
}

.banner-content {
    max-width: 1100px;
    margin: 0 auto;
    background: #fef3c7;
    padding: 50px;
    border-radius: 12px;
    border-left: 6px solid #f59e0b;
}

.banner-content h3 {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.banner-content p {
    font-size: 1.1rem;
    color: #78350f;
}

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 70px 30px 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer .brand {
    color: white;
    margin-bottom: 20px;
}

.footer .brand svg {
    color: #10b981;
}

.footer-col p {
    color: #9ca3af;
}

.footer-col h4 {
    color: #10b981;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #6b7280;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-top: 6px solid #059669;
}

.age-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.age-modal-card h2 {
    color: #059669;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.age-modal-card p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.age-ask {
    font-weight: 700;
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 30px;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.age-actions button {
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.age-actions button:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

.btn-secondary {
    background: #e5e7eb;
    color: #4a5568;
}

.page-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 90px 30px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.legal-section {
    padding: 100px 30px;
    background: white;
}

.legal-doc {
    max-width: 1100px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 70px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.legal-doc h2 {
    color: #059669;
    font-size: 2rem;
    margin: 50px 0 25px;
    font-weight: 700;
}

.legal-doc h2:first-child {
    margin-top: 0;
}

.legal-doc ul {
    margin-left: 40px;
    margin-bottom: 25px;
}

.legal-doc li {
    margin-bottom: 12px;
    color: #4a5568;
}

.play-info-section {
    padding: 60px 30px;
    background: #f7fafc;
}

.play-info-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 5px solid #059669;
}

.play-info-box h3 {
    color: #059669;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.play-list {
    list-style: none;
    padding: 0;
}

.play-list li {
    padding: 15px 0 15px 45px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.play-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
    font-size: 1.8rem;
}

.play-reminder {
    margin-top: 35px;
    padding: 25px;
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
    border-radius: 8px;
    color: #78350f;
}

.game-player-section {
    padding: 60px 30px;
    background: white;
}

.game-player {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: 3px solid #059669;
}

.game-player iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.emphasis-box {
    margin-top: 60px;
    padding: 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: white;
    text-align: center;
}

.emphasis-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .visual-circle {
        width: 180px;
        height: 180px;
    }
    
    .visual-text {
        font-size: 2rem;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-text h2,
    .showcase-header h2,
    .values-title,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-display iframe,
    .game-player iframe {
        height: 450px;
    }
    
    .age-modal-card {
        margin: 20px;
        padding: 40px 25px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .age-actions button {
        width: 100%;
    }
    
    .legal-doc {
        padding: 40px 25px;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}
