* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f0f4f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.top-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #29b6a0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #29b6a0;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #29b6a0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #29b6a0 0%, #1a8577 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
}

.intro-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.intro-box h2 {
    color: #29b6a0;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.intro-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Key Points Section */
.key-points-section {
    padding: 4rem 2rem;
    background: white;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.point-card {
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.card-primary {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.card-secondary {
    background: linear-gradient(135deg, #a8e6cf 0%, #74b9ff 100%);
}

.card-tertiary {
    background: linear-gradient(135deg, #fab1a0 0%, #ff7675 100%);
}

.point-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.point-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Game Display Section */
.game-display-section {
    padding: 4rem 2rem;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-header h2 {
    color: #29b6a0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.game-header p {
    font-size: 1.2rem;
    color: #666;
}

.game-embed {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.game-embed iframe {
    width: 100%;
    min-height: 600px;
    border-radius: 10px;
}

.game-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-left: 4px solid #29b6a0;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    color: #29b6a0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    padding-top: 3rem;
}

.benefit-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(41, 182, 160, 0.2);
}

.benefit-item h4 {
    color: #29b6a0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    line-height: 1.7;
}

/* Important Info Section */
.important-info-section {
    padding: 4rem 2rem;
}

.important-info-section h2 {
    text-align: center;
    color: #29b6a0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.info-panels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-panel {
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 6px solid;
}

.panel-warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.panel-info {
    background: #d1ecf1;
    border-color: #0dcaf0;
}

.panel-age {
    background: #f8d7da;
    border-color: #dc3545;
}

.info-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-panel p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #29b6a0 0%, #1a8577 100%);
    color: white;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    min-width: 180px;
}

.stat-figure {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-caption {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Closing Section */
.closing-section {
    padding: 4rem 2rem;
    background: white;
}

.closing-section h2 {
    text-align: center;
    color: #29b6a0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.closing-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #29b6a0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #29b6a0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
}

/* Age Verification Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-overlay.hidden {
    display: none;
}

.age-dialog {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.age-dialog-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-dialog h2 {
    color: #29b6a0;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.age-dialog p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.age-requirement {
    font-weight: 700;
    color: #dc3545;
}

.age-dialog-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s;
}

.age-btn-confirm {
    background: #28a745;
    color: white;
}

.age-btn-deny {
    background: #dc3545;
    color: white;
}

.age-btn:hover {
    transform: scale(1.05);
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #29b6a0 0%, #1a8577 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-title-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.page-title-section p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.doc-date {
    font-style: italic;
}

/* Play Page */
.play-main-section {
    padding: 4rem 2rem;
}

.play-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.play-intro h2 {
    color: #29b6a0;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.play-intro p {
    font-size: 1.1rem;
    color: #666;
}

.play-game-area {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.play-game-area iframe {
    width: 100%;
    min-height: 650px;
    border-radius: 10px;
}

.play-info-section {
    margin-bottom: 3rem;
}

.play-info-section h3 {
    color: #29b6a0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
}

.play-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.play-info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.info-box-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.play-info-box h4 {
    color: #29b6a0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.play-info-box ul {
    list-style: none;
    padding-left: 0;
}

.play-info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.play-info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #29b6a0;
    font-weight: 700;
}

.play-reminders-section h3 {
    color: #29b6a0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
}

.reminders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reminder-item {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 3px solid;
}

.reminder-yellow {
    background: #fff3cd;
    border-color: #ffc107;
}

.reminder-blue {
    background: #d1ecf1;
    border-color: #0dcaf0;
}

.reminder-red {
    background: #f8d7da;
    border-color: #dc3545;
}

.reminder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reminder-item h4 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Legal Pages */
.legal-content-section {
    padding: 3rem 2rem;
}

.legal-text {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    color: #29b6a0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.legal-block h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-block ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-block li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.alert-block {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid #ffc107;
}

.highlight-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #29b6a0;
}

.summary-block {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 12px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.summary-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #29b6a0;
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.summary-item h4 {
    color: #29b6a0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .game-embed iframe {
        min-height: 400px;
    }
    
    .play-game-area iframe {
        min-height: 450px;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .age-dialog {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-dialog-buttons {
        flex-direction: column;
    }
}
