/* Skogaros - Nature/Forest Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #34a853;
    --dark-green: #228b3f;
    --light-green: #81c995;
    --earth-brown: #8b7355;
    --cream: #f4f1ea;
    --off-white: #fafaf8;
    --dark-text: #2d3436;
    --light-text: #636e72;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--cream);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Age Verification */
.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 52, 54, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify-modal.active {
    display: flex;
}

.age-verify-box {
    background: var(--off-white);
    padding: 55px;
    border-radius: 12px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--forest-green);
    animation: natureFadeIn 0.5s ease;
}

@keyframes natureFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-leaf-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-verify-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.age-verify-box p {
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-req {
    font-weight: 700;
    color: var(--forest-green);
}

.age-note {
    background: var(--cream);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.age-verify-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-btn-confirm,
.age-btn-decline {
    padding: 15px 32px;
    border: 2px solid var(--forest-green);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-confirm {
    background: var(--forest-green);
    color: var(--off-white);
}

.age-btn-confirm:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.age-btn-decline {
    background: var(--off-white);
    color: var(--dark-text);
}

.age-btn-decline:hover {
    background: var(--cream);
}

/* Header */
.site-header {
    background: var(--off-white);
    border-bottom: 1px solid #e1ddd3;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--forest-green);
}

.main-menu {
    display: flex;
    gap: 35px;
}

.main-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--forest-green);
}

.menu-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--forest-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-drawer {
    display: none;
    background: var(--off-white);
    border-bottom: 1px solid #e1ddd3;
}

.mobile-menu-drawer a {
    display: block;
    padding: 18px 40px;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #e1ddd3;
    transition: all 0.3s ease;
}

.mobile-menu-drawer a:hover,
.mobile-menu-drawer a.active {
    background: var(--cream);
    color: var(--forest-green);
}

/* Hero */
.hero-forest {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #2d5016 0%, #3a6b1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px;
}

.hero-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(129, 201, 149, 0.15) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-message {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--light-green);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-forest h1 {
    font-family: 'Merriweather', serif;
    font-size: 62px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-message p {
    font-size: 19px;
    color: var(--off-white);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.btn-forest {
    display: inline-block;
    padding: 17px 42px;
    background: var(--forest-green);
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-forest:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.4);
}

/* Container */
.container-forest {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-forest-wide {
    max-width: 100%;
    padding: 0 40px;
}

/* Sections */
section {
    padding: 90px 0;
}

.text-center-block {
    text-align: center;
    margin-bottom: 60px;
}

.text-center-block h2 {
    font-family: 'Merriweather', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    color: var(--light-text);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Welcome Section */
.welcome-forest {
    background: var(--off-white);
}

.cards-nature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 40px;
}

.nature-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.nature-card:hover {
    border-color: var(--forest-green);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.nature-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.nature-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 18px;
}

.nature-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Legal Info */
.legal-info-forest {
    background: var(--cream);
}

.legal-box-nature {
    background: var(--off-white);
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid var(--forest-green);
}

.legal-box-nature h3 {
    font-family: 'Merriweather', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 40px;
    text-align: center;
}

.legal-forest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.legal-forest-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.legal-forest-item p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Game Section */
.game-forest-section {
    background: var(--off-white);
}

.game-forest-frame {
    max-width: 1050px;
    margin: 0 auto;
    border: 3px solid var(--forest-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.game-forest-embed {
    width: 100%;
    height: 600px;
    border: none;
}

.game-forest-action {
    text-align: center;
    margin-top: 45px;
}

.btn-nature-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--forest-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nature-outline:hover {
    background: var(--forest-green);
    color: var(--off-white);
    transform: translateY(-2px);
}

/* Features */
.features-forest {
    background: var(--cream);
}

.features-forest-list {
    max-width: 850px;
    margin: 0 auto;
}

.forest-feature {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 32px;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 4px solid var(--forest-green);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.forest-feature:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateX(6px);
}

.feature-num {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--light-green);
    line-height: 1;
    min-width: 45px;
}

.feature-text h4 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.feature-text p {
    color: var(--light-text);
    line-height: 1.8;
}

/* CTA */
.cta-forest {
    background: linear-gradient(135deg, var(--earth-brown) 0%, #6d5a47 100%);
    color: var(--off-white);
}

.cta-forest-box {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-forest-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 22px;
}

.cta-forest-box p {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-forest-light {
    display: inline-block;
    padding: 17px 48px;
    background: var(--off-white);
    color: var(--earth-brown);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-forest-light:hover {
    background: var(--cream);
    transform: scale(1.05);
}

/* Play Page */
.play-header-forest {
    padding: 90px 0;
    background: linear-gradient(135deg, #2d5016 0%, #3a6b1f 100%);
    color: var(--off-white);
    text-align: center;
}

.play-header-forest h1 {
    font-family: 'Merriweather', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
}

.play-header-forest p {
    font-size: 20px;
}

.play-info-forest {
    padding: 70px 0;
    background: var(--off-white);
}

.info-nature-box {
    background: var(--cream);
    padding: 50px;
    border-radius: 12px;
}

.info-nature-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 45px;
}

.info-nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.info-nature-item {
    background: var(--off-white);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--forest-green);
}

.info-nature-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.info-nature-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.play-game-forest {
    padding: 70px 0;
    background: var(--cream);
}

.game-player-forest {
    max-width: 1400px;
    margin: 0 auto;
    border: 3px solid var(--forest-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-iframe-forest {
    width: 100%;
    height: 700px;
    border: none;
}

/* Legal Document Pages */
.legal-doc-forest {
    padding: 90px 0;
    min-height: calc(100vh - 200px);
}

.legal-doc-forest h1 {
    font-family: 'Merriweather', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.doc-updated {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 45px;
}

.legal-doc-text {
    background: var(--off-white);
    padding: 60px;
    border-radius: 12px;
    border-left: 5px solid var(--forest-green);
}

.legal-doc-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 45px 0 22px;
}

.legal-doc-text h2:first-child {
    margin-top: 0;
}

.legal-doc-text p {
    color: var(--light-text);
    line-height: 1.9;
    margin-bottom: 22px;
}

.legal-doc-text ul {
    margin: 22px 0;
    padding-left: 32px;
}

.legal-doc-text li {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.important-notice {
    background: var(--cream);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--forest-green);
    margin-bottom: 45px;
}

.important-notice h2 {
    margin-top: 0 !important;
}

/* Footer */
.forest-footer {
    background: var(--earth-brown);
    color: var(--off-white);
    padding: 70px 0 35px;
}

.footer-forest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-forest-col h4 {
    font-family: 'Merriweather', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--light-green);
    margin-bottom: 22px;
}

.footer-forest-col p {
    color: var(--off-white);
    line-height: 1.8;
    opacity: 0.85;
}

.footer-forest-col ul {
    list-style: none;
}

.footer-forest-col ul li {
    margin-bottom: 14px;
}

.footer-forest-col ul li a {
    color: var(--off-white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.footer-forest-col ul li a:hover {
    color: var(--light-green);
    padding-left: 5px;
    opacity: 1;
}

.footer-forest-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--off-white);
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .main-menu {
        display: none;
    }

    .menu-hamburger {
        display: flex;
    }

    .mobile-menu-drawer.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .container-forest,
    .container-forest-wide {
        padding: 0 25px;
    }

    .hero-forest {
        padding: 60px 25px;
    }

    .hero-forest h1 {
        font-size: 40px;
    }

    .text-center-block h2 {
        font-size: 34px;
    }

    .game-forest-embed {
        height: 400px;
    }

    .game-iframe-forest {
        height: 500px;
    }

    .legal-doc-text {
        padding: 35px 25px;
    }

    .legal-box-nature {
        padding: 35px 25px;
    }

    .info-nature-box {
        padding: 35px 25px;
    }

    .age-verify-box {
        margin: 25px;
        padding: 35px 25px;
    }

    .age-verify-buttons {
        flex-direction: column;
    }

    .forest-feature {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .hero-forest h1 {
        font-size: 32px;
    }

    .site-branding span {
        font-size: 22px;
    }

    .game-forest-embed {
        height: 300px;
    }

    .game-iframe-forest {
        height: 400px;
    }
}
