/* ============================================
   DARKFOREST THEME - main.css (moban-143)
   Dark Forest Theme with Leaf Patterns
   Colors: #0D2818 (DarkGreen), #FFD700 (Gold), #0D0D0D (Black)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Mulish', sans-serif;
    background: #0D0D0D;
    color: #E8E8E0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #FFD700;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gold-text {
    color: #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forest-text {
    background: linear-gradient(90deg, #0D2818, #1a5c3a, #0D2818);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes leafFall {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(0deg) translateX(0);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(50px);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg) translateX(-30px);
    }
}

@keyframes forestGlow {
    0%, 100% {
        opacity: 0.3;
        filter: brightness(0.8) saturate(1.2);
        box-shadow: 0 0 20px rgba(13, 40, 24, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
    }
    25% {
        opacity: 0.6;
        filter: brightness(1.2) saturate(1.5);
        box-shadow: 0 0 30px rgba(13, 40, 24, 0.7), 0 0 60px rgba(255, 215, 0, 0.2);
    }
    50% {
        opacity: 1;
        filter: brightness(1.5) saturate(1.8);
        box-shadow: 0 0 40px rgba(13, 40, 24, 0.9), 0 0 80px rgba(255, 215, 0, 0.3);
    }
    75% {
        opacity: 0.7;
        filter: brightness(1.1) saturate(1.3);
        box-shadow: 0 0 25px rgba(13, 40, 24, 0.6), 0 0 50px rgba(255, 215, 0, 0.15);
    }
}

@keyframes mossGrow {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }
    25% {
        transform: scale(0.5) translateY(10px);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.8) translateY(5px);
        opacity: 0.8;
    }
    75% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes darkRustle {
    0%, 100% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
    }
    25% {
        transform: translateX(-5px) skewX(-2deg);
        opacity: 0.9;
    }
    50% {
        transform: translateX(5px) skewX(2deg);
        opacity: 1;
    }
    75% {
        transform: translateX(-3px) skewX(-1deg);
        opacity: 0.95;
    }
}

@keyframes forestPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 40, 24, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(13, 40, 24, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
    }
}

@keyframes mistFloat {
    0% { opacity: 0; transform: translateY(0) translateX(-100%); }
    50% { opacity: 0.6; transform: translateY(-10px) translateX(0); }
    100% { opacity: 0; transform: translateY(-20px) translateX(100%); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes notificationScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes counterGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(13, 40, 24, 0.3);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(13, 40, 24, 0.5); }
    50% { border-color: rgba(255, 215, 0, 0.8); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D2818 0%, #0a1f12 50%, #0D0D0D 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

.header-time {
    color: #FFD700;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 500;
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login,
.btn-register,
.btn-demo {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0D0D0D;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-demo {
    background: rgba(13, 40, 24, 0.8);
    border: 2px solid rgba(13, 40, 24, 1);
    color: #fff;
}

.btn-demo:hover {
    background: #0D2818;
    box-shadow: 0 0 15px rgba(13, 40, 24, 0.5);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #0a1f12, #0D2818, #0a1f12);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 18px;
    color: #E8E8E0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(13, 40, 24, 0.5);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link i {
    margin-right: 5px;
    color: #FFD700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0D2818, #1a5c3a, #0D2818);
    padding: 10px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: #FFD700;
    font-size: 13px;
    font-weight: 500;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3), 0 0 100px rgba(13, 40, 24, 0.5);
    animation: fadeInUp 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    transform: rotate(90deg);
    color: #fff;
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 20px;
}

.announcement-header-icon i {
    font-size: 50px;
    color: #FFD700;
    animation: forestGlow 3s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'EB Garamond', serif;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(13, 40, 24, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(13, 40, 24, 0.5);
    border-color: #FFD700;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #00cc66, #009944);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #4488ff, #2266cc);
    color: #fff;
}

.announcement-text {
    flex: 1;
    color: #E8E8E0;
    font-size: 13px;
}

.announcement-item i.fa-chevron-right {
    color: #FFD700;
}

.announcement-footer {
    text-align: center;
    margin-top: 20px;
}

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0D0D0D;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* === HERO SECTION === */
.darkforest-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0D0D0D 0%, #0D2818 50%, #0a1f12 100%);
    border-radius: 20px;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.forest-mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mist-layer {
    position: absolute;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(13, 40, 24, 0.3), transparent);
    animation: mistFloat 15s ease-in-out infinite;
}

.mist-1 { bottom: 10%; animation-delay: 0s; }
.mist-2 { bottom: 20%; animation-delay: 3s; }
.mist-3 { bottom: 30%; animation-delay: 6s; }
.mist-4 { bottom: 40%; animation-delay: 9s; }
.mist-5 { bottom: 50%; animation-delay: 12s; }

.forest-canopy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.canopy-leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0D2818, #1a5c3a);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    animation: leafFall 20s linear infinite;
    opacity: 0.6;
}

.leaf-1 { left: 10%; animation-delay: 0s; }
.leaf-2 { left: 30%; animation-delay: 4s; }
.leaf-3 { left: 50%; animation-delay: 8s; }
.leaf-4 { left: 70%; animation-delay: 12s; }
.leaf-5 { left: 85%; animation-delay: 16s; }
.leaf-6 { left: 95%; animation-delay: 2s; }

.forest-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: forestGlow 4s ease-in-out infinite;
    border-radius: 50%;
}

.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(13, 40, 24, 0.3);
    font-family: 'EB Garamond', serif;
    letter-spacing: 3px;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 24px;
    color: #E8E8E0;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'EB Garamond', serif;
}

.hero-stat-label {
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0D0D0D;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-outline-gold {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #FFD700;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'EB Garamond', serif;
}

.section-title i {
    margin-right: 10px;
    color: #FFD700;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 15px;
    margin-bottom: 40px;
}

/* === FOREST STAR GAMES === */
.forest-star-games {
    padding: 50px 0;
}

.forest-star-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.forest-star-game-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.forest-star-game-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(13, 40, 24, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
}

.forest-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: forestGlow 5s ease-in-out infinite;
    pointer-events: none;
}

.forest-star-game-icon {
    margin-bottom: 15px;
}

.forest-star-game-icon i {
    font-size: 48px;
    color: #FFD700;
    animation: darkRustle 3s ease-in-out infinite;
}

.forest-star-game-rating {
    margin-bottom: 10px;
}

.forest-star-game-rating i {
    color: #FFD700;
    font-size: 14px;
}

.forest-star-game-card h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'EB Garamond', serif;
}

.forest-star-game-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.forest-star-game-players {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: #FFD700;
}

.forest-star-game-players i {
    margin-right: 5px;
}

/* === FOREST GRID === */
.forest-grid-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.3), rgba(13, 13, 13, 0.5));
    border-radius: 20px;
}

.forest-grid-map {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.forest-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.forest-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.forest-grid-node:hover {
    transform: scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(13, 40, 24, 0.5);
}

.forest-node-icon {
    margin-bottom: 10px;
}

.forest-node-icon i {
    font-size: 32px;
    color: #FFD700;
}

.forest-node-label {
    font-size: 13px;
    color: #E8E8E0;
    font-weight: 600;
    text-align: center;
}

/* === FOREST FEATURES === */
.forest-features {
    padding: 50px 0;
}

.forest-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.forest-feature-card {
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.forest-feature-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(13, 40, 24, 0.4);
}

.forest-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.forest-feature-icon i {
    font-size: 28px;
    color: #FFD700;
}

.forest-feature-card h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'EB Garamond', serif;
}

.forest-feature-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* === FOREST STATS === */
.forest-stats {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
}

.forest-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D2818, #0a1f12, #0D0D0D);
    z-index: -1;
}

.forest-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.forest-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.forest-stat-card {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    animation: mossGrow 1s ease forwards;
}

.stat-forest-decoration {
    margin-bottom: 15px;
}

.stat-forest-decoration i {
    font-size: 24px;
    color: #FFD700;
    animation: darkRustle 4s ease-in-out infinite;
}

.stat-forest-decoration.bottom {
    margin-top: 15px;
    margin-bottom: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'EB Garamond', serif;
    animation: counterGlow 3s ease-in-out infinite;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
    text-transform: uppercase;
}

/* === FOREST PROMOS === */
.forest-promos {
    padding: 50px 0;
}

.forest-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.forest-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.forest-promo-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(13, 40, 24, 0.5);
}

.promo-forest-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.forest-promo-inner {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

.promo-icon {
    margin-bottom: 15px;
}

.promo-icon i {
    font-size: 40px;
    color: #FFD700;
}

.forest-promo-card h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'EB Garamond', serif;
}

.forest-promo-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #aaa;
}

.promo-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #00cc66, #009944);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0D0D0D;
}

.btn-promo {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0D0D0D;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.footer-cta-forestfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    z-index: -1;
}

.footer-cta-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-forest-decoration {
    margin-bottom: 20px;
}

.cta-forest-tree {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: mossGrow 2s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'EB Garamond', serif;
}

.footer-cta-inner p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    color: #E8E8E0;
    font-size: 14px;
}

.cta-feature i {
    color: #FFD700;
    margin-right: 8px;
}

.cta-main-btn {
    font-size: 18px;
    padding: 18px 50px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 50px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.article-card {
    display: block;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(13, 40, 24, 0.4);
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.1);
}

.article-card-title {
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #E8E8E0;
    line-height: 1.4;
    min-height: 60px;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
}

.article-card-meta i {
    margin-right: 5px;
    color: #FFD700;
}

.article-card-excerpt {
    padding: 10px 15px 15px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.view-more-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.gold-view-more {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 30px 0;
}

.main-content {
    min-width: 0;
}

/* === SIDEBAR === */
.sidebar {
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.sidebar-widget {
    margin-bottom: 25px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget-title {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-family: 'EB Garamond', serif;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-widget a:hover {
    color: #FFD700;
    padding-left: 5px;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
}

.breadcrumb a {
    color: #FFD700;
}

.breadcrumb span {
    margin: 0 8px;
    color: #666;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'EB Garamond', serif;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.article-meta i {
    margin-right: 5px;
    color: #FFD700;
}

.article-featured-img {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #FFD700;
    margin: 25px 0 15px;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content a {
    color: #FFD700;
    text-decoration: underline;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-tags {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.article-tags i {
    color: #FFD700;
    margin-right: 10px;
}

.article-tags span {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    margin: 5px;
    font-size: 13px;
    color: #FFD700;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.article-nav a {
    color: #FFD700;
    font-size: 14px;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'EB Garamond', serif;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    display: block;
    background: linear-gradient(135deg, #0D2818, #0a1f12);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: #FFD700;
}

.related-item-thumb {
    height: 100px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #E8E8E0;
    line-height: 1.4;
}

/* === CATEGORY === */
.category-header {
    text-align: center;
    padding: 30px 0;
}

.category-title {
    font-size: 36px;
    font-family: 'EB Garamond', serif;
}

.category-desc {
    color: #aaa;
    margin-top: 10px;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.provider-tab {
    padding: 10px 20px;
    background: rgba(13, 40, 24, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    color: #E8E8E0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #FFD700;
    color: #0D0D0D;
    border-color: #FFD700;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
}

/* === PAGINATION === */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13, 40, 24, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #E8E8E0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #FFD700;
    color: #0D0D0D;
    border-color: #FFD700;
}

/* === SEARCH === */
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #E8E8E0;
    font-size: 14px;
}

.search-field:focus {
    outline: none;
    border-color: #FFD700;
}

.search-submit {
    padding: 12px 25px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 8px;
    color: #0D0D0D;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* === 404 === */
.error-404 {
    text-align: center;
    padding: 80px 20px;
}

.error-404-icon {
    font-size: 80px;
    color: #FFD700;
    margin-bottom: 20px;
    animation: darkRustle 3s ease-in-out infinite;
}

.error-404 h1 {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'EB Garamond', serif;
}

.error-404 p {
    color: #aaa;
    margin-bottom: 30px;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #0a1f12, #0D2818);
    padding: 60px 0 30px;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'EB Garamond', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-brand-text {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 4px;
    color: #ff6666;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FFD700;
    color: #0D0D0D;
    transform: translateY(-3px);
}

.footer-license-bar {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 30px;
}

.footer-license-bar h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-family: 'EB Garamond', serif;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.license-item i {
    font-size: 28px;
    color: #FFD700;
}

.license-item span {
    font-size: 12px;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    color: #888;
    font-size: 13px;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.no-posts i {
    display: block;
    margin-bottom: 15px;
}

/* === UTILITY CLASSES === */
.text-gold { color: #FFD700; }
.text-forest { color: #0D2818; }
.bg-dark { background: #0D0D0D; }
.bg-forest { background: #0D2818; }
