/* ============================================
   WYNNBET THEME - main.css (moban-78)
   World Casino Resort Luxury Theme
   Colors: #0A1A0A bg, #2E7D32 green, #FFB300 gold, #FAFAFA white
   Fonts: Libre Baskerville (headings) + Fira Sans (body)
   ============================================ */

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

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

body {
    font-family: 'Fira Sans', sans-serif;
    background: #0A1A0A;
    color: #FAFAFA;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

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

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

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

.gold-text {
    color: #FFB300;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes palmSway {
    0%, 100% {
        transform: rotate(-2deg) translateX(0);
    }
    25% {
        transform: rotate(1deg) translateX(3px);
    }
    50% {
        transform: rotate(-1deg) translateX(-2px);
    }
    75% {
        transform: rotate(2deg) translateX(2px);
    }
}

@keyframes waterfallCascade {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0.3;
    }
}

@keyframes golfSwing {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(15deg) scale(1.05);
    }
    50% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(5deg) scale(1.05);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes gardenBloom {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes leafFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes waterRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D260D 0%, #0A1A0A 100%);
    border-bottom: 2px solid rgba(46, 125, 50, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.header-time {
    color: #FFB300;
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    background: rgba(46, 125, 50, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #FFB300;
    border-radius: 25px;
    color: #FFB300;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: rgba(255, 179, 0, 0.15);
    color: #fff;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    border-radius: 25px;
    color: #0A1A0A;
    font-weight: 700;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
    color: #0A1A0A;
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid #2E7D32;
    border-radius: 25px;
    color: #2E7D32;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    background: rgba(46, 125, 50, 0.15);
    color: #4CAF50;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(10, 26, 10, 0.95);
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

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

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #FAFAFA;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFB300;
    background: rgba(46, 125, 50, 0.15);
    text-shadow: none;
}

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

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

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

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 25s linear infinite;
    white-space: nowrap;
    color: #FFB300;
    font-size: 13px;
    font-weight: 500;
}

/* === HERO SECTION === */
.wynnbet-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #0A1A0A 0%, #1B3A1B 30%, #0D260D 60%, #0A1A0A 100%);
    border-radius: 16px;
    margin: 20px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resort-palm-trees {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.palm-tree {
    position: absolute;
    width: 80px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 125, 50, 0.3) 40%, rgba(27, 94, 32, 0.5) 100%);
    border-radius: 50% 50% 0 0;
    animation: palmSway 6s ease-in-out infinite;
}

.palm-tree-1 {
    left: 5%;
    top: 10%;
    transform-origin: bottom center;
    animation-delay: 0s;
}

.palm-tree-2 {
    right: 8%;
    top: 5%;
    transform-origin: bottom center;
    animation-delay: 1.5s;
    width: 60px;
    height: 180px;
}

.palm-tree-3 {
    left: 15%;
    bottom: 15%;
    transform-origin: bottom center;
    animation-delay: 3s;
    width: 50px;
    height: 150px;
}

.palm-tree-4 {
    right: 18%;
    bottom: 10%;
    transform-origin: bottom center;
    animation-delay: 4.5s;
    width: 70px;
    height: 170px;
}

.waterfall-entrance {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.waterfall-stream {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(46, 125, 50, 0.6), rgba(76, 175, 80, 0.3), transparent);
    animation: waterfallCascade 4s linear infinite;
}

.waterfall-stream-1 {
    left: 30%;
    animation-delay: 0s;
}

.waterfall-stream-2 {
    left: 50%;
    animation-delay: 1.3s;
}

.waterfall-stream-3 {
    left: 70%;
    animation-delay: 2.6s;
}

.garden-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    animation: gardenBloom 1.2s ease-out;
}

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-family: 'Libre Baskerville', serif;
    color: #FFB300;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 179, 0, 0.5), 0 2px 4px rgba(0,0,0,0.5);
    animation: golfSwing 4s ease-in-out infinite;
}

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

.hero-tagline {
    display: block;
    font-size: 20px;
    color: #FAFAFA;
    letter-spacing: 4px;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
}

.hero-description {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.85);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-family: 'Libre Baskerville', serif;
    color: #FFB300;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.7);
}

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

.btn-gold-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    color: #0A1A0A;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.4);
    color: #0A1A0A;
}

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

.btn-outline-gold:hover {
    background: rgba(255, 179, 0, 0.15);
    color: #fff;
    transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Libre Baskerville', serif;
}

.section-title i {
    margin-right: 8px;
    color: #2E7D32;
}

.section-subtitle {
    text-align: center;
    color: rgba(250, 250, 250, 0.6);
    font-size: 15px;
    margin-bottom: 35px;
}

/* === RESORT GAMES (6 Cards) === */
.resort-games {
    padding: 50px 0;
}

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

.resort-game-card {
    position: relative;
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #FAFAFA;
}

.resort-game-card:hover {
    transform: translateY(-8px);
    border-color: #FFB300;
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.3);
    color: #FAFAFA;
}

.resort-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resort-game-card:hover .resort-game-glow {
    opacity: 1;
}

.resort-game-icon {
    font-size: 40px;
    color: #FFB300;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

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

.resort-game-rating i {
    color: #FFB300;
    font-size: 12px;
}

.resort-game-card h3 {
    font-size: 18px;
    color: #FFB300;
    margin-bottom: 10px;
}

.resort-game-card p {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.resort-game-players {
    font-size: 12px;
    color: #2E7D32;
    display: inline-block;
    background: rgba(46, 125, 50, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
}

/* === GARDEN GAME GRID (3x4) === */
.garden-grid {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(46, 125, 50, 0.05), transparent);
    border-radius: 16px;
}

.garden-game-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.garden-game-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.garden-game-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #FAFAFA;
    min-width: 140px;
    text-align: center;
}

.garden-game-node:hover {
    border-color: #FFB300;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
    color: #FFB300;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2E7D32;
    transition: all 0.3s ease;
}

.garden-game-node:hover .node-icon {
    background: rgba(255, 179, 0, 0.2);
    color: #FFB300;
}

.node-label {
    font-size: 13px;
    font-weight: 600;
}

/* === RESORT FEATURES (4 Cards) === */
.resort-features {
    padding: 50px 0;
}

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

.resort-feature-card {
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.resort-feature-card:hover {
    transform: translateY(-6px);
    border-color: #FFB300;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.resort-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(27, 94, 32, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #FFB300;
    transition: all 0.3s ease;
}

.resort-feature-card:hover .resort-feature-icon {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.3), rgba(255, 143, 0, 0.3));
    animation: golfSwing 1s ease-in-out;
}

.resort-feature-card h3 {
    font-size: 16px;
    color: #FFB300;
    margin-bottom: 12px;
}

.resort-feature-card p {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.7;
}

/* === RESORT STATS (4 Counters) === */
.resort-stats {
    padding: 50px 0;
    position: relative;
}

.resort-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(27, 94, 32, 0.05));
    border-radius: 16px;
    overflow: hidden;
}

.garden-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.resort-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.resort-stat-card {
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.resort-stat-card:hover {
    transform: translateY(-5px);
    border-color: #FFB300;
}

.stat-leaf-decoration {
    color: #2E7D32;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.stat-leaf-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-size: 36px;
    font-family: 'Libre Baskerville', serif;
    color: #FFB300;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === RESORT PROMOTIONS (3 Cards) === */
.resort-promos {
    padding: 50px 0;
}

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

.resort-promo-card {
    position: relative;
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.resort-promo-card:hover {
    transform: translateY(-6px);
    border-color: #FFB300;
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.25);
}

.promo-garden-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(46, 125, 50, 0.15), transparent);
}

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

.resort-promo-inner .promo-icon {
    font-size: 36px;
    color: #FFB300;
    margin-bottom: 15px;
}

.resort-promo-inner h3 {
    font-size: 17px;
    color: #FFB300;
    margin-bottom: 12px;
}

.resort-promo-inner p {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(250, 250, 250, 0.6);
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.promo-badge.hot {
    background: #E53935;
    color: #fff;
}

.promo-badge.new {
    background: #2E7D32;
    color: #fff;
}

.promo-badge.vip {
    background: #FFB300;
    color: #0A1A0A;
}

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    color: #0A1A0A;
    font-weight: 700;
    font-size: 13px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: translateY(-2px);
    color: #0A1A0A;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 60px 20px;
    margin: 50px 0;
    background: linear-gradient(135deg, #1B5E20, #2E7D32, #1B5E20);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.footer-cta-garden {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-palm-left,
.cta-palm-right {
    position: absolute;
    width: 100px;
    height: 250px;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 50% 50% 0 0;
    animation: palmSway 5s ease-in-out infinite;
}

.cta-palm-left {
    left: -20px;
    top: 10%;
    transform-origin: bottom center;
}

.cta-palm-right {
    right: -20px;
    top: 5%;
    transform-origin: bottom center;
    animation-delay: 2.5s;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
}

.cta-waterfall-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-waterfall-stream {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.6), transparent);
    animation: waterfallCascade 3s linear infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFB300;
    margin-bottom: 15px;
    font-family: 'Libre Baskerville', serif;
}

.footer-cta-inner > p {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-feature {
    font-size: 14px;
    color: #FAFAFA;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-feature i {
    color: #FFB300;
}

.cta-main-btn {
    font-size: 17px;
    padding: 16px 45px;
}

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

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

.home-news-placeholder {
    display: contents;
}

.article-card {
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #FAFAFA;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #FFB300;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    color: #FFB300;
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(250, 250, 250, 0.5);
    margin-bottom: 8px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #2E7D32;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.6;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FFB300;
    border-radius: 25px;
    color: #FFB300;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.view-more-btn:hover {
    background: #FFB300;
    color: #0A1A0A;
}

/* === CONTENT AREA LAYOUT === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

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

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #2E7D32;
}

.breadcrumb a:hover {
    color: #FFB300;
}

.breadcrumb span {
    color: rgba(250, 250, 250, 0.4);
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    font-size: 13px;
    color: #FFB300;
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(255, 179, 0, 0.15);
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    color: #FFB300;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

.article-meta i {
    margin-right: 4px;
    color: #2E7D32;
}

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

.article-featured-img img {
    width: 100%;
    border-radius: 12px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.85);
}

.article-content h2,
.article-content h3 {
    color: #FFB300;
    margin: 20px 0 10px;
}

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

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

.article-tags {
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags i {
    color: #FFB300;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(46, 125, 50, 0.15);
    border-radius: 15px;
    font-size: 12px;
    color: #2E7D32;
}

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

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

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.related-item {
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #FAFAFA;
}

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

.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;
    line-height: 1.4;
}

/* === CATEGORY === */
.category-header {
    padding: 20px 0;
}

.category-title {
    font-size: 26px;
}

.category-desc {
    color: rgba(250, 250, 250, 0.6);
    margin-top: 10px;
}

.provider-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 20px;
    color: #FAFAFA;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #FFB300;
    color: #0A1A0A;
    border-color: #FFB300;
    font-weight: 600;
}

/* === PAGINATION === */
.pagination {
    margin: 30px 0;
}

.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(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 8px;
    color: #FAFAFA;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.error-tree {
    font-size: 80px;
    color: #2E7D32;
    margin-bottom: 20px;
    animation: palmSway 3s ease-in-out infinite;
}

.error-code {
    font-size: 100px;
    color: #FFB300;
    font-family: 'Libre Baskerville', serif;
    text-shadow: 0 0 30px rgba(255, 179, 0, 0.3);
}

.error-title {
    font-size: 24px;
    color: #FFB300;
    margin-bottom: 15px;
}

.error-desc {
    font-size: 15px;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-posts p {
    color: rgba(250, 250, 250, 0.6);
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: 16px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #FFB300;
    margin-bottom: 20px;
}

.page-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.85);
}

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

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #FFB300;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px 0 0 8px;
}

.sidebar-btn:hover {
    width: 160px;
    background: #FFB300;
    color: #0A1A0A;
    border-radius: 8px 0 0 8px;
}

.sidebar-btn-facebook:hover {
    background: #1877F2;
    color: #fff;
}

.sidebar-btn-telegram:hover {
    background: #0088cc;
    color: #fff;
}

.sidebar-label {
    display: none;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
}

.sidebar-btn:hover .sidebar-label {
    display: inline;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D260D 0%, #071007 100%);
    border-top: 2px solid rgba(46, 125, 50, 0.3);
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

.footer-brand-logo img {
    height: 45px;
}

.footer-brand-text {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 2px solid #E53935;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 50%;
    color: #FFB300;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FFB300;
    color: #0A1A0A;
}

.footer-col h4 {
    font-size: 15px;
    color: #FFB300;
    margin-bottom: 18px;
    font-family: 'Libre Baskerville', serif;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    transition: all 0.3s ease;
}

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #FFB300;
    margin-bottom: 15px;
}

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

.license-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(250, 250, 250, 0.5);
}

.license-item i {
    color: #2E7D32;
    font-size: 16px;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.4);
}

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

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

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.announcement-content {
    position: relative;
    background: linear-gradient(145deg, #0D260D, #1B3A1B);
    border: 2px solid #FFB300;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s ease;
}

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

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

.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #2E7D32;
    margin-bottom: 15px;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #FAFAFA;
}

.announcement-item:hover {
    border-color: #FFB300;
    background: rgba(255, 179, 0, 0.1);
    color: #FFB300;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.announcement-badge.hot {
    background: #E53935;
    color: #fff;
}

.announcement-badge.new {
    background: #2E7D32;
    color: #fff;
}

.announcement-badge.info {
    background: #FFB300;
    color: #0A1A0A;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-item i.fa-chevron-right {
    color: rgba(250, 250, 250, 0.3);
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    padding: 12px 35px;
    font-size: 15px;
}
