* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #2d3748;
    line-height: 1.6;
}

/* Age Check Modal */
.age-check-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check-modal.hidden {
    display: none;
}

.age-check-content {
    background: white;
    padding: 50px 45px;
    border-radius: 30px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    margin: 0 auto 25px;
}

.age-check-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.age-welcome {
    font-size: 1.3em;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 15px;
}

.age-check-content p {
    font-size: 1.05em;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

.age-button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
}

.age-button-group button {
    padding: 18px 35px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.age-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.age-btn-secondary {
    background: #e2e8f0;
    color: #718096;
}

.age-btn-secondary:hover {
    background: #cbd5e0;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emoji {
    font-size: 2em;
}

.logo-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #667eea;
}

.site-nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-bar {
    width: 28px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 4em;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-lead {
    font-size: 1.8em;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pill-icon {
    font-size: 1.3em;
}

.pill-text {
    font-weight: 700;
    color: #1a202c;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Warnings Section */
.warnings {
    padding: 80px 40px;
    background: white;
}

.warnings-container {
    max-width: 1400px;
    margin: 0 auto;
}

.warnings-container h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin-bottom: 50px;
}

.warning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.warning-card {
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.red-card {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border-left: 5px solid #fc8181;
}

.blue-card {
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    border-left: 5px solid #4299e1;
}

.orange-card {
    background: linear-gradient(135deg, #fffaf0, #fbd38d);
    border-left: 5px solid #ed8936;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.warning-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.warning-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-container h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin-bottom: 15px;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #718096;
    margin-bottom: 50px;
}

.game-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5em;
}

.highlight-info strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;
    color: #2d3748;
    margin-bottom: 5px;
}

.highlight-info span {
    color: #718096;
    font-size: 0.95em;
}

/* About Section */
.about {
    padding: 80px 40px;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1em;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-graphics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.graphic-item {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.graphic-emoji {
    font-size: 3em;
    margin-bottom: 10px;
}

.graphic-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
}

/* Resources Section */
.resources {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-container h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin-bottom: 20px;
}

.resources-intro {
    text-align: center;
    font-size: 1.15em;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.resource-boxes {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-box {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    min-width: 300px;
}

.resource-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.resource-emoji {
    font-size: 2.5em;
}

.resource-text strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;
    color: #667eea;
    margin-bottom: 5px;
}

.resource-text span {
    color: #718096;
    font-size: 0.95em;
}

/* Play Page */
.play-header {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    text-align: center;
}

.play-header-content h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5em;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.play-header-content p {
    font-size: 1.4em;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.play-section {
    padding: 60px 40px;
    background: white;
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.play-game-area {
    background: #f7fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 50px;
}

.play-game-frame {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.play-info h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 35px;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.info-block {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.info-block-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    color: #667eea;
    margin-bottom: 12px;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.play-notice {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #fc8181;
    color: #4a5568;
}

.play-notice strong {
    color: #2d3748;
}

/* Policy Pages */
.policy-page {
    padding: 80px 40px;
    background: white;
    min-height: 70vh;
}

.policy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-wrapper h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5em;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.policy-date {
    color: #718096;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.05em;
}

.policy-sections {
    color: #4a5568;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.policy-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 15px;
    margin-top: 20px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05em;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 35px;
}

.policy-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.important-alert {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #fc8181;
    margin-bottom: 50px;
    text-align: center;
}

.important-alert h2 {
    font-family: 'Quicksand', sans-serif;
    color: #c53030;
    margin-bottom: 15px;
}

.important-alert p {
    color: #742a2a;
}

.confirmation-notice {
    background: linear-gradient(135deg, #e6fffa, #b2f5ea);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #38b2ac;
    margin-top: 50px;
}

.confirmation-notice h2 {
    font-family: 'Quicksand', sans-serif;
    color: #234e52;
    margin-bottom: 20px;
}

.confirmation-notice ul {
    list-style: none;
    padding: 0;
}

.confirmation-notice li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #234e52;
    font-size: 1.05em;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f093fb;
}

.footer-section h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        gap: 25px;
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-lead {
        font-size: 1.3em;
    }
    
    .warning-cards {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .play-game-frame {
        height: 500px;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
