/* ============================================
   FRUITBET THEME - main.css (moban-82)
   Classic Fruit Machine Slots Theme
   Colors: #E53E3E, #ED8936, #ECC94B, #48BB78, #9F7AEA + #FAFAFA, bg #1A1A2E
   ============================================ */

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

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

body {
    font-family: 'Nunito', sans-serif;
    background: #1A1A2E;
    color: #FAFAFA;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.3;
}

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

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

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

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

.fruit-text {
    background: linear-gradient(135deg, #E53E3E, #ED8936, #ECC94B, #48BB78, #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes fruitBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    75% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes juiceSplash {
    0% { transform: scale(0); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes slotSpin {
    0% { transform: translateY(0); }
    20% { transform: translateY(-100%); }
    40% { transform: translateY(-200%); }
    60% { transform: translateY(-300%); }
    80% { transform: translateY(-400%); }
    100% { transform: translateY(0); }
}

@keyframes cherrySwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
}

@keyframes fruitGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(236, 201, 75, 0.3); }
    50% { box-shadow: 0 0 20px rgba(236, 201, 75, 0.6), 0 0 40px rgba(229, 62, 62, 0.3); }
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 5px rgba(236, 201, 75, 0.5), 0 0 10px rgba(236, 201, 75, 0.3); }
    50% { text-shadow: 0 0 15px rgba(236, 201, 75, 0.8), 0 0 30px rgba(229, 62, 62, 0.5), 0 0 45px rgba(159, 122, 234, 0.3); }
}

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

@keyframes spinReel {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

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

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

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D1A 0%, #1A1A2E 100%);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #E53E3E, #ED8936, #ECC94B, #48BB78, #9F7AEA) 1;
    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 {
    font-family: 'Fredoka One', cursive;
    font-size: 14px;
    color: #ECC94B;
    background: rgba(236, 201, 75, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(236, 201, 75, 0.3);
}

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

.btn-login {
    padding: 8px 20px;
    border: 2px solid #ECC94B;
    border-radius: 25px;
    color: #ECC94B;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #ECC94B;
    color: #1A1A2E;
}

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

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    background: linear-gradient(135deg, #48BB78, #38A169);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 13, 26, 0.9);
    border-top: 1px solid rgba(236, 201, 75, 0.2);
}

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

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

.nav-link:hover {
    color: #ECC94B;
    background: rgba(236, 201, 75, 0.1);
    text-shadow: none;
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #E53E3E, #ED8936, #ECC94B, #48BB78, #9F7AEA);
    overflow: hidden;
    padding: 8px 0;
}

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

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

/* === 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;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A2E, #2D1B4E);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 2px solid;
    border-image: linear-gradient(135deg, #E53E3E, #ECC94B, #48BB78) 1;
    animation: bounceIn 0.6s ease;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #FAFAFA;
    font-size: 28px;
    cursor: pointer;
}

.announcement-header-icon {
    text-align: center;
    font-size: 48px;
    color: #ECC94B;
    margin-bottom: 15px;
    animation: fruitBounce 2s ease infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #FAFAFA;
}

.announcement-item:hover {
    background: rgba(236, 201, 75, 0.15);
    color: #fff;
    text-shadow: none;
}

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

.announcement-badge.hot { background: #E53E3E; color: #fff; }
.announcement-badge.new { background: #48BB78; color: #fff; }
.announcement-badge.info { background: #9F7AEA; color: #fff; }

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #ECC94B);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.5);
    color: #fff;
}

/* === HERO SECTION === */
.fruitbet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    border-radius: 20px;
    margin: 20px 0;
    padding: 60px 30px;
}

.slot-machine-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    opacity: 0.4;
}

.slot-reel-row {
    display: flex;
    gap: 10px;
}

.slot-reel {
    width: 70px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(236, 201, 75, 0.3);
    overflow: hidden;
}

.fruit-icon {
    font-size: 40px;
    display: block;
}

.reel-1 .fruit-icon { animation: fruitBounce 2s ease infinite 0s; }
.reel-2 .fruit-icon { animation: fruitBounce 2s ease infinite 0.3s; }
.reel-3 .fruit-icon { animation: fruitBounce 2s ease infinite 0.6s; }
.reel-4 .fruit-icon { animation: fruitBounce 2s ease infinite 0.9s; }
.reel-5 .fruit-icon { animation: fruitBounce 2s ease infinite 1.2s; }

.fruit-decor {
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    animation: cherrySwing 3s ease infinite;
}

.fruit-decor-1 { top: 15%; left: 5%; animation-delay: 0s; }
.fruit-decor-2 { top: 60%; left: 8%; animation-delay: 0.5s; }
.fruit-decor-3 { top: 20%; right: 5%; animation-delay: 1s; }
.fruit-decor-4 { bottom: 15%; right: 8%; animation-delay: 1.5s; }

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

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

.hero-brand {
    display: block;
    font-size: 64px;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #ECC94B, #48BB78, #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonPulse 3s ease infinite;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #E53E3E, #ECC94B, #48BB78);
    margin: 15px auto;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    letter-spacing: 5px;
    color: #ECC94B;
}

.hero-description {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.8);
    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-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: #ECC94B;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    text-transform: uppercase;
}

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

.btn-fruit-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #ECC94B);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-fruit-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.5);
    color: #fff;
}

.btn-outline-fruit {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #48BB78;
    border-radius: 30px;
    color: #48BB78;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-fruit:hover {
    background: #48BB78;
    color: #1A1A2E;
    text-shadow: none;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

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

/* === FRUIT STAR GAMES (6 cards) === */
.fruit-star-games {
    padding: 60px 0;
}

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

.fruit-star-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(45, 27, 78, 0.9));
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(236, 201, 75, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #FAFAFA;
}

.fruit-star-card:hover {
    transform: translateY(-8px);
    border-color: #ECC94B;
    box-shadow: 0 15px 40px rgba(236, 201, 75, 0.2);
    color: #fff;
    text-shadow: none;
}

.fruit-star-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 201, 75, 0.05) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.fruit-star-card:hover .fruit-star-glow {
    background: radial-gradient(circle, rgba(236, 201, 75, 0.15) 0%, transparent 70%);
}

.fruit-star-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    animation: floatUp 3s ease infinite;
}

.fruit-star-rating {
    margin-bottom: 12px;
    color: #ECC94B;
    font-size: 14px;
}

.fruit-star-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ECC94B;
}

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

.fruit-star-players {
    font-size: 12px;
    color: rgba(250, 250, 250, 0.5);
}

.fruit-star-players i {
    color: #48BB78;
    margin-right: 5px;
}

/* === FRUIT GRID (3x4) === */
.fruit-grid-section {
    padding: 60px 0;
}

.fruit-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.fruit-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(236, 201, 75, 0.2);
    transition: all 0.3s ease;
    color: #FAFAFA;
    min-width: 140px;
    text-align: center;
}

.fruit-grid-node:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(236, 201, 75, 0.1);
    border-color: #ECC94B;
    box-shadow: 0 10px 25px rgba(236, 201, 75, 0.2);
    color: #fff;
    text-shadow: none;
}

.node-fruit {
    font-size: 36px;
    animation: cherrySwing 4s ease infinite;
}

.node-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(250, 250, 250, 0.8);
}

/* === FRUIT FEATURES (4) === */
.fruit-features {
    padding: 60px 0;
}

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

.fruit-feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.5));
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(72, 187, 120, 0.2);
    transition: all 0.4s ease;
}

.fruit-feature-card:hover {
    transform: translateY(-8px);
    border-color: #48BB78;
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.15);
}

.fruit-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.2), rgba(236, 201, 75, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ECC94B;
}

.fruit-feature-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #FAFAFA;
}

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

/* === FRUIT STATS (4 counters) === */
.fruit-stats {
    padding: 60px 0;
    position: relative;
}

.fruit-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px;
}

.fruit-pattern-layer {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(237, 137, 54, 0.1), rgba(236, 201, 75, 0.1), rgba(72, 187, 120, 0.1), rgba(159, 122, 234, 0.1));
    animation: shimmer 8s linear infinite;
    background-size: 200% 100%;
}

.fruit-stats .section-title,
.fruit-stats .section-subtitle {
    position: relative;
    z-index: 2;
}

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

.fruit-stat-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid rgba(236, 201, 75, 0.2);
    transition: all 0.3s ease;
}

.fruit-stat-card:hover {
    transform: translateY(-5px);
    border-color: #ECC94B;
    box-shadow: 0 10px 30px rgba(236, 201, 75, 0.15);
}

.stat-fruit-decoration {
    font-size: 30px;
    margin-bottom: 15px;
    animation: fruitBounce 2s ease infinite;
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 40px;
    color: #ECC94B;
    margin-bottom: 10px;
}

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

/* === FRUIT PROMOTIONS (3) === */
.fruit-promos {
    padding: 60px 0;
}

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

.fruit-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(45, 27, 78, 0.7));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(159, 122, 234, 0.3);
    transition: all 0.4s ease;
}

.fruit-promo-card:hover {
    transform: translateY(-8px);
    border-color: #9F7AEA;
    box-shadow: 0 15px 40px rgba(159, 122, 234, 0.2);
}

.promo-fruit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(236, 201, 75, 0.05) 0%, transparent 60%);
}

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

.promo-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: fruitBounce 3s ease infinite;
}

.fruit-promo-inner h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ECC94B;
}

.fruit-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: 20px;
    font-size: 12px;
    color: rgba(250, 250, 250, 0.5);
}

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

.promo-badge.hot { background: #E53E3E; color: #fff; }
.promo-badge.new { background: #48BB78; color: #fff; }
.promo-badge.vip { background: #9F7AEA; color: #fff; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.4);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 30px;
    margin: 40px 0;
    background: linear-gradient(135deg, #1A1A2E, #16213E, #0F3460);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.footer-cta-fruitfield {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

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

.cta-fruit-icon {
    font-size: 36px;
    margin: 0 10px;
    display: inline-block;
    animation: fruitBounce 2s ease infinite;
}

.cta-fruit-icon:nth-child(2) { animation-delay: 0.3s; }
.cta-fruit-icon:nth-child(3) { animation-delay: 0.6s; }

.footer-cta-inner h2 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #ECC94B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-cta-inner > p {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.7);
    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: #48BB78;
    font-weight: 600;
}

.cta-feature i {
    margin-right: 5px;
}

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

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

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

.article-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(236, 201, 75, 0.15);
    transition: all 0.3s ease;
    display: block;
    color: #FAFAFA;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #ECC94B;
    box-shadow: 0 10px 30px rgba(236, 201, 75, 0.15);
    color: #fff;
    text-shadow: none;
}

.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.1);
}

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

.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: 5px;
    color: #ED8936;
}

.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: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #ECC94B;
    border-radius: 30px;
    color: #ECC94B;
    font-weight: 700;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #ECC94B;
    color: #1A1A2E;
    text-shadow: none;
}

/* === CONTENT AREA LAYOUT === */
.content-area {
    display: flex;
    gap: 30px;
    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: #ECC94B;
}

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

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

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

.article-card-more:hover {
    background: #ECC94B;
    color: #1A1A2E;
    text-shadow: none;
}

/* === PAGINATION === */
.pagination {
    text-align: center;
    padding: 20px 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;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #FAFAFA;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 201, 75, 0.2);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    color: #fff;
    border-color: transparent;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(236, 201, 75, 0.1);
}

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

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

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.5);
}

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

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

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

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

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

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

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

.article-tags {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 201, 75, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(250, 250, 250, 0.5);
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(236, 201, 75, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #ECC94B;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 201, 75, 0.15);
}

/* === RELATED POSTS === */
.related-posts {
    margin-top: 40px;
    padding: 30px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(236, 201, 75, 0.1);
}

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

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

.related-item {
    display: block;
    color: #FAFAFA;
    transition: all 0.3s ease;
}

.related-item:hover {
    color: #fff;
    text-shadow: none;
}

.related-item-thumb {
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

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

.related-item-title {
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

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

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

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

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px 0;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(236, 201, 75, 0.2);
    border-radius: 20px;
    color: rgba(250, 250, 250, 0.7);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.provider-tab.active,
.provider-tab:hover {
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    color: #fff;
    border-color: transparent;
}

/* === PAGE ARTICLE === */
.page-article {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(236, 201, 75, 0.1);
}

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

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

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

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

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

.error-fruit-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: fruitBounce 2s ease infinite;
}

.error-code {
    font-size: 100px;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #ECC94B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    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: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
    color: #fff;
}

.sidebar-btn-facebook { background: #1877F2; }
.sidebar-btn-telegram { background: #0088cc; }

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: rgba(26, 26, 46, 0.95);
    color: #FAFAFA;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(236, 201, 75, 0.2);
}

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D1A 0%, #1A1A2E 100%);
    padding: 50px 0 20px;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #E53E3E, #ED8936, #ECC94B, #48BB78, #9F7AEA) 1;
    margin-top: 40px;
}

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

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

.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: 40px;
    height: 40px;
    border: 2px solid #E53E3E;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 700;
    color: #E53E3E;
    font-size: 14px;
    margin-bottom: 15px;
}

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

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

.footer-social-links a:hover {
    background: #ECC94B;
    color: #1A1A2E;
}

.footer-col h4 {
    font-size: 15px;
    color: #ECC94B;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

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

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

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(236, 201, 75, 0.15);
    border-bottom: 1px solid rgba(236, 201, 75, 0.15);
    margin-bottom: 20px;
}

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

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

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

.license-item i {
    font-size: 24px;
    color: #ECC94B;
}

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

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

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: rgba(250, 250, 250, 0.5);
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: contents;
}
