/* ============================================
   PARISBET THEME - main.css (moban-74)
   World Casino - Parisian Romantic Style
   Colors: #0D1B2A bg, #1A237E blue, #FFD54F gold, #FAFAFA white
   Fonts: DM Serif Display + Raleway
   ============================================ */

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

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

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

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

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

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

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

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

.gold-text {
    color: #FFD54F;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes eiffelTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.9; transform: scale(1.2); }
    75% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes spotlightBeam {
    0% { transform: rotate(-15deg) translateY(0); opacity: 0.3; }
    25% { transform: rotate(-5deg) translateY(-10px); opacity: 0.6; }
    50% { transform: rotate(5deg) translateY(-5px); opacity: 0.4; }
    75% { transform: rotate(15deg) translateY(-15px); opacity: 0.7; }
    100% { transform: rotate(-15deg) translateY(0); opacity: 0.3; }
}

@keyframes rosePetal {
    0% {
        transform: translateY(-20px) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(50px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) translateX(-30px);
        opacity: 0;
    }
}

@keyframes champagnePop {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { transform: translateY(-30px) scale(1); opacity: 1; }
    40% { transform: translateY(-60px) scale(0.8); opacity: 0.8; }
    60% { transform: translateY(-90px) scale(0.6); opacity: 0.5; }
    80% { transform: translateY(-110px) scale(0.3); opacity: 0.2; }
    100% { transform: translateY(-130px) scale(0); opacity: 0; }
}

@keyframes skyStarTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes skyStarTwinkle2 {
    0%, 100% { opacity: 0.8; }
    33% { opacity: 0.2; }
    66% { opacity: 0.9; }
}

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

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

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

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

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 213, 79, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 213, 79, 0.6), 0 0 40px rgba(255, 213, 79, 0.2); }
}

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

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D1B2A 0%, #1A237E 100%);
    border-bottom: 2px solid rgba(255, 213, 79, 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: 45px;
    width: auto;
}

.header-time {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #FFD54F;
    background: rgba(26, 35, 126, 0.5);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 213, 79, 0.2);
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #FFD54F;
    color: #FFD54F;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 213, 79, 0.1);
    box-shadow: 0 0 15px rgba(255, 213, 79, 0.3);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #0D1B2A;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 213, 79, 0.4);
    color: #0D1B2A;
}

.btn-demo {
    padding: 8px 20px;
    background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
    color: #FFD54F;
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #283593 0%, #3949AB 100%);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.5);
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 27, 42, 0.95);
    border-top: 1px solid rgba(255, 213, 79, 0.15);
    border-bottom: 1px solid rgba(255, 213, 79, 0.15);
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #FFD54F;
    background: rgba(255, 213, 79, 0.05);
    text-shadow: none;
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #1A237E 0%, #0D1B2A 50%, #1A237E 100%);
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 213, 79, 0.1);
}

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

.notification-content span {
    font-size: 12px;
    color: #FFD54F;
    font-weight: 500;
}

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

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0D1B2A 0%, #1A237E 100%);
    border: 2px solid rgba(255, 213, 79, 0.5);
    border-radius: 20px;
    padding: 35px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    animation: fadeInUp 0.5s ease;
}

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

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

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

.announcement-header-icon i {
    font-size: 40px;
    color: #FFD54F;
    animation: floatUp 3s ease-in-out infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 213, 79, 0.05);
    border: 1px solid rgba(255, 213, 79, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(255, 213, 79, 0.1);
    transform: translateX(5px);
}

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

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

.announcement-badge.new {
    background: #43a047;
    color: #fff;
}

.announcement-badge.info {
    background: #1A237E;
    color: #FFD54F;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #0D1B2A;
    font-weight: 700;
    font-size: 15px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 213, 79, 0.5);
    color: #0D1B2A;
}

/* === HERO SECTION - Eiffel Tower Parisian Night === */
.parisbet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0D1B2A 0%, #1A237E 40%, #0D1B2A 100%);
    margin: 0 -15px;
    padding: 60px 20px;
}

.paris-night-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sky-stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sky-layer-1 {
    background-image: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
                      radial-gradient(2px 2px at 60px 70px, #FFD54F, transparent),
                      radial-gradient(1px 1px at 50px 160px, #fff, transparent),
                      radial-gradient(1px 1px at 130px 40px, #FAFAFA, transparent),
                      radial-gradient(2px 2px at 180px 100px, #fff, transparent),
                      radial-gradient(1px 1px at 220px 80px, #FFD54F, transparent),
                      radial-gradient(1px 1px at 300px 50px, #fff, transparent),
                      radial-gradient(2px 2px at 350px 120px, #FAFAFA, transparent);
    background-size: 400px 200px;
    animation: skyStarTwinkle 4s ease-in-out infinite;
}

.sky-layer-2 {
    background-image: radial-gradient(1px 1px at 40px 50px, #fff, transparent),
                      radial-gradient(2px 2px at 100px 110px, #FFD54F, transparent),
                      radial-gradient(1px 1px at 200px 30px, #fff, transparent),
                      radial-gradient(1px 1px at 260px 90px, #FAFAFA, transparent),
                      radial-gradient(2px 2px at 320px 60px, #fff, transparent);
    background-size: 350px 150px;
    animation: skyStarTwinkle2 5s ease-in-out infinite;
}

.sky-layer-3 {
    background-image: radial-gradient(1px 1px at 80px 40px, #FFD54F, transparent),
                      radial-gradient(1px 1px at 150px 100px, #fff, transparent),
                      radial-gradient(2px 2px at 250px 60px, #FAFAFA, transparent),
                      radial-gradient(1px 1px at 350px 80px, #FFD54F, transparent);
    background-size: 450px 180px;
    animation: skyStarTwinkle 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Eiffel Tower Silhouette */
.eiffel-tower-silhouette {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 120px;
    height: 400px;
    z-index: 2;
    opacity: 0.3;
}

.eiffel-antenna {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #FFD54F, #1A237E);
}

.eiffel-top {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 80px solid #1A237E;
}

.eiffel-middle {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 8px;
    background: #1A237E;
    border-radius: 2px;
}

.eiffel-body {
    position: absolute;
    top: 128px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 200px solid #1A237E;
}

.eiffel-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 72px;
    background: #1A237E;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.eiffel-light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD54F;
    border-radius: 50%;
    animation: eiffelTwinkle 2s ease-in-out infinite;
    box-shadow: 0 0 6px #FFD54F, 0 0 12px rgba(255, 213, 79, 0.5);
}

.eiffel-light-1 { top: 45px; left: 50%; animation-delay: 0s; }
.eiffel-light-2 { top: 100px; left: 35%; animation-delay: 0.3s; }
.eiffel-light-3 { top: 100px; left: 65%; animation-delay: 0.6s; }
.eiffel-light-4 { top: 200px; left: 25%; animation-delay: 0.9s; }
.eiffel-light-5 { top: 200px; left: 75%; animation-delay: 1.2s; }

.eiffel-twinkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD54F;
    border-radius: 50%;
    animation: eiffelTwinkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px #FFD54F, 0 0 20px rgba(255, 213, 79, 0.3);
}

.eiffel-twinkle-1 { top: 10px; left: 50%; animation-delay: 0.5s; }
.eiffel-twinkle-2 { top: 160px; left: 40%; animation-delay: 1s; }
.eiffel-twinkle-3 { top: 160px; left: 60%; animation-delay: 1.5s; }

/* Spotlight Beams */
.spotlight-beam {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 350px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 213, 79, 0.05) 30%, rgba(255, 213, 79, 0.15) 100%);
    transform-origin: bottom center;
    z-index: 2;
}

.spotlight-beam-1 {
    left: 20%;
    animation: spotlightBeam 8s ease-in-out infinite;
}

.spotlight-beam-2 {
    right: 30%;
    animation: spotlightBeam 10s ease-in-out infinite;
    animation-delay: 3s;
}

/* Rose Petals */
.rose-petals-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.rose-petal {
    position: absolute;
    width: 12px;
    height: 10px;
    background: radial-gradient(ellipse at center, #e91e63 0%, #c62828 100%);
    border-radius: 50% 0 50% 50%;
    opacity: 0;
    animation: rosePetal 8s ease-in-out infinite;
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.3);
}

/* Champagne Pop Effect */
.champagne-bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, #FFD54F, #FFC107);
    border-radius: 50%;
    opacity: 0;
    animation: champagnePop 3s ease-out infinite;
    box-shadow: 0 0 5px rgba(255, 213, 79, 0.5);
}

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

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

.hero-brand {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 56px;
    color: #FFD54F;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 213, 79, 0.5), 0 0 60px rgba(255, 213, 79, 0.2);
    animation: fadeInUp 1s ease;
}

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

.hero-tagline {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #FAFAFA;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-description {
    font-size: 15px;
    color: rgba(250, 250, 250, 0.8);
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: #FFD54F;
    font-weight: 700;
}

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

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

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

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 213, 79, 0.5);
    color: #0D1B2A;
}

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

.btn-outline-gold:hover {
    background: rgba(255, 213, 79, 0.1);
    box-shadow: 0 5px 20px rgba(255, 213, 79, 0.3);
}

/* === SECTION COMMON === */
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

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

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.paris-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.6) 0%, rgba(13, 27, 42, 0.8) 100%);
    border: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #FAFAFA;
}

.paris-game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 213, 79, 0.5);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.4), 0 0 20px rgba(255, 213, 79, 0.1);
    color: #FAFAFA;
}

.paris-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 213, 79, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.paris-game-icon i {
    animation: floatUp 3s ease-in-out infinite;
}

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

.paris-game-rating i {
    color: #FFD54F;
    font-size: 12px;
    margin: 0 1px;
}

.paris-game-card h3 {
    font-size: 18px;
    color: #FFD54F;
    margin-bottom: 8px;
}

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

.paris-game-players {
    font-size: 11px;
    color: rgba(250, 250, 250, 0.5);
}

.paris-game-players i {
    color: #FFD54F;
    margin-right: 4px;
}

/* === GAME GRID SECTION (3x4) === */
.paris-grid {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(26, 35, 126, 0.1) 0%, transparent 100%);
}

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

.paris-grid-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.paris-grid-node {
    flex: 1;
    max-width: 200px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.5) 0%, rgba(13, 27, 42, 0.7) 100%);
    border: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    color: #FAFAFA;
}

.paris-grid-node:hover {
    border-color: #FFD54F;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
    color: #FAFAFA;
}

.grid-node-icon {
    font-size: 24px;
    color: #FFD54F;
    margin-bottom: 10px;
}

.grid-node-label {
    font-size: 13px;
    font-weight: 600;
    color: #FAFAFA;
    display: block;
}

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

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

.paris-feature-card {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.4) 0%, rgba(13, 27, 42, 0.6) 100%);
    border: 1px solid rgba(255, 213, 79, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.paris-feature-card:hover {
    border-color: rgba(255, 213, 79, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.paris-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.15) 0%, rgba(255, 213, 79, 0.05) 100%);
    border: 2px solid rgba(255, 213, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFD54F;
    animation: glowPulse 3s ease-in-out infinite;
}

.paris-feature-card h3 {
    font-size: 17px;
    color: #FFD54F;
    margin-bottom: 10px;
}

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

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

.paris-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(13, 27, 42, 0.5) 100%);
    z-index: 0;
}

.sky-layer-stats {
    background-image: radial-gradient(2px 2px at 30px 20px, #FFD54F, transparent),
                      radial-gradient(1px 1px at 80px 50px, #fff, transparent),
                      radial-gradient(2px 2px at 150px 30px, #FAFAFA, transparent),
                      radial-gradient(1px 1px at 200px 70px, #FFD54F, transparent);
    background-size: 250px 100px;
    animation: skyStarTwinkle 5s ease-in-out infinite;
}

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

.paris-stat-card {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.6) 0%, rgba(13, 27, 42, 0.8) 100%);
    border: 1px solid rgba(255, 213, 79, 0.25);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.paris-stat-card:hover {
    border-color: #FFD54F;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
}

.stat-eiffel-decoration {
    color: rgba(255, 213, 79, 0.3);
    font-size: 16px;
    margin-bottom: 8px;
}

.stat-eiffel-decoration.bottom {
    margin-bottom: 0;
    margin-top: 8px;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: #FFD54F;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 213, 79, 0.3);
}

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

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

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

.paris-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.6) 0%, rgba(13, 27, 42, 0.8) 100%);
    border: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.paris-promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 213, 79, 0.5);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.4);
}

.promo-champagne-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 213, 79, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.paris-promo-inner .promo-icon i {
    animation: floatUp 3s ease-in-out infinite;
}

.paris-promo-inner h3 {
    font-size: 17px;
    color: #FFD54F;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

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

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

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

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

.promo-badge.new {
    background: #43a047;
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    color: #0D1B2A;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #0D1B2A;
    font-weight: 700;
    font-size: 13px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 213, 79, 0.4);
    color: #0D1B2A;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    margin: 40px 0;
}

.footer-cta-skyfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.4) 0%, rgba(13, 27, 42, 0.6) 100%);
    z-index: 0;
}

.sky-layer-cta {
    background-image: radial-gradient(2px 2px at 40px 30px, #FFD54F, transparent),
                      radial-gradient(1px 1px at 100px 60px, #fff, transparent),
                      radial-gradient(2px 2px at 180px 40px, #FAFAFA, transparent);
    background-size: 220px 100px;
    animation: skyStarTwinkle2 4s ease-in-out infinite;
}

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

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

.cta-eiffel-mini {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 50px solid rgba(255, 213, 79, 0.2);
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD54F;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-cta-inner p {
    font-size: 15px;
    color: rgba(250, 250, 250, 0.8);
    max-width: 600px;
    margin: 0 auto 25px;
    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: #FAFAFA;
    font-weight: 500;
}

.cta-feature i {
    color: #FFD54F;
    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, rgba(26, 35, 126, 0.5) 0%, rgba(13, 27, 42, 0.7) 100%);
    border: 1px solid rgba(255, 213, 79, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #FAFAFA;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 213, 79, 0.4);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    color: #FAFAFA;
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
}

.article-card-title span,
.article-card-title a {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: #FAFAFA;
    line-height: 1.4;
    display: block;
}

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

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

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

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

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-size: 13px;
    color: #FFD54F;
    font-weight: 600;
}

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

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #FFD54F;
    color: #FFD54F;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gold-view-more:hover {
    background: rgba(255, 213, 79, 0.1);
    box-shadow: 0 5px 15px rgba(255, 213, 79, 0.3);
}

.view-more-btn i {
    margin-left: 5px;
}

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

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

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    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, #1A237E 0%, #0D1B2A 100%);
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-radius: 50%;
    color: #FFD54F;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #0D1B2A;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 213, 79, 0.4);
}

.sidebar-label {
    display: none;
}

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

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D1B2A 0%, #0a1628 100%);
    border-top: 2px solid rgba(255, 213, 79, 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: 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;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 213, 79, 0.1);
    border: 2px solid #FFD54F;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #FFD54F;
    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(255, 213, 79, 0.1);
    border: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 50%;
    color: #FFD54F;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FFD54F;
    color: #0D1B2A;
}

.footer-col h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: #FFD54F;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

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

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

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

.footer-license-bar h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 14px;
    color: #FFD54F;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

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

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

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

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

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

.breadcrumb a {
    color: rgba(250, 250, 250, 0.6);
}

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

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

.breadcrumb i {
    margin-right: 4px;
}

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

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

.category-desc {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
}

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(26, 35, 126, 0.3);
    border: 1px solid rgba(255, 213, 79, 0.15);
    border-radius: 20px;
    color: rgba(250, 250, 250, 0.7);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: rgba(255, 213, 79, 0.15);
    border-color: #FFD54F;
    color: #FFD54F;
}

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

.article-grid .article-card h3.article-card-title a {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(13, 27, 42, 0.5) 100%);
    border: 1px solid rgba(255, 213, 79, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 213, 79, 0.1);
    margin-top: 20px;
}

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

.article-tags span {
    padding: 4px 12px;
    background: rgba(255, 213, 79, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #FFD54F;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 213, 79, 0.1);
}

.article-nav-prev a,
.article-nav-next a {
    color: #FFD54F;
    font-size: 14px;
}

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

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

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

.related-item {
    background: rgba(26, 35, 126, 0.3);
    border: 1px solid rgba(255, 213, 79, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #FAFAFA;
}

.related-item:hover {
    border-color: rgba(255, 213, 79, 0.3);
    transform: translateY(-3px);
    color: #FAFAFA;
}

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

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

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

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(13, 27, 42, 0.5) 100%);
    border: 1px solid rgba(255, 213, 79, 0.1);
    border-radius: 15px;
    padding: 30px;
}

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

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

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

.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { color: #FFD54F; margin: 20px 0 10px; }

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

.error-eiffel {
    position: relative;
    width: 60px;
    height: 150px;
    margin: 0 auto 30px;
    opacity: 0.4;
}

.error-eiffel-antenna {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #FFD54F;
}

.error-eiffel-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 40px solid #1A237E;
}

.error-eiffel-body {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 60px solid #1A237E;
}

.error-eiffel-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #1A237E;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.error-code {
    font-size: 80px;
    color: #FFD54F;
    text-shadow: 0 0 30px rgba(255, 213, 79, 0.3);
    margin-bottom: 10px;
}

.error-title {
    font-size: 22px;
    color: #FAFAFA;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.error-desc {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-popular-links {
    max-width: 600px;
    margin: 0 auto;
}

.error-popular-links h3 {
    font-size: 16px;
    color: #FFD54F;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.error-links-grid a {
    padding: 12px 10px;
    background: rgba(26, 35, 126, 0.4);
    border: 1px solid rgba(255, 213, 79, 0.15);
    border-radius: 10px;
    font-size: 12px;
    color: #FAFAFA;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.error-links-grid a:hover {
    border-color: #FFD54F;
    color: #FFD54F;
}

.error-links-grid a i {
    display: block;
    margin-bottom: 5px;
    color: #FFD54F;
    font-size: 16px;
}

/* Nearby Search Box */
.nearby-search-box {
    max-width: 500px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.4) 0%, rgba(13, 27, 42, 0.6) 100%);
    border: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.nearby-search-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 15px;
}

.nearby-search-status i {
    color: #FFD54F;
    font-size: 18px;
    animation: pulse 1.5s ease-in-out infinite;
}

.nearby-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nearby-links-title {
    font-size: 13px;
    color: #FFD54F;
    margin-bottom: 5px;
    font-weight: 600;
}

.nearby-links-title i {
    margin-right: 5px;
}

.nearby-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 213, 79, 0.05);
    border: 1px solid rgba(255, 213, 79, 0.1);
    border-radius: 8px;
    color: #FAFAFA;
    font-size: 13px;
    transition: all 0.3s ease;
}

.nearby-link-item:hover {
    background: rgba(255, 213, 79, 0.1);
    border-color: rgba(255, 213, 79, 0.3);
    transform: translateX(5px);
    color: #FAFAFA;
}

.nearby-link-item i:first-child {
    color: #FFD54F;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.nearby-link-item span {
    flex: 1;
}

.nearby-link-item i:last-child {
    color: rgba(255, 213, 79, 0.5);
    font-size: 10px;
}

/* === 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: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 50%;
    color: #FAFAFA;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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