/* ============================================
   JACKPOTGO THEME - main.css (moban-116)
   Jackpot Road Theme with Staircase Progression
   Colors: #FFD700, #C62828, #1A1A1A
   ============================================ */

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

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

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

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

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

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

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

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

/* === GOLD TEXT === */
.gold-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */

@keyframes stairClimb {
    0% { transform: translateY(100%); opacity: 0; }
    25% { transform: translateY(50%); opacity: 0.5; }
    50% { transform: translateY(0); opacity: 1; }
    75% { transform: translateY(-10%); opacity: 0.8; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes jackpotGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(198, 40, 40, 0.1); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(198, 40, 40, 0.3), 0 0 120px rgba(255, 215, 0, 0.2); }
}

@keyframes goldRain {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

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

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

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

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

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

@keyframes rotateTrophy {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 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: #FFD700;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #1A1A1A;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-demo {
    padding: 8px 20px;
    background: linear-gradient(135deg, #C62828, #B71C1C);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #B71C1C, #C62828);
    color: #fff;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(135deg, #111 0%, #1A1A1A 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

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

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

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(135deg, #C62828, #B71C1C);
    overflow: hidden;
    padding: 8px 0;
}

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

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

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

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #1A1A1A;
    text-shadow: none;
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* === HERO SECTION === */
.jackpotgo-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D0D, #1A1A1A, #1a0a0a);
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Road Lanes */
.road-lanes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.road-lane {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.road-lane.lane-1 { left: 10%; animation: roadShine 4s ease infinite; }
.road-lane.lane-2 { left: 30%; animation: roadShine 4s ease infinite 0.8s; }
.road-lane.lane-3 { left: 50%; animation: roadShine 4s ease infinite 1.6s; }
.road-lane.lane-4 { left: 70%; animation: roadShine 4s ease infinite 2.4s; }
.road-lane.lane-5 { left: 90%; animation: roadShine 4s ease infinite 3.2s; }

/* Staircase Progress */
.staircase-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    height: 120px;
    opacity: 0.15;
}

.stair-step {
    width: 60px;
    background: linear-gradient(180deg, #FFD700, #C62828);
    animation: stairClimb 3s ease infinite;
}

.stair-step.stair-1 { height: 20%; animation-delay: 0s; }
.stair-step.stair-2 { height: 40%; animation-delay: 0.2s; }
.stair-step.stair-3 { height: 60%; animation-delay: 0.4s; }
.stair-step.stair-4 { height: 80%; animation-delay: 0.6s; }
.stair-step.stair-5 { height: 100%; animation-delay: 0.8s; }

/* Gold Rain Effect */
.gold-rain-effect {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gold-rain-effect::before,
.gold-rain-effect::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: goldRain 6s linear infinite;
}

.gold-rain-effect::before {
    left: 20%;
    animation-delay: 0s;
}

.gold-rain-effect::after {
    left: 60%;
    animation-delay: 3s;
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
}

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

.hero-brand {
    display: block;
    font-size: 60px;
    font-family: 'Almendra Display', cursive;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease infinite;
    letter-spacing: 8px;
    text-transform: uppercase;
}

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

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

.hero-description {
    font-size: 15px;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
    font-weight: 300;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-family: 'Almendra Display', cursive;
    color: #FFD700;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 35px;
    font-weight: 300;
}

/* === JACKPOT GAMES SECTION === */
.jackpot-games {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

.jackpot-game-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, #1f1f1f, #151515);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    color: #E8E8F0;
}

.jackpot-game-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    animation: jackpotGlow 2s ease infinite;
    color: #E8E8F0;
}

.jackpot-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-game-icon {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 15px;
}

.jackpot-game-rating {
    margin-bottom: 10px;
    color: #FFD700;
    font-size: 12px;
}

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

.jackpot-game-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}

.jackpot-game-players {
    font-size: 12px;
    color: #C62828;
    font-weight: 700;
}

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

/* === STAIRCASE GRID SECTION === */
.staircase-grid-section {
    margin-bottom: 50px;
    padding: 40px 0;
}

.staircase-grid-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.staircase-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #1f1f1f, #151515);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #E8E8F0;
}

.staircase-grid-node:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.staircase-node-icon {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 8px;
}

.staircase-node-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === LUXURY FEATURES === */
.luxury-features {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

.luxury-feature-card {
    background: linear-gradient(135deg, #1f1f1f, #151515);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.luxury-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.luxury-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(198, 40, 40, 0.1));
    border-radius: 50%;
    font-size: 24px;
    color: #FFD700;
}

.luxury-feature-card h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
}

.luxury-feature-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    font-weight: 300;
}

/* === JACKPOT STATS === */
.jackpot-stats {
    position: relative;
    margin-bottom: 50px;
    padding: 60px 0;
    overflow: hidden;
    border-radius: 15px;
}

.jackpot-stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D0D0D, #1a0a0a);
    z-index: 0;
}

.gold-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(198, 40, 40, 0.05));
}

.jackpot-stats .section-title,
.jackpot-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

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

.jackpot-stat-card {
    background: linear-gradient(135deg, #1f1f1f, #151515);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.jackpot-stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    animation: jackpotGlow 2s ease infinite;
}

.stat-gold-decoration {
    font-size: 18px;
    color: rgba(255, 215, 0, 0.3);
    margin-bottom: 10px;
}

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

.stat-number {
    font-size: 36px;
    font-family: 'Almendra Display', cursive;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* === LOTTERY PROMOS === */
.lottery-promos {
    margin-bottom: 50px;
    padding: 40px 0;
}

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

.lottery-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease;
}

.lottery-promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    animation: jackpotGlow 2s ease infinite;
}

.promo-luxury-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(198, 40, 40, 0.03));
}

.lottery-promo-inner {
    position: relative;
    z-index: 1;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1f1f1f, #151515);
}

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

.lottery-promo-inner h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.lottery-promo-inner p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

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

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

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

.promo-badge.new {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
}

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

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

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    color: #1A1A1A;
    text-shadow: none;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    margin-bottom: 50px;
    padding: 60px 30px;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-cta-luxuryfield {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D0D0D, #1a0a0a, #0D0D0D);
    z-index: 0;
}

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

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

.cta-luxury-crown {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #C62828);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: stairPulse 3s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Almendra Display', cursive;
}

.footer-cta-inner p {
    font-size: 15px;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-weight: 300;
}

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

.cta-feature {
    font-size: 14px;
    color: #FFD700;
    font-weight: 700;
}

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

.cta-main-btn {
    margin-top: 10px;
}

/* === VIP ROAD SECTION === */
.vip-road-section {
    margin-bottom: 50px;
    padding: 40px 0;
}

.vip-road-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vip-step {
    text-align: center;
    padding: 20px;
}

.vip-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    font-size: 24px;
    color: #1A1A1A;
    animation: stairPulse 3s ease infinite;
}

.vip-step h4 {
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.vip-step p {
    font-size: 12px;
    color: #999;
    font-weight: 300;
}

.vip-step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #C62828);
    flex-shrink: 0;
}

.vip-cta-btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.article-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
    color: #E8E8F0;
}

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

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

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

.article-card-title {
    padding: 12px 15px 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.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: #999;
    margin-bottom: 5px;
}

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

.article-card-excerpt {
    padding: 5px 15px 15px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    color: #FFD700;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    max-width: 200px;
    margin: 0 auto;
    border: 2px solid #FFD700;
    border-radius: 8px;
    color: #FFD700;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #fff;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #FFD700;
}

.breadcrumb span {
    color: #999;
}

/* === CATEGORY === */
.category-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.category-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-description {
    color: #999;
    font-size: 14px;
    font-weight: 300;
}

.provider-tabs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.provider-tab {
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    color: #E8E8F0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    border-color: #FFD700;
    font-weight: 700;
}

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

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

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

.article-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.article-meta a {
    color: #FFD700;
}

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

.article-content {
    color: #ddd;
    line-height: 1.9;
    font-size: 15px;
    font-weight: 300;
}

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

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

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

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

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 20px;
}

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

.article-tags span {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    font-size: 12px;
    color: #FFD700;
}

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

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.article-nav-prev,
.article-nav-next {
    max-width: 45%;
}

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

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

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

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

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

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

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

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

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #1f1f1f, #151515);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
}

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

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

.page-content {
    color: #ddd;
    line-height: 1.8;
    font-weight: 300;
}

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

/* === PAGINATION === */
.pagination {
    text-align: center;
    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;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #E8E8F0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #FFD700, #C62828);
    border-color: #FFD700;
    color: #1A1A1A;
}

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

.error-jackpot {
    margin-bottom: 20px;
}

.error-jackpot-trophy {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #C62828);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: stairPulse 3s ease infinite;
}

.error-code {
    font-size: 100px;
    background: linear-gradient(135deg, #FFD700, #C62828, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

.error-desc {
    color: #aaa;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-weight: 300;
}

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

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

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

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

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

.footer-brand-text {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #C62828;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    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(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FFD700;
    color: #1A1A1A;
}

.footer-col h4 {
    font-size: 15px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Almendra Display', cursive;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: #999;
    transition: all 0.3s ease;
    font-weight: 300;
}

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

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

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

.license-item span {
    font-size: 11px;
    color: #999;
    font-weight: 300;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    font-weight: 300;
}

/* === 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 {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    color: #1A1A1A;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    color: #1A1A1A;
    text-shadow: none;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0D47A1);
    color: #fff;
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088CC, #005F8C);
    color: #fff;
}

.sidebar-label {
    display: none;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

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

.announcement-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.announcement-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1f1f1f, #151515);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    animation: fadeSlideUp 0.5s ease;
}

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

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

.announcement-header-icon i {
    font-size: 40px;
    color: #FFD700;
    animation: stairPulse 2s ease infinite;
}

.announcement-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Almendra Display', cursive;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #E8E8F0;
}

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

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

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

.announcement-badge.new {
    background: #FFD700;
    color: #1A1A1A;
}

.announcement-badge.info {
    background: #1565C0;
    color: #fff;
}

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

.announcement-item i.fa-chevron-right {
    color: #FFD700;
    font-size: 10px;
    flex-shrink: 0;
}

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

.announcement-cta {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #1A1A1A;
    text-shadow: none;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-column: 1 / -1;
}
