/* ============================================
   SIMPLE88 THEME - main.css (moban-132)
   Simple, Direct Vietnamese Theme
   Colors: #43A047 (Green), #FFFFFF (White), #757575 (Gray)
   Fonts: Archivo, Be Vietnam Pro, Noto Sans
   ============================================ */

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

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

body {
    font-family: 'Be Vietnam Pro', 'Noto Sans', sans-serif;
    background: #FAFAFA;
    color: #333333;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

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

a:hover {
    color: #2E7D32;
}

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

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

.green-text {
    color: #43A047;
}

.bold-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
}

/* === VIETNAMESE CULTURAL ACCENT LINE === */
.vn-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DA251D, #FFCD00, #DA251D);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.vn-accent-line-left {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #DA251D, #FFCD00);
    border-radius: 2px;
    margin-bottom: 15px;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes simpleFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bigSlide {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes boldPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(67, 160, 71, 0.5);
    }
}

@keyframes cleanEntry {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    60% {
        opacity: 1;
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@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 floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes greenGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(67, 160, 71, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(67, 160, 71, 0.6);
    }
}

/* === HEADER === */
.site-header {
    background: #FFFFFF;
    border-bottom: 3px solid #43A047;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.logo img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-time {
    font-family: 'Archivo', sans-serif;
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.btn-login {
    padding: 10px 22px;
    border: 2px solid #43A047;
    color: #43A047;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background: #43A047;
    color: #FFFFFF;
}

.btn-register {
    padding: 10px 22px;
    background: #43A047;
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #43A047;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register:hover {
    background: #2E7D32;
    border-color: #2E7D32;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.4);
}

.btn-demo {
    padding: 10px 22px;
    border: 2px solid #757575;
    color: #757575;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-demo:hover {
    background: #757575;
    color: #FFFFFF;
}

/* === NAVIGATION === */
.main-navigation {
    background: #F5F5F5;
    border-top: 1px solid #E0E0E0;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 14px 18px;
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #43A047;
    background: rgba(67, 160, 71, 0.08);
}

.nav-link i {
    margin-right: 6px;
    color: #43A047;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #43A047;
    overflow: hidden;
    padding: 10px 0;
}

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

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

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.announcement-content {
    position: relative;
    background: #FFFFFF;
    border: 3px solid #43A047;
    border-radius: 12px;
    padding: 35px;
    max-width: 520px;
    width: 90%;
    animation: bigSlide 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    color: #757575;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.announcement-close:hover {
    color: #43A047;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #43A047;
    animation: floatSoft 3s ease infinite;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: #E8F5E9;
    border-color: #43A047;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    min-width: 42px;
    text-align: center;
    font-family: 'Archivo', sans-serif;
}

.announcement-badge.hot {
    background: #DA251D;
    color: #FFFFFF;
}

.announcement-badge.new {
    background: #43A047;
    color: #FFFFFF;
}

.announcement-badge.info {
    background: #FFCD00;
    color: #1a1a1a;
}

.announcement-text {
    flex: 1;
    font-size: 14px;
    color: #333333;
}

.announcement-item i.fa-chevron-right {
    color: #43A047;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 14px 45px;
    background: #43A047;
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: boldPulse 2.5s ease infinite;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: #2E7D32;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* === HERO SECTION === */
.simple88-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #E8F5E9 100%);
    border-radius: 12px;
    margin: 25px 0;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.hero-vn-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 30%, #DA251D 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, #FFCD00 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, #43A047 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    pointer-events: none;
}

.hero-vn-star {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    opacity: 0.08;
}

.hero-vn-star::before {
    content: '\2605';
    font-size: 180px;
    color: #DA251D;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding: 45px;
    animation: cleanEntry 0.8s ease;
}

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

.hero-brand {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1a1a1a;
    line-height: 1.1;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #DA251D, #FFCD00, #43A047);
    margin: 18px 0;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-size: 24px;
    letter-spacing: 2px;
    color: #43A047;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
}

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

.hero-stats-row {
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #43A047;
}

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

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

.btn-green-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #43A047;
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-green-primary:hover {
    background: #2E7D32;
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-outline-green {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #43A047;
    color: #43A047;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background: #43A047;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #1a1a1a;
}

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

.section-subtitle {
    text-align: center;
    color: #757575;
    font-size: 16px;
    margin-bottom: 45px;
}

/* === GAME STAR CARDS (6 cards) === */
.game-star-section {
    padding: 65px 0;
}

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

.game-star-card {
    position: relative;
    display: block;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.game-star-card:hover {
    border-color: #43A047;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(67, 160, 71, 0.15);
}

.game-star-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #43A047;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.game-star-card:hover::before {
    transform: scaleX(1);
}

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

.game-star-icon i {
    font-size: 44px;
    color: #43A047;
}

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

.game-star-rating i {
    color: #FFCD00;
    font-size: 13px;
}

.game-star-card h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.game-star-card p {
    color: #757575;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.game-star-players {
    display: inline-block;
    padding: 6px 14px;
    background: #E8F5E9;
    border-radius: 20px;
    font-size: 12px;
    color: #43A047;
    font-weight: 600;
}

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

/* === GAME GRID (3x4) === */
.game-grid-section {
    padding: 65px 0;
    background: #F5F5F5;
    border-radius: 12px;
}

.game-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 25px;
}

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 15px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.game-grid-node:hover {
    border-color: #43A047;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(67, 160, 71, 0.12);
}

.game-node-icon {
    margin-bottom: 12px;
}

.game-node-icon i {
    font-size: 30px;
    color: #43A047;
}

.game-node-label {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
}

/* === FEATURES SECTION === */
.features-section {
    padding: 65px 0;
}

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

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DA251D, #FFCD00, #43A047);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #43A047;
    box-shadow: 0 10px 30px rgba(67, 160, 71, 0.12);
}

.feature-icon {
    margin-bottom: 18px;
}

.feature-icon i {
    font-size: 40px;
    color: #43A047;
}

.feature-card h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #757575;
    font-size: 14px;
    line-height: 1.8;
}

/* === STATS SECTION === */
.stats-section {
    padding: 65px 0;
    position: relative;
    background: #43A047;
    border-radius: 12px;
    margin: 0 15px;
}

.stats-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 10% 20%, #FFFFFF 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, #FFCD00 2px, transparent 2px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
    border-radius: 12px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.stat-number {
    font-family: 'Archivo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

/* === PROMOTIONS SECTION === */
.promos-section {
    padding: 65px 0;
}

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

.promo-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.promo-card:hover {
    border-color: #43A047;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(67, 160, 71, 0.15);
}

.promo-inner {
    position: relative;
    padding: 35px 25px;
    text-align: center;
}

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

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

.promo-inner h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.promo-inner p {
    color: #757575;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.promo-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
}

.promo-badge.hot {
    background: #DA251D;
    color: #FFFFFF;
}

.promo-badge.new {
    background: #43A047;
    color: #FFFFFF;
}

.promo-badge.vip {
    background: #FFCD00;
    color: #1a1a1a;
}

.btn-promo {
    display: inline-block;
    padding: 12px 35px;
    background: #43A047;
    color: #FFFFFF;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-promo:hover {
    background: #2E7D32;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.4);
    color: #FFFFFF;
    transform: scale(1.03);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 45px 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 50%, #F5F5F5 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

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

.cta-vn-lotus {
    display: inline-block;
    font-size: 48px;
    color: #DA251D;
    opacity: 0.6;
    animation: floatSoft 4s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 36px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-cta-inner p {
    color: #757575;
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.9;
}

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

.cta-feature {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
}

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

.cta-main-btn {
    padding: 18px 55px;
    font-size: 18px;
    animation: boldPulse 3s ease infinite;
}

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

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

.article-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #43A047;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.12);
}

.article-card-thumb {
    height: 200px;
    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.05);
}

.article-card-title {
    padding: 18px 18px 10px;
}

.article-card-title span,
.article-card-title a {
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    line-height: 1.5;
    display: block;
}

.article-card-meta {
    padding: 0 18px;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #757575;
    margin-bottom: 10px;
}

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

.article-card-excerpt {
    padding: 0 18px 18px;
    font-size: 14px;
    color: #757575;
    line-height: 1.7;
}

.article-card-more {
    display: inline-block;
    padding: 10px 22px;
    color: #43A047;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #43A047;
    border-radius: 6px;
    margin: 0 18px 18px;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.article-card-more:hover {
    background: #43A047;
    color: #FFFFFF;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 35px;
    border: 2px solid #43A047;
    color: #43A047;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    max-width: 220px;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-more-btn:hover {
    background: #43A047;
    color: #FFFFFF;
}

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

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

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

.floating-sidebar {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #43A047;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(67, 160, 71, 0.3);
}

.sidebar-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 5px 20px rgba(67, 160, 71, 0.5);
    color: #FFFFFF;
}

.sidebar-btn-facebook {
    background: #1877F2;
    box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
}

.sidebar-btn-telegram {
    background: #0088cc;
    box-shadow: 0 3px 10px rgba(0, 136, 204, 0.3);
}

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: #1a1a1a;
    border-top: 4px solid #43A047;
    padding: 55px 0 30px;
    margin-top: 45px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 45px;
}

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

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

.footer-brand-text {
    color: #BDBDBD;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.footer-18plus {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #DA251D;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Archivo', sans-serif;
    margin-bottom: 18px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(67, 160, 71, 0.15);
    color: #43A047;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #43A047;
    color: #FFFFFF;
    transform: scale(1.1);
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: rgba(67, 160, 71, 0.1);
    border: 1px solid rgba(67, 160, 71, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: #43A047;
    background: rgba(67, 160, 71, 0.2);
}

.license-item i {
    font-size: 22px;
    color: #43A047;
}

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

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

.footer-copyright {
    color: #757575;
    font-size: 14px;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-size: 14px;
    color: #757575;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: #43A047;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #2E7D32;
}

.breadcrumb span {
    color: #757575;
}

/* === CATEGORY === */
.category-header {
    padding: 25px 0;
    margin-bottom: 25px;
}

.category-title {
    font-size: 30px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-title i {
    margin-right: 10px;
    color: #43A047;
}

.category-desc {
    color: #757575;
    margin-top: 12px;
    font-size: 15px;
}

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

.provider-tab {
    padding: 10px 20px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
    background: #43A047;
    border-color: #43A047;
    color: #FFFFFF;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 35px;
}

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

.article-title {
    font-size: 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #757575;
}

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

.article-meta a {
    color: #43A047;
}

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

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

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

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #1a1a1a;
    font-family: 'Archivo', sans-serif;
    margin: 25px 0 12px;
}

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #43A047;
    padding: 18px 22px;
    background: #E8F5E9;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-content img {
    border-radius: 10px;
    margin: 18px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid #E0E0E0;
    margin-top: 25px;
}

.article-tags i {
    color: #43A047;
}

.article-tags span {
    padding: 6px 14px;
    background: #E8F5E9;
    border-radius: 6px;
    font-size: 13px;
    color: #333333;
}

.article-tags span a {
    color: #333333;
}

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid #E0E0E0;
    margin-top: 25px;
}

.article-nav a {
    color: #43A047;
    font-size: 15px;
    font-weight: 500;
}

.article-nav a:hover {
    color: #2E7D32;
}

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

.related-posts-title {
    font-size: 22px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.related-posts-title i {
    margin-right: 10px;
    color: #43A047;
}

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

.related-item {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: #43A047;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.1);
}

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

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

.related-item-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* === PAGE === */
.page-article {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 35px;
}

.page-title {
    font-size: 32px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 22px;
}

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

.page-content {
    color: #333333;
    line-height: 1.9;
    font-size: 16px;
}

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #43A047;
    border-color: #43A047;
    color: #FFFFFF;
}

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

.error-icon {
    margin-bottom: 25px;
}

.error-icon i {
    font-size: 80px;
    color: #E0E0E0;
}

.error-code {
    font-size: 110px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #43A047;
    margin-bottom: 12px;
}

.error-title {
    font-size: 28px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.error-desc {
    color: #757575;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

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

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