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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom right, #1a2410 0%, #2d3820 50%, #3d4830 100%);
    color: #e8f0dc;
    line-height: 1.8;
    min-height: 100vh;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.age-overlay.visible {
    display: flex;
}

.age-container {
    background: linear-gradient(135deg, #2d5016 0%, #3d6020 100%);
    padding: 55px 45px;
    border-radius: 20px;
    border: 4px solid #4a7c2c;
    box-shadow: 0 0 70px rgba(74, 124, 44, 0.5);
    text-align: center;
    max-width: 520px;
    width: 100%;
}

.age-icon {
    font-size: 4.5em;
    margin-bottom: 25px;
}

.age-container h2 {
    font-family: 'Merriweather', serif;
    color: #7ba85e;
    font-size: 2.4em;
    margin-bottom: 20px;
}

.age-container p {
    font-size: 1.15em;
    margin-bottom: 15px;
}

.age-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn-accept, .btn-decline {
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
}

.btn-accept {
    background: linear-gradient(135deg, #4a7c2c 0%, #5a9035 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 44, 0.5);
}

.btn-decline {
    background: #3a3a3a;
    color: white;
}

.btn-decline:hover {
    background: #555;
}

/* Header */
.top-header {
    background: rgba(29, 48, 16, 0.95);
    border-bottom: 3px solid #4a7c2c;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(74, 124, 44, 0.3);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 2em;
    color: #7ba85e;
    font-weight: 900;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #4a7c2c;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-item {
    color: #e8f0dc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-item:hover {
    color: #7ba85e;
    background: rgba(74, 124, 44, 0.15);
}

/* Main Content */
.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
}

/* Welcome Area */
.welcome-area {
    margin-bottom: 50px;
}

.welcome-card {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.2) 0%, rgba(90, 144, 53, 0.15) 100%);
    padding: 60px 40px;
    border-radius: 25px;
    border: 3px solid #4a7c2c;
    text-align: center;
}

.welcome-card h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.2em;
    color: #7ba85e;
    margin-bottom: 25px;
    font-weight: 900;
}

.tagline {
    font-size: 1.35em;
    line-height: 1.9;
    max-width: 950px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 40px;
}

/* Cards */
.intro-card, .features-card, .warnings-card, .game-card, .values-card, 
.community-card, .about-card, .closing-card, .howto-card, .playgame-card, 
.notice-card, .enjoy-card {
    background: rgba(74, 124, 44, 0.08);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(74, 124, 44, 0.3);
}

.intro-card h2, .features-card h2, .warnings-card h2, .game-card h2, 
.values-card h2, .community-card h2, .about-card h2, .closing-card h2,
.howto-card h2, .playgame-card h2, .notice-card h2, .enjoy-card h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2em;
    color: #7ba85e;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-card p, .community-card p, .about-card p, .closing-card p, .enjoy-card p {
    font-size: 1.12em;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(74, 124, 44, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(74, 124, 44, 0.2);
}

.feat-emoji {
    font-size: 2.5em;
    flex-shrink: 0;
}

.feat-content h3 {
    font-family: 'Merriweather', serif;
    color: #7ba85e;
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Warning Items */
.warning-item {
    padding: 30px;
    border-radius: 15px;
    border: 3px solid;
    margin-bottom: 25px;
}

.warning-item:last-child {
    margin-bottom: 0;
}

.warning-item.critical {
    background: rgba(200, 50, 50, 0.1);
    border-color: #c83232;
}

.warning-item.important {
    background: rgba(230, 140, 0, 0.1);
    border-color: #e68c00;
}

.warning-item.mandatory {
    background: rgba(230, 180, 0, 0.1);
    border-color: #e6b400;
}

.warning-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #7ba85e;
}

/* Game Section */
.game-intro {
    font-size: 1.15em;
    margin-bottom: 35px;
    text-align: center;
}

.game-box, .play-game-box {
    max-width: 950px;
    margin: 0 auto 30px;
    border: 4px solid #4a7c2c;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(74, 124, 44, 0.4);
}

.game-frame, .play-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-reminder {
    text-align: center;
    font-size: 1.1em;
    background: rgba(74, 124, 44, 0.15);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #4a7c2c;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-box {
    background: rgba(74, 124, 44, 0.12);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(74, 124, 44, 0.3);
}

.value-box h3 {
    font-family: 'Merriweather', serif;
    color: #7ba85e;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(74, 124, 44, 0.15);
    padding: 35px;
    border-radius: 15px;
    border: 3px solid #4a7c2c;
    text-align: center;
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 3.5em;
    color: #7ba85e;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1.15em;
    color: #c8d4b8;
    font-weight: 600;
}

/* Page Title Area */
.page-title-area {
    background: linear-gradient(135deg, rgba(74, 124, 44, 0.2) 0%, rgba(90, 144, 53, 0.15) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    border: 3px solid #4a7c2c;
    text-align: center;
    margin-bottom: 50px;
}

.page-title-area h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.8em;
    color: #7ba85e;
    margin-bottom: 15px;
    font-weight: 900;
}

.page-title-area p {
    font-size: 1.2em;
    color: #c8d4b8;
}

/* How To Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.how-item {
    background: rgba(74, 124, 44, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(74, 124, 44, 0.25);
}

.how-icon {
    font-size: 2.8em;
    display: block;
    margin-bottom: 15px;
}

.how-item h3 {
    font-family: 'Merriweather', serif;
    color: #7ba85e;
    font-size: 1.35em;
    margin-bottom: 12px;
}

/* Notice Points */
.notice-points {
    list-style-position: inside;
    font-size: 1.1em;
}

.notice-points li {
    margin-bottom: 18px;
}

/* Legal Wrapper */
.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.legal-box {
    background: rgba(74, 124, 44, 0.08);
    padding: 40px;
    border-radius: 18px;
    border: 2px solid rgba(74, 124, 44, 0.25);
}

.legal-box h2 {
    font-family: 'Merriweather', serif;
    color: #7ba85e;
    font-size: 1.9em;
    margin-bottom: 20px;
}

.legal-box p {
    margin-bottom: 18px;
    font-size: 1.08em;
}

.legal-box ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-box li {
    margin-bottom: 12px;
    font-size: 1.08em;
}

/* Footer */
.site-footer {
    background: rgba(29, 48, 16, 0.95);
    border-top: 3px solid #4a7c2c;
    padding: 50px 30px 25px;
    margin-top: 60px;
}

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

.footer-col h4 {
    font-family: 'Merriweather', serif;
    color: #7ba85e;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 1em;
}

.footer-col a {
    display: block;
    color: #c8d4b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #7ba85e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(74, 124, 44, 0.3);
    color: #c8d4b8;
}

/* Responsive */
@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(29, 48, 16, 0.98);
        width: 100%;
        padding: 30px;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 3px solid #4a7c2c;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .welcome-card h1 {
        font-size: 2.2em;
    }
    
    .tagline {
        font-size: 1.15em;
    }
    
    .game-frame, .play-frame {
        height: 450px;
    }
    
    .age-container {
        padding: 40px 25px;
    }
    
    .age-btn-group {
        flex-direction: column;
    }
    
    .intro-card, .features-card, .warnings-card, .game-card, .values-card, 
    .community-card, .about-card, .closing-card, .howto-card, .playgame-card, 
    .notice-card, .enjoy-card {
        padding: 30px 25px;
    }
    
    .legal-box {
        padding: 30px 20px;
    }
}
