/* ============================================
   LOTTOVIP THEME - main.css (moban-117)
   Premium VIP Lottery Theme - Luxury Feel
   Colors: Gold(#FFD700) + Purple(#6A1B9A) + Black(#1A1A1A)
   Fonts: Playfair Display + Source Sans Pro
   ============================================ */

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

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #1A1A1A;
    color: #E8E0F0;
    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 12px rgba(255, 215, 0, 0.6);
}

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

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

.gold-text {
    color: #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700, #FFEA70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-text {
    color: #CE93D8;
    background: linear-gradient(90deg, #9C27B0, #CE93D8, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes vipGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.15);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.3), 0 0 120px rgba(106, 27, 154, 0.2);
        filter: brightness(1.15);
    }
}

@keyframes crownSpin {
    0% {
        transform: rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    25% {
        transform: rotateY(90deg) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
    50% {
        transform: rotateY(180deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    75% {
        transform: rotateY(270deg) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
    100% {
        transform: rotateY(360deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
}

@keyframes diamondFall {
    0% {
        transform: translateY(-100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateY(-50vh) rotate(72deg) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(0) rotate(180deg) scale(1);
    }
    70% {
        opacity: 0.6;
        transform: translateY(20vh) rotate(270deg) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg) scale(0);
    }
}

@keyframes luxeShine {
    0% {
        background-position: -200% center;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    80% {
        opacity: 1;
    }
    100% {
        background-position: 200% center;
        opacity: 0;
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }
}

@keyframes marquee {
    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.2);
    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;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    transition: transform 0.3s ease;
}

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

.header-time {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #FFD700;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

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

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

.btn-register:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid #9C27B0;
    color: #CE93D8;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    background: rgba(156, 39, 176, 0.15);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #0D0D0D, #1A0A2E, #0D0D0D);
    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;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E8E0F0;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    border-bottom-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 8px 12px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #1A0A2E, #2D0A4E, #1A0A2E);
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.notification-content span {
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    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.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A, #0D0D0D);
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 35px;
    max-width: 500px;
    width: 90%;
    animation: vipGlow 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(106, 27, 154, 0.2);
}

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

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

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

.announcement-header-icon i {
    font-size: 40px;
    color: #FFD700;
    animation: crownSpin 6s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.announcement-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    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;
}

.announcement-item:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: #FFD700;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 40px;
    text-align: center;
    color: #1A1A1A;
}

.announcement-badge.hot { background: #FFD700; }
.announcement-badge.new { background: #CE93D8; }
.announcement-badge.info { background: #4FC3F7; }
.announcement-badge.vip { background: linear-gradient(135deg, #FFD700, #FFA500); }

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

.announcement-item i:last-child {
    color: #FFD700;
    font-size: 11px;
}

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

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

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    color: #1A1A1A;
}

/* === HERO SECTION === */
.lottovip-hero {
    position: relative;
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A0A2E 40%, #0D0D0D 100%);
    border-radius: 16px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.15);
    animation: vipGlow 4s ease-in-out infinite;
}

.vip-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vip-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: diamondFall 8s linear infinite;
    opacity: 0;
}

.vip-particle.particle-1 { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.vip-particle.particle-2 { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.vip-particle.particle-3 { left: 40%; animation-delay: 3s; animation-duration: 6s; }
.vip-particle.particle-4 { left: 60%; animation-delay: 0.5s; animation-duration: 8s; }
.vip-particle.particle-5 { left: 75%; animation-delay: 2s; animation-duration: 10s; }
.vip-particle.particle-6 { left: 90%; animation-delay: 4s; animation-duration: 7.5s; }

.crown-emblem {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.crown-inner {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 27, 154, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    margin: 0 auto;
}

.crown-inner i {
    font-size: 45px;
    color: #FFD700;
    animation: crownSpin 8s ease-in-out infinite;
    display: inline-block;
}

.crown-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 3s ease-in-out infinite;
}

.crown-glow-ring.ring-2 {
    width: 180px;
    height: 180px;
    border-color: rgba(106, 27, 154, 0.2);
    animation-delay: 1.5s;
}

.luxe-shine-sweep {
    position: absolute;
    top: 0;
    left: -200%;
    width: 400%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.06), rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06), transparent);
    animation: luxeShine 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.hero-brand {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700, #FFEA70, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxeShine 4s linear infinite;
    letter-spacing: 6px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

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

.hero-tagline {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #CE93D8;
    letter-spacing: 4px;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #B0A8C0;
    line-height: 1.8;
}

.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-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #B0A8C0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

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

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

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

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

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

/* === SECTION STYLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

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

.section-subtitle {
    text-align: center;
    color: #B0A8C0;
    font-size: 15px;
    margin-bottom: 35px;
}

/* === VIP GAMES SECTION === */
.vip-games {
    padding: 50px 0;
}

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

.vip-game-card {
    position: relative;
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.vip-game-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2), 0 0 60px rgba(106, 27, 154, 0.15);
}

.vip-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.vip-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 27, 154, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.vip-card-icon i {
    font-size: 28px;
    color: #FFD700;
}

.vip-card-rating {
    margin-bottom: 10px;
}

.vip-card-rating i {
    color: #FFD700;
    font-size: 12px;
    margin: 0 1px;
}

.vip-game-card h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: 600;
}

.vip-game-card p {
    font-size: 13px;
    color: #B0A8C0;
    line-height: 1.6;
    margin-bottom: 12px;
}

.vip-card-players {
    font-size: 12px;
    color: #CE93D8;
}

.vip-card-players i {
    margin-right: 4px;
}

/* === LOTTERY GRID === */
.lottery-grid-section {
    padding: 50px 0;
}

.lottery-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

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

.lottery-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lottery-grid-node:hover {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(106, 27, 154, 0.08));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.lottery-node-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

.lottery-node-icon i {
    font-size: 18px;
    color: #FFD700;
}

.lottery-node-label {
    font-size: 12px;
    color: #E8E0F0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* === VIP FEATURES === */
.vip-features {
    padding: 50px 0;
}

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

.vip-feature-card {
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.vip-feature-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.vip-feature-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 27, 154, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    margin: 0 auto 18px;
}

.vip-feature-icon i {
    font-size: 26px;
    color: #FFD700;
}

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

.vip-feature-card p {
    font-size: 13px;
    color: #B0A8C0;
    line-height: 1.7;
}

/* === VIP STATS === */
.vip-stats {
    position: relative;
    padding: 60px 0;
    margin: 30px 0;
}

.vip-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E, #0D0D0D);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.12);
    z-index: 0;
}

.vip-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05), transparent 70%);
    border-radius: 16px;
}

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

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

.vip-stat-card {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-stat-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
}

.stat-crown-decoration {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 8px;
    opacity: 0.5;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

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

/* === VIP PROMOTIONS === */
.vip-promos {
    padding: 50px 0;
}

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

.vip-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vip-promo-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.promo-vip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.06), transparent 60%);
    pointer-events: none;
}

.vip-promo-inner {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    z-index: 1;
}

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

.promo-icon i {
    font-size: 36px;
    color: #FFD700;
}

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

.vip-promo-inner p {
    font-size: 13px;
    color: #B0A8C0;
    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: #B0A8C0;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1A1A1A;
}

.promo-badge.vip { background: linear-gradient(135deg, #FFD700, #FFA500); }
.promo-badge.hot { background: #FFD700; }
.promo-badge.new { background: #CE93D8; }

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

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

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 30px;
    text-align: center;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 16px;
}

.footer-cta-vipfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E, #0D0D0D);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    z-index: 0;
}

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

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

.cta-vip-crown {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 27, 154, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
}

.cta-vip-crown::before {
    content: '\f521';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: #FFD700;
}

.footer-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-cta-inner > p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #B0A8C0;
    line-height: 1.7;
}

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

.cta-feature {
    font-size: 13px;
    color: #CE93D8;
    font-weight: 600;
}

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

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

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

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

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

.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;
    font-size: 15px;
    font-weight: 600;
    color: #E8E0F0;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.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: #888;
    display: flex;
    gap: 15px;
}

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

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #B0A8C0;
    line-height: 1.6;
}

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

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

.view-more-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

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

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

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

.breadcrumb a {
    color: #FFD700;
}

.breadcrumb span:not(:last-child) {
    color: #666;
}

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

.category-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.category-desc {
    color: #B0A8C0;
    margin-top: 8px;
    font-size: 14px;
}

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: #B0A8C0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 27, 154, 0.1));
    border-color: #FFD700;
    color: #FFD700;
}

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

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    font-size: 12px;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(255, 215, 0, 0.1);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
}

/* === 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: 38px;
    height: 38px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    color: #B0A8C0;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

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

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

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

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

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

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

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

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

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

.article-tags {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    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.15);
    border-radius: 20px;
    font-size: 12px;
    color: #B0A8C0;
}

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

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

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

.related-posts-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

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

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

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

.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;
    color: #E8E0F0;
    font-weight: 600;
    line-height: 1.4;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #0D0D0D, #1A0A2E);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 35px;
}

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

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

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

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

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

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

.error-vip-crown {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(106, 27, 154, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: vipGlow 3s ease-in-out infinite;
}

.error-vip-crown::before {
    content: '\f521';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 32px;
    color: #FFD700;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 5px;
}

.error-title {
    font-size: 22px;
    color: #CE93D8;
    margin: 10px 0;
    letter-spacing: 3px;
}

.error-desc {
    max-width: 500px;
    margin: 15px auto 30px;
    color: #B0A8C0;
    font-size: 14px;
    line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #000);
    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 {
    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: #B0A8C0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    font-weight: 900;
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.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;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 15px;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

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

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

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

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

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

.footer-license-bar h4 {
    font-size: 14px;
    color: #FFD700;
    letter-spacing: 2px;
    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: 22px;
    color: #FFD700;
}

.license-item span {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1A0A2E, #0D0D0D);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    color: #FFD700;
    transition: all 0.3s ease;
    position: relative;
}

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

.sidebar-btn i {
    font-size: 18px;
}

.sidebar-label {
    display: none;
}

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

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

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