/* ============================================
   VEGASROYAL THEME - main.css (moban-69)
   World Casino Theme with Neon Lights
   Colors: #0A0A0A, #6B21A8, #FFD700
   Fonts: Playfair Display, Poppins
   ============================================ */

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

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

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

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

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

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

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

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

.gold-text {
    color: #FFD700;
}

.neon-gold {
    color: #FFD700;
    text-shadow: 0 0 7px #FFD700, 0 0 10px #FFD700, 0 0 21px #FFD700, 0 0 42px #FFD700;
}

.neon-purple {
    color: #6B21A8;
    text-shadow: 0 0 7px #6B21A8, 0 0 10px #6B21A8, 0 0 21px #6B21A8, 0 0 42px #6B21A8;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #FFD700,
            0 0 80px #FFD700,
            0 0 90px #FFD700,
            0 0 100px #FFD700,
            0 0 150px #FFD700;
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.5;
    }
}

@keyframes neonFlickerPurple {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #6B21A8,
            0 0 80px #6B21A8,
            0 0 90px #6B21A8;
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.6;
    }
}

@keyframes spotlightSweep {
    0% {
        transform: rotate(-30deg) translateY(-100%);
        opacity: 0.3;
    }
    50% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.7;
    }
    100% {
        transform: rotate(30deg) translateY(-100%);
        opacity: 0.3;
    }
}

@keyframes spotlightSweepReverse {
    0% {
        transform: rotate(30deg) translateY(-100%);
        opacity: 0.3;
    }
    50% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.7;
    }
    100% {
        transform: rotate(-30deg) translateY(-100%);
        opacity: 0.3;
    }
}

@keyframes chipStack {
    0% {
        transform: translateY(20px) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
    }
}

@keyframes diceRoll {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: rotateX(90deg) rotateY(90deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }
    75% {
        transform: rotateX(270deg) rotateY(270deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 5px #6B21A8, 0 0 10px #6B21A8, 0 0 20px #6B21A8;
    }
    50% {
        box-shadow: 0 0 10px #6B21A8, 0 0 20px #6B21A8, 0 0 40px #6B21A8, 0 0 80px #6B21A8;
    }
}

@keyframes neonPulseGold {
    0%, 100% {
        box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 20px #FFD700;
    }
    50% {
        box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #FFD700, 0 0 80px #FFD700;
    }
}

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

@keyframes floatChip {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0A0A0A 0%, #1a0a2e 100%);
    border-bottom: 2px solid #6B21A8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.3);
}

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

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

.header-time {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #FFD700;
    background: rgba(107, 33, 168, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #6B21A8;
    text-shadow: 0 0 5px #FFD700;
}

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

.btn-login {
    padding: 8px 20px;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-login:hover {
    background: #FFD700;
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-register:hover {
    background: linear-gradient(135deg, #9333EA, #6B21A8);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(107, 33, 168, 0.5);
    color: #FFD700;
}

.btn-demo {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A0A;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-demo:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    color: #0A0A0A;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, rgba(107, 33, 168, 0.2) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(107, 33, 168, 0.2) 100%);
    border-top: 1px solid rgba(107, 33, 168, 0.5);
    border-bottom: 1px solid rgba(107, 33, 168, 0.5);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E8E8F0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border-bottom-color: #FFD700;
    background: rgba(107, 33, 168, 0.2);
}

.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(90deg, #6B21A8, #1a0a2e, #6B21A8);
    padding: 8px 0;
    overflow: hidden;
}

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

.notification-content span {
    color: #FFD700;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

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

/* === 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(10, 10, 10, 0.9);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 2px solid #6B21A8;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 40px rgba(107, 33, 168, 0.5), 0 0 80px rgba(255, 215, 0, 0.2);
    animation: fadeInUp 0.5s ease;
}

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

.announcement-close:hover {
    color: #fff;
    text-shadow: 0 0 10px #FFD700;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #FFD700;
    animation: diceRoll 3s linear infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    animation: neonFlicker 3s infinite;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(107, 33, 168, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(107, 33, 168, 0.4);
    transition: all 0.3s;
    color: #E8E8F0;
}

.announcement-item:hover {
    background: rgba(107, 33, 168, 0.4);
    border-color: #FFD700;
    transform: translateX(5px);
    color: #FFD700;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

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

.announcement-badge.new {
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A0A;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A0A;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.announcement-cta:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    color: #0A0A0A;
}

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

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

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

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

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A0A;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #0A0A0A;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ============================================
   VEGAS HERO SECTION - Neon Signboard
   ============================================ */
.vegas-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(107, 33, 168, 0.3) 0%, #0A0A0A 70%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spotlight beams */
.spotlight-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    width: 200px;
    height: 600px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.15) 0%, transparent 100%);
    clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
}

.spotlight-left {
    top: -100px;
    left: 10%;
    animation: spotlightSweep 8s ease-in-out infinite;
}

.spotlight-right {
    top: -100px;
    right: 10%;
    animation: spotlightSweepReverse 8s ease-in-out infinite;
}

.spotlight-center {
    top: -100px;
    left: 50%;
    margin-left: -100px;
    animation: spotlightSweep 12s ease-in-out infinite;
    opacity: 0.5;
}

/* Neon Signboard */
.neon-signboard {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.neon-border {
    position: relative;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFD700, #6B21A8, #FFD700, #6B21A8);
    background-size: 300% 300%;
    animation: shimmer 5s linear infinite;
    box-shadow: 0 0 30px rgba(107, 33, 168, 0.5), 0 0 60px rgba(255, 215, 0, 0.2);
}

.neon-inner {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 50%, #0A0A0A 100%);
    border-radius: 18px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Neon Chips Decoration */
.neon-chips {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 3;
}

.chip {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    background: radial-gradient(circle, #6B21A8 30%, #0A0A0A 70%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.chip-1 { animation: floatChip 3s ease-in-out infinite; }
.chip-2 { animation: floatChip 3s ease-in-out infinite 0.5s; }
.chip-3 { animation: floatChip 3s ease-in-out infinite 1s; }
.chip-4 { animation: floatChip 3s ease-in-out infinite 1.5s; }
.chip-5 { animation: floatChip 3s ease-in-out infinite 2s; }

.hero-main-title {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-main-title .neon-text {
    display: inline-block;
}

.hero-main-title .neon-purple {
    animation: neonFlickerPurple 4s infinite;
}

.hero-main-title .neon-gold {
    animation: neonFlicker 4s infinite;
}

.neon-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, #6B21A8, #FFD700, transparent);
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-tagline {
    font-size: 18px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.neon-flicker {
    animation: neonFlicker 5s infinite;
}

.hero-description {
    font-size: 15px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

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

/* ============================================
   FEATURED GAMES SECTION
   ============================================ */
.featured-games {
    padding: 60px 0;
}

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

.featured-game-card {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 1px solid rgba(107, 33, 168, 0.4);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    display: block;
    color: #E8E8F0;
}

.featured-game-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(107, 33, 168, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    color: #E8E8F0;
}

.card-spotlight {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.featured-game-card:hover .card-spotlight {
    opacity: 1;
}

.featured-game-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(107, 33, 168, 0.5);
    transition: all 0.4s;
}

.featured-game-card:hover .featured-game-icon {
    animation: diceRoll 1s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

.featured-game-rating i {
    color: #FFD700;
    font-size: 12px;
}

.featured-game-card h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.featured-game-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.featured-game-players {
    font-size: 12px;
    color: #6B21A8;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.featured-game-players i {
    color: #FFD700;
    margin-right: 4px;
}

/* ============================================
   GAME GRID SECTION (3x4)
   ============================================ */
.game-grid-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(107, 33, 168, 0.05) 0%, transparent 100%);
}

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

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(107, 33, 168, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
    color: #E8E8F0;
    text-align: center;
}

.game-grid-node:hover {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    box-shadow: 0 0 20px rgba(107, 33, 168, 0.4), 0 0 10px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
    color: #FFD700;
}

.node-chip {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.game-grid-node:hover .node-chip {
    animation: chipStack 0.6s ease;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.node-label {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

/* ============================================
   VEGAS FEATURES SECTION
   ============================================ */
.vegas-features {
    padding: 60px 0;
}

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

.vegas-feature-card {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 1px solid rgba(107, 33, 168, 0.4);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s;
}

.vegas-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(107, 33, 168, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
}

.vegas-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.3), rgba(10, 10, 10, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(107, 33, 168, 0.5);
    transition: all 0.4s;
}

.vegas-feature-card:hover .vegas-feature-icon {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.neon-icon {
    font-size: 32px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.vegas-feature-card h3 {
    font-size: 17px;
    color: #FFD700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.vegas-feature-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   VEGAS STATS SECTION
   ============================================ */
.vegas-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.vegas-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
    pointer-events: none;
}

.spotlight-stats-1 {
    left: 20%;
    animation: spotlightSweep 10s ease-in-out infinite;
}

.spotlight-stats-2 {
    right: 20%;
    animation: spotlightSweepReverse 10s ease-in-out infinite;
}

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

.vegas-stat-card {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 2px solid rgba(107, 33, 168, 0.5);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.vegas-stat-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 15px rgba(107, 33, 168, 0.3);
    transform: translateY(-5px);
}

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

.stat-chip-decoration i {
    font-size: 24px;
    color: #FFD700;
    animation: floatChip 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.stat-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* ============================================
   VEGAS PROMOTIONS SECTION
   ============================================ */
.vegas-promos {
    padding: 60px 0;
}

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

.vegas-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s;
}

.vegas-promo-card:hover {
    transform: translateY(-8px);
}

.promo-spotlight-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.vegas-promo-inner {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 1px solid rgba(107, 33, 168, 0.5);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    z-index: 2;
}

.vegas-promo-card:hover .vegas-promo-inner {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2), 0 10px 40px rgba(107, 33, 168, 0.3);
}

.promo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFD700;
    box-shadow: 0 0 15px rgba(107, 33, 168, 0.5);
}

.vegas-promo-inner h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.vegas-promo-inner p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

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

.promo-badge.new {
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    color: #fff;
}

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

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A0A;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-promo:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: #0A0A0A;
}

/* ============================================
   FOOTER CTA SECTION
   ============================================ */
.footer-cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(107, 33, 168, 0.2) 0%, #0A0A0A 70%);
}

.footer-cta-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spotlight-cta-1 {
    left: 30%;
    animation: spotlightSweep 10s ease-in-out infinite;
}

.spotlight-cta-2 {
    right: 30%;
    animation: spotlightSweepReverse 10s ease-in-out infinite;
}

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

.cta-neon-decoration {
    margin-bottom: 20px;
    font-size: 28px;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.footer-cta-inner p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

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

.cta-feature {
    font-size: 14px;
    color: #E8E8F0;
    font-family: 'Poppins', sans-serif;
}

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

.cta-main-btn {
    font-size: 16px;
    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: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 1px solid rgba(107, 33, 168, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    color: #E8E8F0;
}

.article-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
    color: #E8E8F0;
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #FFD700;
    line-height: 1.4;
}

.article-card-title a {
    color: #FFD700;
}

.article-card-title a:hover {
    color: #fff;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

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

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-size: 13px;
    color: #FFD700;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #FFD700;
    border-radius: 30px;
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    max-width: 250px;
    margin: 0 auto;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.view-more-btn:hover {
    background: #FFD700;
    color: #0A0A0A;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #999;
    border-bottom: 1px solid rgba(107, 33, 168, 0.3);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #FFD700;
}

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

/* ============================================
   CATEGORY HEADER & FILTER TABS
   ============================================ */
.category-header {
    margin-bottom: 30px;
}

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

.category-desc {
    color: #999;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.provider-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(107, 33, 168, 0.3);
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(107, 33, 168, 0.15);
    border: 1px solid rgba(107, 33, 168, 0.4);
    border-radius: 20px;
    color: #E8E8F0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 10px rgba(107, 33, 168, 0.4);
}

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

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

.no-posts p {
    color: #999;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   SINGLE ARTICLE
   ============================================ */
.single-article {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 1px solid rgba(107, 33, 168, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
    font-family: 'Poppins', sans-serif;
}

.article-meta i {
    color: #6B21A8;
    margin-right: 4px;
}

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

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

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

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #FFD700;
    margin: 25px 0 15px;
    font-family: 'Playfair Display', serif;
}

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

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #6B21A8;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(107, 33, 168, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #ccc;
}

.article-tags {
    padding: 20px 0;
    border-top: 1px solid rgba(107, 33, 168, 0.3);
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

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

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(107, 33, 168, 0.2);
    border: 1px solid rgba(107, 33, 168, 0.4);
    border-radius: 15px;
    font-size: 12px;
    color: #FFD700;
    font-family: 'Poppins', sans-serif;
}

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

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(107, 33, 168, 0.3);
    font-family: 'Poppins', sans-serif;
}

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

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

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(107, 33, 168, 0.5);
}

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

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

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

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

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

.related-item:hover .related-item-thumb img {
    transform: scale(1.1);
}

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

/* ============================================
   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(107, 33, 168, 0.2);
    border: 1px solid rgba(107, 33, 168, 0.4);
    color: #E8E8F0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 10px rgba(107, 33, 168, 0.4);
}

/* ============================================
   PAGE ARTICLE
   ============================================ */
.page-article {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0a2e 100%);
    border: 1px solid rgba(107, 33, 168, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.page-title {
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

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

.page-content {
    font-size: 15px;
    line-height: 1.9;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

.page-content h2,
.page-content h3 {
    color: #FFD700;
    margin: 20px 0 10px;
    font-family: 'Playfair Display', serif;
}

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

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

.error-neon-sign {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.error-neon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #6B21A8;
    border-radius: 50%;
    animation: neonPulse 2s infinite;
}

.error-neon-icon {
    font-size: 48px;
    color: #FFD700;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    animation: diceRoll 4s linear infinite;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.error-code {
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.error-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.error-desc {
    color: #999;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6B21A8, #9333EA);
    border-radius: 50%;
    color: #FFD700;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 0 10px rgba(107, 33, 168, 0.5);
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A0A;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

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

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

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #0A0A0A;
    color: #FFD700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    white-space: nowrap;
    border: 1px solid #6B21A8;
    font-family: 'Poppins', sans-serif;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #1a0a2e 100%);
    border-top: 2px solid #6B21A8;
    padding: 50px 0 30px;
    box-shadow: 0 -4px 20px rgba(107, 33, 168, 0.3);
}

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

.footer-col h4 {
    color: #FFD700;
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    color: #999;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

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

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

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.footer-brand-text {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    font-weight: 700;
    color: #ff4444;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 33, 168, 0.3);
    border: 1px solid rgba(107, 33, 168, 0.5);
    border-radius: 50%;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background: #FFD700;
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(107, 33, 168, 0.3);
    border-bottom: 1px solid rgba(107, 33, 168, 0.3);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    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-family: 'Poppins', sans-serif;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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