/* ==========================================
   ZONGQINGXIA CASINO REVIEWS - MAIN STYLES
   Design System: Glassmorphism + Neon Accents
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Background */
    --bg-obsidian: #05070A;
    --bg-navy: #0A1122;
    
    /* Accent Colors */
    --emerald-neon: #00FFA3;
    --emerald-dark: #065F46;
    --gold-liquid: #D4AF37;
    --gold-soft: #FDE68A;
    
    /* Text Colors */
    --text-white: #F2F4F8;
    --text-silver: #94A3B8;
    
    /* CTA Colors */
    --crimson: #FF3E3E;
    --sunset: #F97316;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-obsidian);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--emerald-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-liquid);
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold-liquid), var(--gold-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--crimson);
    color: white;
}

.btn-primary:hover {
    background: #ff5555;
    transform: scale(1.05);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--emerald-neon);
    color: var(--emerald-neon);
}

.btn-outline:hover {
    background: var(--emerald-neon);
    color: var(--bg-obsidian);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--text-silver);
    color: var(--text-silver);
}

.btn-ghost:hover {
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Shimmer Animation */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ==========================================
   HEADER - CYBER LUXURY 2026
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(5, 7, 10, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    position: relative;
}

.logo img {
    height: 42px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-neon), transparent);
    transition: width 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--emerald-neon);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    color: var(--emerald-neon);
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover::after {
    opacity: 1;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.header-actions .btn-ghost {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: var(--text-silver);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-actions .btn-ghost:hover {
    border-color: var(--text-white);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.header-actions .btn-primary {
    background: linear-gradient(135deg, #FF3E3E, #ff5555);
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
    transition: all 0.3s ease;
}

.header-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 62, 0.4);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(10, 17, 34, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
}

.mobile-nav-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-actions .btn {
    flex: 1;
    text-align: center;
}

/* ==========================================
   HERO SECTION - CYBER LUXURY 2026
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Deep Space Mesh Gradient Background */
.hero-mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(10, 17, 34, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(5, 7, 10, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, #0A1122 0%, #05070A 100%);
    background-color: #05070A;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-emerald-xl {
    width: 600px;
    height: 600px;
    background: var(--emerald-neon);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-gold-xl {
    width: 500px;
    height: 500px;
    background: var(--gold-liquid);
    bottom: -100px;
    left: -150px;
    animation-delay: -8s;
}

.orb-crimson-sm {
    width: 300px;
    height: 300px;
    background: var(--crimson);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation-delay: -15s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.noise-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* True Glass Hero Panel */
.hero-glass-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 100px -20px rgba(0, 255, 163, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-glass-panel:hover {
    border-color: rgba(0, 255, 163, 0.2);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 120px -20px rgba(0, 255, 163, 0.15);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Text Block */
.hero-text-block {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--emerald-neon);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-text {
    color: var(--emerald-neon);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Luxury Title with Metallic Gradient */
.hero-title-luxury {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #F2F4F8 0%, #D4AF37 50%, #FDE68A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
    animation: titleShine 8s ease-in-out infinite;
}

.title-accent {
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 40%, #F2F4F8 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-silver);
    margin-bottom: 35px;
    line-height: 1.8;
}

.text-emerald { color: var(--emerald-neon); }
.text-gold { color: var(--gold-liquid); }

/* Cyber Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-cyber {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-cyber .btn-text {
    position: relative;
    z-index: 2;
}

/* Primary Button with Shimmer */
.btn-cyber-primary {
    background: linear-gradient(135deg, #FF3E3E 0%, #ff5555 50%, #FF3E3E 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    box-shadow:
        0 4px 15px rgba(255, 62, 62, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cyber-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(255, 62, 62, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-cyber-primary .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: shimmerSweep 2.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-cyber-primary .btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FF3E3E, #ff7777);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.btn-cyber-primary:hover .btn-glow {
    opacity: 0.6;
}

/* Glass Button */
.btn-cyber-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--emerald-neon);
    border: 1px solid rgba(0, 255, 163, 0.3);
}

.btn-cyber-glass:hover {
    background: rgba(0, 255, 163, 0.1);
    border-color: var(--emerald-neon);
    color: var(--emerald-neon);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.2);
}

.btn-cyber-glass .btn-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--emerald-neon), var(--emerald-dark));
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.btn-cyber-glass:hover .btn-border-glow {
    opacity: 0.4;
}

/* Trust Badges Row */
.hero-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-silver);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.trust-badge-mini:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.trust-badge-mini .trust-icon {
    font-size: 1em;
    margin-top: 0.1em;
}

/* Hero Visual Block - 3D Phone */
.hero-visual-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
    perspective: 1000px;
}

.phone-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.phone-mockup-3d {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup-3d:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-15px); }
}

.phone-svg-luxury {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 3;
    animation: elementFloat 8s ease-in-out infinite;
}

.floating-element svg {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.fe-chip-gold {
    top: 5%;
    left: -20%;
    animation-delay: 0s;
}

.fe-chip-gold svg {
    width: 60px;
    height: 60px;
}

.fe-chip-emerald {
    bottom: 15%;
    right: -15%;
    animation-delay: -2s;
}

.fe-chip-emerald svg {
    width: 45px;
    height: 45px;
}

.fe-card {
    top: 30%;
    right: -25%;
    animation-delay: -4s;
    transform: rotate(-15deg);
}

.fe-card svg {
    width: 50px;
    height: 70px;
}

.fe-dice {
    bottom: 30%;
    left: -15%;
    animation-delay: -6s;
}

.fe-dice svg {
    width: 40px;
    height: 40px;
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-25px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-silver);
    font-size: 0.8rem;
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--emerald-neon);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

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

/* Legacy support - keeping old class names working */
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-silver);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   FEATURED SECTION
   ========================================== */
.featured-section {
    padding: var(--section-padding) 0;
}

.featured-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.featured-card {
    text-align: center;
}

.featured-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.featured-card h3 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.featured-card p {
    color: var(--text-silver);
    margin-bottom: 15px;
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.categories-section {
    padding: var(--section-padding) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: var(--text-white);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-neon);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 10px;
}

.category-arrow {
    color: var(--emerald-neon);
    font-size: 1.5rem;
    margin-top: auto;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
}

/* ==========================================
   KEYWORDS CAROUSEL
   ========================================== */
.keywords-section {
    padding: 60px 0;
    overflow: hidden;
}

.keywords-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.keywords-row {
    display: flex;
    gap: 15px;
    animation: scroll-left linear infinite;
    width: max-content;
}

.keywords-row.reverse {
    animation-name: scroll-right;
}

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

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

.keyword-chip {
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-silver);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.keyword-chip:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-neon);
    color: var(--text-white);
}

/* ==========================================
   ARTICLES SECTION
   ========================================== */
.latest-section,
.articles-section {
    padding: var(--section-padding) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all {
    color: var(--emerald-neon);
    font-weight: 500;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.article-card h3 a {
    color: var(--text-white);
}

.article-card h3 a:hover {
    color: var(--gold-liquid);
}

.article-card p {
    color: var(--text-silver);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.article-meta {
    margin-bottom: 10px;
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--emerald-dark);
    color: var(--emerald-neon);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag-badge {
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--gold-liquid);
}

.tag-badge:hover,
.tag-badge.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-liquid);
}

.article-link {
    color: var(--emerald-neon);
    font-weight: 500;
}

/* ==========================================
   TRUST SECTION
   ========================================== */
.trust-section {
    padding: var(--section-padding) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.trust-icon.emerald-glow {
    filter: drop-shadow(0 0 20px var(--emerald-neon));
}

.trust-icon.gold-glow {
    filter: drop-shadow(0 0 20px var(--gold-liquid));
}

.trust-item h3 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-silver);
}

/* ==========================================
   TAGS SECTION
   ========================================== */
.tags-section {
    padding: var(--section-padding) 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-silver);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-neon);
    color: var(--text-white);
}

.tag-count {
    padding: 2px 8px;
    background: rgba(0, 255, 163, 0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--emerald-neon);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: var(--section-padding) 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-silver);
    margin-bottom: 20px;
    text-align: justify;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
    padding: var(--section-padding) 0;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: var(--text-silver);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--bg-obsidian);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--emerald-neon);
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumbs-section {
    padding-top: 100px;
}

.breadcrumbs {
    padding: 15px 0;
    color: var(--text-silver);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-silver);
}

.breadcrumbs a:hover {
    color: var(--emerald-neon);
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: var(--text-silver);
}

.breadcrumbs .current {
    color: var(--text-white);
}

/* ==========================================
   PAGE HERO
   ========================================== */
.page-hero {
    padding: 40px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--text-silver);
    font-size: 1.1rem;
}

.tag-hero .tag-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* ==========================================
   SUBCATEGORIES
   ========================================== */
.subcategories-section {
    padding: var(--section-padding) 0;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.subcategory-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    color: var(--text-white);
}

.subcategory-card:hover {
    border-color: var(--emerald-neon);
    transform: translateY(-3px);
}

.subcategory-card h3 {
    margin-bottom: 5px;
}

.article-count {
    color: var(--text-silver);
    font-size: 0.9rem;
}

.card-arrow {
    color: var(--emerald-neon);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.subcategory-card:hover .card-arrow {
    transform: translateX(5px);
}

/* ==========================================
   FILTER BAR
   ========================================== */
.filter-section {
    margin-bottom: 30px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.filter-info {
    color: var(--text-silver);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    color: var(--text-silver);
}

.sort-options select {
    padding: 8px 15px;
    background: var(--bg-obsidian);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-white);
    cursor: pointer;
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-silver);
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--emerald-dark);
    border-color: var(--emerald-neon);
    color: var(--text-white);
}

/* ==========================================
   RELATED SECTION
   ========================================== */
.related-section {
    padding: var(--section-padding) 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    color: var(--text-white);
}

.related-card:hover {
    border-color: var(--gold-liquid);
}

.related-card h4 {
    margin: 0;
}

.related-card .arrow {
    color: var(--gold-liquid);
    transition: transform 0.3s ease;
}

.related-card:hover .arrow {
    transform: translateX(5px);
}

/* ==========================================
   DESCRIPTION SECTION
   ========================================== */
.description-section {
    padding: var(--section-padding) 0;
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    color: var(--gold-liquid);
    margin-bottom: 20px;
}

.description-content p {
    color: var(--text-silver);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ==========================================
   ARTICLE PAGE
   ========================================== */
.article-header {
    padding: 30px 0;
    text-align: center;
}

.article-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.article-meta-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta-info .category-badge {
    background: var(--emerald-dark);
}

.reading-time {
    color: var(--text-silver);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding-bottom: var(--section-padding);
}

/* Casino Cards */
.casino-cards-section {
    margin-bottom: 40px;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    display: grid;
    grid-template-columns: 60px 1fr 150px 140px;
    gap: 20px;
    align-items: center;
    padding: 20px 25px;
}

.casino-card.gold-highlight {
    border-color: var(--gold-liquid);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.casino-rank {
    text-align: center;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    font-weight: bold;
    color: var(--text-silver);
}

.rank-number.top-rank {
    border-color: var(--gold-liquid);
    color: var(--gold-liquid);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.casino-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.casino-rating .stars {
    color: var(--gold-liquid);
}

.rating-value {
    color: var(--text-silver);
    font-weight: 600;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 3px 10px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--emerald-neon);
}

.casino-bonus {
    text-align: center;
}

.bonus-label {
    display: block;
    color: var(--text-silver);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.bonus-amount {
    color: var(--gold-liquid);
    font-size: 1.2rem;
    font-weight: bold;
}

.casino-action .btn {
    width: 100%;
}

/* Table of Contents */
.toc-section {
    margin-bottom: 30px;
}

.toc-section h3 {
    margin-bottom: 15px;
    color: var(--gold-liquid);
}

.toc-nav ul {
    list-style: none;
}

.toc-nav li {
    margin-bottom: 10px;
}

.toc-nav a {
    color: var(--text-silver);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-nav a::before {
    content: '→';
    color: var(--emerald-neon);
}

.toc-nav a:hover {
    color: var(--text-white);
}

/* Article Content */
.article-content {
    margin-bottom: 30px;
}

.article-content section {
    margin-bottom: 40px;
}

.article-content h2 {
    color: var(--gold-liquid);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.article-content p {
    color: var(--text-silver);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.feature-item h4 {
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-silver);
    font-size: 0.9rem;
    margin: 0;
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros, .cons {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 12px;
}

.pros h4 {
    color: var(--emerald-neon);
    margin-bottom: 15px;
}

.cons h4 {
    color: var(--crimson);
    margin-bottom: 15px;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 8px 0;
    color: var(--text-silver);
    border-bottom: 1px solid var(--glass-border);
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 255, 163, 0.1));
    border-radius: 12px;
    margin-top: 30px;
}

.cta-box p {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Author Section */
.author-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-liquid), var(--gold-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--bg-obsidian);
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-silver);
    font-size: 0.9rem;
    margin: 0;
}

/* Article Tags Section */
.article-tags-section {
    margin-bottom: 40px;
}

.article-tags-section h3 {
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Related Articles */
.related-articles-section h3 {
    margin-bottom: 20px;
}

.related-articles-section .related-grid {
    gap: 15px;
}

.related-article {
    padding: 20px;
}

.related-article h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.related-article .read-more {
    color: var(--emerald-neon);
    font-size: 0.9rem;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 25px;
}

.widget-title {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Winning List */
.winners-list {
    list-style: none;
}

.winners-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.winners-list li:last-child {
    border-bottom: none;
}

.winner-rank {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.85rem;
}

.winner-rank.gold {
    border-color: var(--gold-liquid);
    color: var(--gold-liquid);
}

.winner-rank.silver {
    border-color: #C0C0C0;
    color: #C0C0C0;
}

.winner-rank.bronze {
    border-color: #CD7F32;
    color: #CD7F32;
}

.winner-name {
    flex: 1;
    color: var(--text-silver);
}

.winner-amount.emerald {
    color: var(--emerald-neon);
    font-weight: 600;
}

/* Popular List */
.popular-list {
    list-style: none;
}

.popular-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.popular-list li:last-child {
    border-bottom: none;
}

.popular-list a {
    color: var(--text-silver);
    font-size: 0.95rem;
}

.popular-list a:hover {
    color: var(--text-white);
}

/* Sticky CTA */
.sticky-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 62, 62, 0.1), rgba(212, 175, 55, 0.1));
}

.sticky-cta h3 {
    margin-bottom: 10px;
}

.cta-highlight {
    color: var(--gold-liquid);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px !important;
}

.sticky-cta p {
    color: var(--text-silver);
    margin-bottom: 15px;
}

/* ==========================================
   TAG PAGE
   ========================================== */
.tag-description {
    margin-bottom: 30px;
}

.description-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-box p {
    color: var(--text-silver);
    font-size: 1.1rem;
}

.related-tags-section {
    padding: var(--section-padding) 0;
    background: var(--bg-navy);
}

/* ==========================================
   404 PAGE
   ========================================== */
.error-section {
    padding: 150px 0 var(--section-padding);
    text-align: center;
}

.error-content {
    max-width: 500px;
    margin: 0 auto 60px;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-silver);
    margin-bottom: 30px;
}

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

.error-suggestions h2 {
    margin-bottom: 30px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.suggestion-card {
    text-align: left;
}

.suggestion-card h3 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.suggestion-card .read-more {
    color: var(--emerald-neon);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--bg-navy);
    padding: 60px 0 30px;
    margin-top: var(--section-padding);
    border-top: 1px solid var(--glass-border);
}

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

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

.footer-brand p {
    color: var(--text-silver);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--gold-liquid);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-silver);
}

.footer-links a:hover {
    color: var(--emerald-neon);
}

.footer-disclaimer {
    padding: 20px;
    background: rgba(255, 62, 62, 0.05);
    border: 1px solid rgba(255, 62, 62, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: var(--text-silver);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-silver);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   NO RESULTS
   ========================================== */
.no-results {
    text-align: center;
    padding: 60px;
}

.no-results p {
    color: var(--text-silver);
    font-size: 1.1rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .casino-card {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .casino-bonus,
    .casino-action {
        grid-column: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Responsive */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-glass-panel {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-title-luxury {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cyber {
        width: 100%;
        padding: 16px 28px;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .trust-badge-mini {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero-visual-block {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .glow-orb {
        opacity: 0.1;
    }

    .orb-emerald-xl {
        width: 300px;
        height: 300px;
    }

    .orb-gold-xl {
        width: 250px;
        height: 250px;
    }

    /* Legacy hero support */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .casino-rank {
        display: none;
    }

    .filter-bar {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content-grid {
        gap: 40px;
    }

    .hero-glass-panel {
        padding: 40px;
    }

    .hero-title-luxury {
        font-size: 2.5rem;
    }

    .phone-svg-luxury {
        width: 240px;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .glass-panel {
        padding: 20px;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-lg {
        padding: 12px 24px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TOP 10 ELITE LEADERBOARD
   ========================================== */
.elite-leaderboard-section {
    padding: 80px 0 100px;
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-navy) 50%, var(--bg-obsidian) 100%);
}

.elite-leaderboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Leaderboard Header */
.leaderboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.leaderboard-title-block {
    max-width: 600px;
    margin: 0 auto;
}

.leaderboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-liquid);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.leaderboard-badge svg {
    flex-shrink: 0;
}

.leaderboard-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.leaderboard-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #C0C0C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.leaderboard-title .title-accent {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 5px;
}

.leaderboard-subtitle {
    color: var(--text-silver);
    font-size: 1.05rem;
    margin: 0;
}

/* Leaderboard Entries Container */
.leaderboard-entries {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Entry */
.leaderboard-entry {
    display: grid;
    grid-template-columns: 70px 80px 1fr 200px 200px 140px;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaderboard-entry:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Tier Styles */
.leaderboard-entry.tier-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(253, 230, 138, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.1),
        inset 0 0 60px rgba(212, 175, 55, 0.03);
}

.leaderboard-entry.tier-gold:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.15),
        inset 0 0 80px rgba(212, 175, 55, 0.05);
}

.leaderboard-entry.tier-silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(192, 192, 192, 0.25);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.08);
}

.leaderboard-entry.tier-silver:hover {
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: 0 0 40px rgba(192, 192, 192, 0.12);
}

.leaderboard-entry.tier-bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(205, 127, 50, 0.25);
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.08);
}

.leaderboard-entry.tier-bronze:hover {
    border-color: rgba(205, 127, 50, 0.4);
    box-shadow: 0 0 40px rgba(205, 127, 50, 0.12);
}

/* Rank Badge */
.entry-rank {
    display: flex;
    justify-content: center;
}

.rank-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 60px;
}

.rank-badge .rank-crown {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.rank-badge .rank-number {
    font-size: 1.4rem;
    font-weight: 800;
}

/* Gold Rank */
.rank-gold {
    color: var(--gold-liquid);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.rank-gold .rank-number {
    background: linear-gradient(135deg, #FDE68A, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Silver Rank */
.rank-silver {
    color: #C0C0C0;
    filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.4));
}

.rank-silver .rank-number {
    background: linear-gradient(135deg, #E8E8E8, #C0C0C0, #A8A8A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bronze Rank */
.rank-bronze {
    color: #CD7F32;
    filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.4));
}

.rank-bronze .rank-number {
    background: linear-gradient(135deg, #E8A060, #CD7F32, #A66028);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Rank */
.rank-glass .rank-number {
    color: var(--text-silver);
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Casino Logo */
.entry-logo {
    display: flex;
    justify-content: center;
}

.logo-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 255, 163, 0.1));
}

.logo-initial {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-liquid), var(--emerald-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Casino Info */
.entry-info {
    min-width: 0;
}

.entry-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star-icon {
    width: 14px;
    height: 14px;
}

.rating-score {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-liquid);
}

/* Bonus Tag */
.entry-bonus {
    display: flex;
    justify-content: center;
}

.bonus-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 25px;
    color: var(--emerald-neon);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* Pros List */
.entry-pros {
    min-width: 0;
}

.entry-pros .pros-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.entry-pros .pros-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-silver);
    font-size: 0.85rem;
    white-space: nowrap;
}

.entry-pros .pro-check {
    color: var(--emerald-neon);
    font-size: 0.75rem;
}

/* CTA Button */
.entry-cta {
    display: flex;
    justify-content: flex-end;
}

.btn-elite-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #FF3E3E 0%, #ff5555 50%, #FF3E3E 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: not-allowed;
    overflow: hidden;
    opacity: 0.9;
    pointer-events: none;
    box-shadow:
        0 4px 15px rgba(255, 62, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-elite-cta .cta-text {
    position: relative;
    z-index: 2;
}

.btn-elite-cta .cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: eliteShimmer 2s ease-in-out infinite;
}

@keyframes eliteShimmer {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* Leaderboard Footer */
.leaderboard-footer {
    margin-top: 30px;
    text-align: center;
}

.disclaimer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-silver);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Leaderboard */
@media (max-width: 1200px) {
    .leaderboard-entry {
        grid-template-columns: 60px 70px 1fr 160px 140px;
        gap: 15px;
        padding: 18px 25px;
    }

    .entry-pros {
        display: none;
    }
}

@media (max-width: 992px) {
    .leaderboard-entry {
        grid-template-columns: 50px 60px 1fr 130px;
        gap: 12px;
        padding: 16px 20px;
    }

    .entry-bonus {
        display: none;
    }

    .leaderboard-title .title-main {
        font-size: 2.8rem;
    }

    .leaderboard-title .title-accent {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .elite-leaderboard-section {
        padding: 60px 0 80px;
    }

    .leaderboard-title .title-main {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .leaderboard-title .title-accent {
        font-size: 1.2rem;
    }

    .leaderboard-entries {
        gap: 12px;
    }

    .leaderboard-entry {
        grid-template-columns: 45px 50px 1fr auto;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .rank-badge {
        width: 40px;
        height: 50px;
    }

    .rank-badge .rank-crown {
        width: 16px;
        height: 16px;
    }

    .rank-badge .rank-number {
        font-size: 1.1rem;
    }

    .logo-container {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .logo-initial {
        font-size: 1.2rem;
    }

    .entry-name {
        font-size: 1rem;
    }

    .rating-stars .star-icon {
        width: 12px;
        height: 12px;
    }

    .rating-score {
        font-size: 0.85rem;
    }

    .btn-elite-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .leaderboard-entry {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 12px 14px;
    }

    .entry-logo {
        display: none;
    }

    .leaderboard-title .title-main {
        font-size: 1.8rem;
    }

    .leaderboard-title .title-accent {
        font-size: 1rem;
    }

    .entry-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .btn-elite-cta {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   THE ACADEMY - Game Guides Page
   ========================================== */
.academy-hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.academy-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-navy) 100%);
}

.academy-bg .grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 163, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 163, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.academy-bg .orb-emerald {
    width: 400px;
    height: 400px;
    background: var(--emerald-neon);
    top: -100px;
    right: -100px;
    opacity: 0.1;
}

.academy-bg .orb-gold-sm {
    width: 200px;
    height: 200px;
    background: var(--gold-liquid);
    bottom: 0;
    left: 20%;
    opacity: 0.08;
}

.academy-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

.academy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 50px;
    color: var(--emerald-neon);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.academy-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white), var(--emerald-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.academy-subtitle {
    color: var(--text-silver);
    font-size: 1.1rem;
}

/* Academy Layout */
.academy-content {
    padding: 60px 0;
}

.academy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Academy Sidebar */
.academy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-section {
    padding: 25px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text-silver);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(0, 255, 163, 0.05);
    border-color: rgba(0, 255, 163, 0.2);
    color: var(--emerald-neon);
}

.sidebar-link .link-icon {
    font-size: 1.2rem;
}

.sidebar-link .link-text {
    flex: 1;
}

.sidebar-link .link-count {
    font-size: 0.8rem;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Skill Filters */
.skill-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-silver);
    cursor: pointer;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-badge.active {
    border-color: var(--emerald-neon);
    background: rgba(0, 255, 163, 0.05);
    color: var(--emerald-neon);
}

.skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.skill-beginner .skill-dot { background: #4ade80; }
.skill-intermediate .skill-dot { background: #fbbf24; }
.skill-expert .skill-dot { background: #f87171; }

/* Tips Box */
.tips-box {
    background: linear-gradient(135deg, rgba(253, 230, 138, 0.05), rgba(212, 175, 55, 0.02));
    border-color: rgba(212, 175, 55, 0.2);
}

.tip-text {
    color: var(--text-silver);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.7;
}

.tip-author {
    color: var(--gold-liquid);
    font-size: 0.85rem;
}

/* Featured Guide */
.featured-guide {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 40px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.05), rgba(212, 175, 55, 0.02));
    border-color: rgba(0, 255, 163, 0.2);
}

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--emerald-neon);
    color: var(--bg-obsidian);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.featured-excerpt {
    color: var(--text-silver);
    margin-bottom: 20px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.difficulty-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.difficulty-badge.beginner {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.difficulty-badge.intermediate {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.difficulty-badge.expert {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.diff-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-silver);
    font-size: 0.85rem;
}

.btn-academy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--emerald-neon);
    color: var(--bg-obsidian);
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-academy:hover {
    background: #00e090;
    color: var(--bg-obsidian);
    transform: translateY(-2px);
}

.featured-visual {
    position: relative;
    width: 200px;
}

.visual-cards {
    position: relative;
    width: 100%;
    height: 200px;
}

.floating-card {
    position: absolute;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 2rem;
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card.card-1 { top: 0; left: 20%; animation-delay: 0s; }
.floating-card.card-2 { top: 40%; right: 10%; animation-delay: -1s; }
.floating-card.card-3 { bottom: 0; left: 40%; animation-delay: -2s; }

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

/* Guides Grid */
.guides-section {
    margin-top: 30px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.heading-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
}

.heading-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

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

.guide-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.guide-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.guide-card .card-category {
    font-size: 0.75rem;
    color: var(--gold-liquid);
}

.guide-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.guide-card .card-title a {
    color: var(--text-white);
}

.guide-card .card-title a:hover {
    color: var(--emerald-neon);
}

.guide-card .card-excerpt {
    color: var(--text-silver);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 15px;
}

.guide-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-card .card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--emerald-neon);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Learning Paths */
.learning-paths-section {
    padding: 80px 0;
    background: var(--bg-navy);
}

.section-subtitle {
    text-align: center;
    color: var(--text-silver);
    margin-top: -20px;
    margin-bottom: 40px;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.path-card {
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

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

.path-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.path-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.path-card p {
    color: var(--text-silver);
    margin-bottom: 20px;
}

.path-progress {
    margin-bottom: 20px;
}

.path-progress .progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.path-progress .progress-fill {
    height: 100%;
    background: var(--emerald-neon);
    border-radius: 3px;
}

.path-progress .progress-text {
    font-size: 0.85rem;
    color: var(--text-silver);
}

.path-link {
    color: var(--emerald-neon);
    font-weight: 600;
}

/* ==========================================
   THE TERMINAL - Gambling News Page
   ========================================== */
.terminal-hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.terminal-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0a0a0f 0%, var(--bg-navy) 100%);
}

.terminal-bg .scan-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
    pointer-events: none;
}

.terminal-bg .data-stream {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent 50%, rgba(255, 62, 62, 0.02) 50%);
    background-size: 4px 4px;
}

.terminal-bg .orb-crimson {
    width: 350px;
    height: 350px;
    background: var(--crimson);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
}

.terminal-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

.terminal-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.terminal-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--crimson);
    animation: statusBlink 1s ease-in-out infinite;
}

.terminal-status .status-dot.live {
    background: #22c55e;
}

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

.terminal-status .status-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--crimson);
}

.terminal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 62, 62, 0.1);
    border: 1px solid rgba(255, 62, 62, 0.3);
    border-radius: 50px;
    color: var(--crimson);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.terminal-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white), var(--crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.terminal-subtitle {
    color: var(--text-silver);
    font-size: 1rem;
    letter-spacing: 3px;
}

/* News Ticker */
.news-ticker {
    display: flex;
    align-items: center;
    background: rgba(255, 62, 62, 0.05);
    border-top: 1px solid rgba(255, 62, 62, 0.2);
    border-bottom: 1px solid rgba(255, 62, 62, 0.2);
    overflow: hidden;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--crimson);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-scroll {
    display: flex;
    gap: 20px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    padding: 12px 0;
}

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

.ticker-item {
    color: var(--text-silver);
    font-size: 0.9rem;
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Terminal Content Layout */
.terminal-content {
    padding: 60px 0;
}

.terminal-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Feature Article */
.feature-article {
    padding: 40px;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 25px;
}

.feature-content .feature-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-content .meta-category {
    padding: 4px 12px;
    background: var(--emerald-dark);
    color: var(--emerald-neon);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-content .meta-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-silver);
    font-size: 0.85rem;
}

.feature-content .feature-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-content .feature-title a {
    color: var(--text-white);
}

.feature-content .feature-title a:hover {
    color: var(--gold-liquid);
}

.feature-content .feature-excerpt {
    color: var(--text-silver);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--crimson);
    font-weight: 700;
}

/* News Timeline */
.news-timeline {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.timeline-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin: 0;
}

.update-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-silver);
}

.update-indicator .indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald-neon);
    animation: statusBlink 2s ease-in-out infinite;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-marker .marker-time {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-silver);
}

.timeline-content .item-category {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--emerald-neon);
    margin-bottom: 5px;
}

.timeline-content .item-title {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.timeline-content .item-title a {
    color: var(--text-white);
}

.timeline-content .item-title a:hover {
    color: var(--gold-liquid);
}

/* News Categories Grid */
.news-categories-section {
    padding: 60px 0;
}

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

.news-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.news-category-card:hover {
    transform: translateY(-5px);
}

.news-category-card.color-gold { border-color: rgba(212, 175, 55, 0.3); }
.news-category-card.color-crimson { border-color: rgba(255, 62, 62, 0.3); }
.news-category-card.color-emerald { border-color: rgba(0, 255, 163, 0.3); }
.news-category-card.color-silver { border-color: rgba(192, 192, 192, 0.3); }

.news-category-card:hover.color-gold { border-color: var(--gold-liquid); }
.news-category-card:hover.color-crimson { border-color: var(--crimson); }
.news-category-card:hover.color-emerald { border-color: var(--emerald-neon); }
.news-category-card:hover.color-silver { border-color: #C0C0C0; }

.news-category-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.news-category-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.news-category-card .article-count {
    color: var(--text-silver);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.news-category-card .category-arrow {
    color: var(--text-silver);
    transition: transform 0.3s ease;
}

.news-category-card:hover .category-arrow {
    transform: translateX(5px);
    color: var(--text-white);
}

/* Market Data Panel */
.market-data-section {
    padding: 40px 0;
}

.market-panel {
    padding: 30px 40px;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.market-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin: 0;
}

.market-update {
    font-size: 0.8rem;
    color: var(--text-silver);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-item .stat-label {
    display: block;
    color: var(--text-silver);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.stat-item .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 5px;
}

.stat-item .stat-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-item .stat-change.positive { color: var(--emerald-neon); }
.stat-item .stat-change.negative { color: var(--crimson); }

/* News Archive */
.news-archive-section {
    padding: 60px 0;
}

.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.archive-filters {
    display: flex;
    gap: 15px;
}

.glass-select {
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-list-item {
    padding: 25px;
}

.news-list-item .item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.news-list-item .meta-category {
    padding: 3px 10px;
    background: var(--emerald-dark);
    color: var(--emerald-neon);
    border-radius: 4px;
    font-size: 0.75rem;
}

.news-list-item .meta-date {
    color: var(--text-silver);
    font-size: 0.85rem;
}

.news-list-item .item-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-list-item .item-title a {
    color: var(--text-white);
}

.news-list-item .item-excerpt {
    color: var(--text-silver);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.news-list-item .item-link {
    color: var(--crimson);
    font-weight: 600;
}

/* ==========================================
   THE VAULT - Bonuses Page
   ========================================== */
.vault-hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.vault-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0f0a00 0%, var(--bg-navy) 100%);
}

.vault-bg .vault-rays {
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(from 0deg at 50% 0%, transparent 0deg, rgba(212, 175, 55, 0.02) 1deg, transparent 2deg);
}

.vault-bg .orb-gold-lg {
    width: 500px;
    height: 500px;
    background: var(--gold-liquid);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.12;
}

.vault-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

.vault-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-liquid);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.vault-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FDE68A, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.vault-subtitle {
    color: var(--text-silver);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.vault-total {
    display: inline-block;
    padding: 20px 40px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
}

.vault-total .total-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-silver);
    margin-bottom: 8px;
}

.vault-total .total-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.vault-total .currency {
    font-size: 1.2rem;
    color: var(--gold-liquid);
}

.vault-total .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FDE68A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vault-total .plus {
    font-size: 1.5rem;
    color: var(--gold-liquid);
}

/* Hot Deals Banner */
.hot-deals-banner {
    background: linear-gradient(90deg, rgba(255, 62, 62, 0.1), rgba(212, 175, 55, 0.1), rgba(255, 62, 62, 0.1));
    border-top: 1px solid rgba(255, 62, 62, 0.2);
    border-bottom: 1px solid rgba(255, 62, 62, 0.2);
    padding: 15px 0;
}

.hot-deals-banner .deals-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hot-deals-banner .deals-icon {
    font-size: 1.3rem;
    animation: bounceShake 1s ease-in-out infinite;
}

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

.hot-deals-banner .deals-text {
    color: var(--text-white);
    font-weight: 600;
}

.hot-deals-banner .deals-arrow {
    color: var(--crimson);
}

/* Vault Filters */
.vault-content {
    padding: 60px 0;
}

.vault-filters {
    padding: 20px 30px;
    margin-bottom: 40px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-silver);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.filter-tab.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-liquid);
    color: var(--gold-liquid);
}

/* Vault Grid */
.vault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vault-box {
    position: relative;
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vault-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold-liquid);
}

.exclusive-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold-liquid), #B8860B);
    color: var(--bg-obsidian);
    padding: 5px 45px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.box-type {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-silver);
}

.box-casino {
    font-size: 0.85rem;
    color: var(--gold-liquid);
}

.box-content {
    margin-bottom: 25px;
}

.box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.box-value {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 8px;
}

.box-value .value-amount {
    color: var(--emerald-neon);
    font-weight: 700;
}

/* Countdown Timer */
.box-countdown {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.box-countdown .countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-silver);
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.countdown-timer .time-unit {
    text-align: center;
}

.countdown-timer .time-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--crimson);
}

.countdown-timer .time-label {
    font-size: 0.65rem;
    color: var(--text-silver);
}

.countdown-timer .time-sep {
    font-size: 1.2rem;
    color: var(--crimson);
    margin: 0 3px;
}

/* Claim Progress */
.box-progress {
    margin-bottom: 20px;
}

.box-progress .progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.box-progress .progress-label {
    font-size: 0.8rem;
    color: var(--text-silver);
}

.box-progress .progress-value {
    font-size: 0.8rem;
    color: var(--emerald-neon);
    font-weight: 600;
}

.box-progress .progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.box-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald-neon), var(--emerald-dark));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Bonus Details */
.box-details {
    margin-bottom: 20px;
}

.box-details .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.box-details .detail-label {
    font-size: 0.85rem;
    color: var(--text-silver);
}

.box-details .detail-value {
    font-size: 0.85rem;
    color: var(--text-white);
    font-weight: 600;
}

/* Vault CTA Button */
.btn-vault-claim {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF3E3E, #ff5555);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    cursor: not-allowed;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.btn-vault-claim .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: eliteShimmer 2s ease-in-out infinite;
}

/* Bonus Categories */
.bonus-categories-section {
    padding: 60px 0;
    background: var(--bg-navy);
}

.bonus-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.bonus-category-card {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bonus-category-card:hover {
    transform: translateY(-5px);
}

.bonus-category-card .category-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--gold-liquid);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bonus-category-card:hover .category-glow {
    opacity: 0.15;
}

.bonus-category-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.bonus-category-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.bonus-category-card .article-count {
    font-size: 0.85rem;
    color: var(--text-silver);
    margin-bottom: 10px;
}

.bonus-category-card .category-arrow {
    color: var(--gold-liquid);
}

/* Bonus Guide */
.bonus-guide-section {
    padding: 60px 0;
}

.guide-panel {
    padding: 40px;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.guide-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.guide-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.guide-step .step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-neon);
    color: var(--bg-obsidian);
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.guide-step .step-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.guide-step .step-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-silver);
}

.step-arrow {
    color: var(--gold-liquid);
    font-size: 1.5rem;
    padding: 0 15px;
}

/* Terms Warning */
.terms-section {
    padding: 40px 0;
}

.terms-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 62, 62, 0.05);
    border-color: rgba(255, 62, 62, 0.2);
}

.terms-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.terms-content h4 {
    margin: 0 0 10px 0;
    color: var(--crimson);
}

.terms-content p {
    margin: 0;
    color: var(--text-silver);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================
   THE LEDGER - Payments Page
   ========================================== */
.ledger-hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.ledger-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #080810 0%, var(--bg-navy) 100%);
}

.ledger-bg .ledger-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(192, 192, 192, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.ledger-bg .orb-silver {
    width: 400px;
    height: 400px;
    background: #C0C0C0;
    top: -150px;
    right: -100px;
    opacity: 0.08;
}

.ledger-bg .orb-emerald-sm {
    width: 250px;
    height: 250px;
    background: var(--emerald-neon);
    bottom: -50px;
    left: -50px;
    opacity: 0.06;
}

.ledger-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

.ledger-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    color: #C0C0C0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.ledger-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white), #C0C0C0, var(--emerald-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.ledger-subtitle {
    color: var(--text-silver);
    font-size: 1rem;
    letter-spacing: 3px;
}

/* Payment Stats Bar */
.payment-stats-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

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

.stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
}

.stat-pill .pill-icon {
    font-size: 1.1rem;
}

.stat-pill .pill-text {
    font-size: 0.9rem;
    color: var(--text-silver);
}

.stat-pill .pill-text strong {
    color: var(--emerald-neon);
}

/* Payment Tabs */
.ledger-content {
    padding: 60px 0;
}

.payment-tabs {
    padding: 15px 20px;
    margin-bottom: 30px;
}

.payment-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-silver);
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-tab.active {
    background: rgba(0, 255, 163, 0.1);
    border-color: var(--emerald-neon);
    color: var(--emerald-neon);
}

/* Payment Table */
.payment-table {
    overflow-x: auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1fr 0.8fr 1fr;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1fr 0.8fr 1fr;
    gap: 15px;
    padding: 20px 25px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.td-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.td-method .method-icon {
    font-size: 1.5rem;
}

.td-method .method-name {
    font-weight: 600;
    color: var(--text-white);
}

.td-method .popular-badge {
    padding: 3px 8px;
    background: var(--gold-liquid);
    color: var(--bg-obsidian);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
}

.td-currencies {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.currency-tag {
    padding: 4px 10px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--emerald-neon);
    font-weight: 600;
}

.td-limits .limit-range {
    font-size: 0.85rem;
    color: var(--text-silver);
}

.td-speed .speed-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.speed-badge.instant {
    background: rgba(0, 255, 163, 0.1);
    color: var(--emerald-neon);
}

.speed-badge.fast {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.speed-badge.standard {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-silver);
}

.td-fees {
    color: var(--text-silver);
    font-size: 0.9rem;
}

.btn-view-guide {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 6px;
    color: var(--emerald-neon);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-guide:hover {
    background: rgba(0, 255, 163, 0.1);
    border-color: var(--emerald-neon);
}

/* Payment Categories */
.payment-categories-section {
    padding: 60px 0;
}

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

.payment-category-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    transition: all 0.4s ease;
}

.payment-category-card:hover {
    transform: translateY(-5px);
}

.payment-category-card.color-gold { border-color: rgba(212, 175, 55, 0.3); }
.payment-category-card.color-emerald { border-color: rgba(0, 255, 163, 0.3); }
.payment-category-card.color-orange { border-color: rgba(249, 115, 22, 0.3); }
.payment-category-card.color-silver { border-color: rgba(192, 192, 192, 0.3); }

.payment-category-card:hover.color-gold { border-color: var(--gold-liquid); }
.payment-category-card:hover.color-emerald { border-color: var(--emerald-neon); }
.payment-category-card:hover.color-orange { border-color: #f97316; }
.payment-category-card:hover.color-silver { border-color: #C0C0C0; }

.payment-category-card .card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.payment-category-card .card-content {
    flex: 1;
}

.payment-category-card .card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.payment-category-card .card-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-silver);
}

.payment-category-card .card-arrow {
    color: var(--text-silver);
    transition: transform 0.3s ease;
}

.payment-category-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--text-white);
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
}

.comparison-panel {
    padding: 35px;
}

.comparison-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.comparison-table {
    overflow-x: auto;
}

.comp-header,
.comp-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 10px;
}

.comp-header {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.comp-header .comp-cell {
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
}

.comp-header .comp-cell:first-child {
    text-align: left;
}

.comp-row {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-cell {
    text-align: center;
}

.comp-cell.label {
    text-align: left;
    color: var(--text-silver);
}

.comp-cell .rating {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comp-cell .rating.high {
    background: rgba(0, 255, 163, 0.1);
    color: var(--emerald-neon);
}

.comp-cell .rating.medium {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.comp-cell .rating.low {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-silver);
}

/* Security Panel */
.security-section {
    padding: 40px 0 60px;
}

.security-panel {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(0, 255, 163, 0.2);
}

.security-icon {
    flex-shrink: 0;
}

.security-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.security-content p {
    color: var(--text-silver);
    margin-bottom: 20px;
    line-height: 1.7;
}

.security-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.security-badges .s-badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-silver);
}

/* ==========================================
   RESPONSIVE - Internal Pages
   ========================================== */
@media (max-width: 1200px) {
    .academy-layout {
        grid-template-columns: 250px 1fr;
    }

    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vault-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .academy-layout {
        grid-template-columns: 1fr;
    }

    .academy-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .academy-sidebar .sidebar-section {
        flex: 1;
        min-width: 250px;
    }

    .terminal-layout {
        grid-template-columns: 1fr;
    }

    .news-timeline {
        order: -1;
    }

    .news-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .academy-title,
    .terminal-title,
    .vault-title,
    .ledger-title {
        font-size: 2rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .featured-guide {
        grid-template-columns: 1fr;
    }

    .featured-visual {
        display: none;
    }

    .vault-grid {
        grid-template-columns: 1fr;
    }

    .bonus-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .th-currencies,
    .th-limits,
    .td-currencies,
    .td-limits {
        display: none;
    }

    .payment-categories-grid,
    .news-categories-grid {
        grid-template-columns: 1fr;
    }

    .paths-grid {
        grid-template-columns: 1fr;
    }

    .comp-header,
    .comp-row {
        grid-template-columns: 1fr repeat(2, 1fr);
    }

    .comp-header .comp-cell:nth-child(4),
    .comp-header .comp-cell:nth-child(5),
    .comp-row .comp-cell:nth-child(4),
    .comp-row .comp-cell:nth-child(5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .filter-tabs,
    .payment-tabs {
        flex-direction: column;
    }

    .filter-tab,
    .payment-tab {
        width: 100%;
        justify-content: center;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .bonus-categories-grid {
        grid-template-columns: 1fr;
    }

    .security-panel {
        flex-direction: column;
        text-align: center;
    }

    .security-badges {
        justify-content: center;
    }
}

/* ==========================================
   DUO-TONE ICON SYSTEM
   ========================================== */
.duo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
}

.duo-icon svg {
    width: 100%;
    height: 100%;
}

.duo-icon-sm { font-size: 1rem; }
.duo-icon-md { font-size: 1.5rem; }
.duo-icon-lg { font-size: 2rem; }
.duo-icon-xl { font-size: 3rem; }

/* Icon Colors Override */
.duo-icon.gold svg [fill="#D4AF37"] { fill: var(--gold-liquid); }
.duo-icon.emerald svg [fill="#00FFA3"] { fill: var(--emerald-neon); }
.duo-icon.crimson svg [fill="#D4AF37"] { fill: var(--crimson); }

/* Animated Icons */
.duo-icon.pulse svg {
    animation: iconPulse 2s ease-in-out infinite;
}

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

.duo-icon.spin svg {
    animation: iconSpin 3s linear infinite;
}

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

.duo-icon.bounce svg {
    animation: iconBounce 1s ease-in-out infinite;
}

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

/* Icon Glow Effects */
.duo-icon.glow-gold {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.duo-icon.glow-emerald {
    filter: drop-shadow(0 0 8px rgba(0, 255, 163, 0.5));
}

.duo-icon.glow-crimson {
    filter: drop-shadow(0 0 8px rgba(255, 62, 62, 0.5));
}

/* Icon in Buttons */
.btn .duo-icon {
    margin-right: 8px;
}

.btn .duo-icon + span {
    vertical-align: middle;
}

/* Icon Badges */
.icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-silver);
    transition: all 0.3s ease;
}

.icon-badge:hover {
    border-color: var(--gold-liquid);
    color: var(--gold-liquid);
}

.icon-badge .duo-icon {
    font-size: 1.2rem;
}

/* Feature Icon Boxes */
.feature-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-icon-box:hover {
    border-color: var(--emerald-neon);
    background: rgba(0, 255, 163, 0.03);
}

.feature-icon-box .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature-icon-box .content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.feature-icon-box .content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-silver);
}

/* ==========================================
   ADVANCED ANIMATIONS & EFFECTS
   ========================================== */

/* Entrance Animations */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

.animate-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

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

.animate-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

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

.animate-scale {
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Hover Lift Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Glow Pulse Effect */
.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 163, 0.4);
    }
}

.glow-pulse-gold {
    animation: glowPulseGold 3s ease-in-out infinite;
}

@keyframes glowPulseGold {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

/* Text Gradient Animation */
.text-gradient-animate {
    background: linear-gradient(90deg, #FDE68A, #D4AF37, #00FFA3, #D4AF37, #FDE68A);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Border Glow Animation */
.border-glow {
    position: relative;
}

.border-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold-liquid), var(--emerald-neon), var(--gold-liquid));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: borderGlowShift 3s ease infinite;
    transition: opacity 0.3s ease;
}

.border-glow:hover::before {
    opacity: 1;
}

@keyframes borderGlowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Animation */
.float {
    animation: float 6s ease-in-out infinite;
}

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

.float-slow {
    animation: float 8s ease-in-out infinite;
}

.float-fast {
    animation: float 4s ease-in-out infinite;
}

/* Rotate Animation */
.rotate-slow {
    animation: rotateSlow 20s linear infinite;
}

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

/* Shine Effect */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* Number Counter Animation */
.counter {
    display: inline-block;
}

/* Morphing Background */
.morph-bg {
    position: relative;
    overflow: hidden;
}

.morph-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, var(--emerald-neon) 0%, transparent 50%);
    opacity: 0.1;
    animation: morphMove 15s ease-in-out infinite;
}

@keyframes morphMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20%, -20%) scale(1.2); }
    50% { transform: translate(-20%, 20%) scale(0.8); }
    75% { transform: translate(20%, 20%) scale(1.1); }
}

/* Typing Effect */
.typing {
    overflow: hidden;
    border-right: 2px solid var(--emerald-neon);
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end),
        blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: var(--emerald-neon); }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

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

/* Particle Background Effect */
.particles {
    position: relative;
}

.particles::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-liquid);
    border-radius: 50%;
    top: 20%;
    left: 30%;
    animation: particleFloat 10s ease-in-out infinite;
    box-shadow:
        60px 80px 0 var(--emerald-neon),
        120px 40px 0 var(--gold-liquid),
        180px 100px 0 var(--emerald-neon),
        240px 60px 0 var(--gold-liquid),
        300px 120px 0 var(--emerald-neon);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* Blur In Animation */
.blur-in {
    animation: blurIn 0.8s ease forwards;
}

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(20px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* 3D Tilt on Hover */
.tilt-hover {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.tilt-hover:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

/* Neon Flicker */
.neon-flicker {
    animation: neonFlicker 2s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.9; }
    96% { opacity: 1; }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   THE ELITE - Casino Reviews Page
   ========================================== */
.elite-hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.elite-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #08060a 0%, var(--bg-navy) 100%);
}

.elite-bg .elite-rays {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg at 50% 0%, transparent 0deg, rgba(212, 175, 55, 0.03) 30deg, transparent 60deg, rgba(212, 175, 55, 0.02) 90deg, transparent 120deg);
}

.elite-bg .orb-gold-elite {
    width: 500px;
    height: 500px;
    background: var(--gold-liquid);
    top: -200px;
    left: 30%;
    opacity: 0.1;
}

.elite-bg .orb-emerald-elite {
    width: 350px;
    height: 350px;
    background: var(--emerald-neon);
    bottom: -100px;
    right: 20%;
    opacity: 0.08;
}

.elite-bg .diamond-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 0, 30px -30px, 0 30px;
}

.elite-header {
    position: relative;
    text-align: center;
    z-index: 1;
}

.elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold-liquid);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.elite-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 30%, #F2F4F8 60%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

.elite-subtitle {
    color: var(--text-silver);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Trust Stats */
.trust-stats-row {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
}

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

.trust-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-liquid);
    line-height: 1;
}

.trust-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-silver);
    margin-top: 5px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Quick Filter Bar */
.quick-filter-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 74px;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-label {
    color: var(--text-silver);
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-chip {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-silver);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-chip:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.filter-chip.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-liquid);
    color: var(--gold-liquid);
}

.sort-group .sort-select {
    padding: 10px 20px;
    min-width: 150px;
}

/* Review Categories Pills */
.review-categories-section {
    padding: 30px 0;
    overflow-x: auto;
}

.categories-scroll {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
}

.review-category-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-category-pill:hover {
    border-color: var(--gold-liquid);
    background: rgba(212, 175, 55, 0.05);
}

.review-category-pill .pill-icon {
    font-size: 1.5rem;
}

.review-category-pill .pill-content {
    display: flex;
    flex-direction: column;
}

.review-category-pill .pill-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.review-category-pill .pill-count {
    font-size: 0.75rem;
    color: var(--text-silver);
}

/* Featured Casino Card */
.featured-casino-section {
    padding: 40px 0;
}

.featured-casino-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0, 255, 163, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B8860B 100%) !important;
    color: #000 !important;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.featured-layout {
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    gap: 40px;
    padding: 50px 40px;
    align-items: center;
}

.featured-logo-area {
    text-align: center;
}

.casino-logo-lg {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 255, 163, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
}

.casino-logo-lg .logo-letter {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-liquid), var(--emerald-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-rating {
    text-align: center;
}

.rating-stars-lg {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-stars-lg svg {
    width: 20px;
    height: 20px;
}

.rating-score-lg {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-liquid);
}

.featured-info .featured-name {
    font-size: 2rem;
    margin-bottom: 10px;
}

.featured-info .featured-tagline {
    color: var(--text-silver);
    margin-bottom: 25px;
}

.featured-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.highlight-item .highlight-icon {
    font-size: 1.2rem;
}

.highlight-item span:last-child {
    color: var(--text-silver);
    font-size: 0.9rem;
}

.featured-bonus {
    text-align: center;
}

.featured-bonus .bonus-card {
    padding: 25px;
    background: rgba(0, 255, 163, 0.08);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
}

.featured-bonus .bonus-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-silver);
    margin-bottom: 5px;
}

.featured-bonus .bonus-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald-neon);
    line-height: 1.2;
}

.featured-bonus .bonus-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--text-silver);
    margin-top: 5px;
}

.btn-featured-cta {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF3E3E, #ff5555);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: not-allowed;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.btn-featured-cta .cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: eliteShimmer 2s ease-in-out infinite;
}

/* Casino Reviews Grid */
.reviews-grid-section {
    padding: 60px 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-count {
    color: var(--text-silver);
    font-size: 0.9rem;
}

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

.casino-review-card {
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.casino-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.casino-review-card.top-rated {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
}

.top-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B8860B 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
}

.casino-review-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.casino-logo-sm {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 255, 163, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.casino-logo-sm span {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-liquid), var(--emerald-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-meta {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.casino-name a {
    color: var(--text-white);
}

.casino-name a:hover {
    color: var(--gold-liquid);
}

.casino-type {
    font-size: 0.75rem;
    color: var(--emerald-neon);
}

/* Rating Visual */
.card-rating {
    margin-bottom: 20px;
}

.rating-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald-neon), var(--gold-liquid));
    border-radius: 4px;
}

.rating-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-liquid);
    min-width: 35px;
}

.rating-stars-sm {
    display: flex;
    gap: 3px;
}

.rating-stars-sm svg {
    width: 12px;
    height: 12px;
}

/* Features */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(0, 255, 163, 0.08);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-silver);
}

/* Card Bonus */
.card-bonus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-bonus .bonus-label {
    font-size: 0.8rem;
    color: var(--text-silver);
}

.card-bonus .bonus-percent {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-liquid);
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-review {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 8px;
    color: var(--emerald-neon);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: rgba(0, 255, 163, 0.1);
    border-color: var(--emerald-neon);
    color: var(--emerald-neon);
}

.btn-register {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #FF3E3E, #ff5555);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.btn-register .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: eliteShimmer 2.5s ease-in-out infinite;
}

/* Load More */
.load-more-area {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-silver);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    border-color: var(--gold-liquid);
    color: var(--gold-liquid);
}

/* Comparison CTA */
.comparison-cta-section {
    padding: 40px 0;
}

.comparison-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 45px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 255, 163, 0.03));
    border-color: rgba(212, 175, 55, 0.2);
}

.comparison-cta .cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.comparison-cta .cta-text h3 {
    font-size: 1.3rem;
    margin: 0 0 5px 0;
}

.comparison-cta .cta-text p {
    margin: 0;
    color: var(--text-silver);
}

.btn-compare {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--emerald-neon), var(--emerald-dark));
    border: none;
    border-radius: 10px;
    color: var(--bg-obsidian);
    font-weight: 700;
    cursor: not-allowed;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.btn-compare .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: eliteShimmer 2s ease-in-out infinite;
}

/* Criteria Section */
.criteria-section {
    padding: 80px 0;
    background: var(--bg-navy);
}

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

.criteria-card {
    padding: 30px;
    text-align: center;
}

.criteria-card .criteria-icon {
    margin-bottom: 20px;
}

.criteria-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.criteria-card p {
    color: var(--text-silver);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.criteria-weight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-silver);
}

.criteria-weight .weight-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.criteria-weight .weight-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald-neon), var(--gold-liquid));
    border-radius: 3px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    padding: 30px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--gold-liquid);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-silver);
    line-height: 1.7;
    margin: 0;
}

/* Trust Badges Section */
.trust-badges-section {
    padding: 40px 0 60px;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-badge-item .badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 1.3rem;
}

.trust-badge-item span:last-child {
    font-size: 0.85rem;
    color: var(--text-silver);
}

/* Responsive - Casino Reviews */
@media (max-width: 1200px) {
    .casino-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-layout {
        grid-template-columns: 1fr 1fr;
    }

    .featured-logo-area {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .elite-title {
        font-size: 2.5rem;
    }

    .featured-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .comparison-cta .cta-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .elite-title {
        font-size: 2rem;
    }

    .trust-stats-row {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .filter-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .filter-group {
        justify-content: center;
    }

    .casino-reviews-grid {
        grid-template-columns: 1fr;
    }

    .featured-highlights {
        grid-template-columns: 1fr;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .categories-scroll {
        padding: 0 15px;
    }

    .card-actions {
        flex-direction: column;
    }

    .trust-badges-row {
        gap: 20px;
    }

    .trust-stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
        padding: 15px;
    }

    .trust-stat {
        min-width: 80px;
    }

    .trust-stat .stat-number {
        font-size: 1.25rem;
    }

    .trust-stat .stat-label {
        font-size: 0.7rem;
    }

    .trust-divider {
        display: none;
    }
}

/* ==========================================
   ULTRA-HIGH FIDELITY UI/UX 2026
   Cinematic Animations & Enhanced Effects
   ========================================== */

/* Cinematic Entrance Animations */
@keyframes cinematicFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cinematicSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(8px);
    }
    60% {
        opacity: 1;
        transform: translateX(10px);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes cinematicScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(10px);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes cinematicRotateIn {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(-30deg) translateY(50px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0) translateY(0);
        filter: blur(0);
    }
}

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

/* Hero Section Cinematic Entrance */
.hero-section.animate-entrance .hero-badge {
    animation: cinematicFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-section.animate-entrance .hero-title-luxury {
    animation: cinematicSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-section.animate-entrance .hero-description {
    animation: cinematicFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-section.animate-entrance .hero-cta-group {
    animation: staggerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-section.animate-entrance .hero-trust-row {
    animation: staggerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-section.animate-entrance .hero-visual-block {
    animation: cinematicScaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Phone 3D Cinematic Animation */
.hero-section.animate-entrance .phone-mockup-3d {
    animation: phoneEntranceFloat 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

@keyframes phoneEntranceFloat {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-25deg) rotateX(15deg) translateY(80px) scale(0.9);
        filter: blur(15px);
    }
    60% {
        opacity: 1;
        transform: perspective(1000px) rotateY(5deg) rotateX(-5deg) translateY(-10px) scale(1.02);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0) scale(1);
    }
}

/* Floating Elements Stagger Animation */
.hero-section.animate-entrance .fe-chip-gold {
    animation: floatElementIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.hero-section.animate-entrance .fe-chip-emerald {
    animation: floatElementIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

.hero-section.animate-entrance .fe-card {
    animation: floatElementIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.6s;
    opacity: 0;
}

.hero-section.animate-entrance .fe-dice {
    animation: floatElementIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.8s;
    opacity: 0;
}

@keyframes floatElementIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5) rotate(-20deg);
    }
    70% {
        transform: translateY(-10px) scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* ==========================================
   GOLD AURA PULSE - #1 Ranking
   ========================================== */
@keyframes goldAuraPulse {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(212, 175, 55, 0.15),
            0 0 80px rgba(212, 175, 55, 0.1),
            inset 0 0 60px rgba(212, 175, 55, 0.03);
    }
    50% {
        box-shadow:
            0 0 60px rgba(212, 175, 55, 0.25),
            0 0 120px rgba(212, 175, 55, 0.15),
            0 0 180px rgba(253, 230, 138, 0.1),
            inset 0 0 80px rgba(212, 175, 55, 0.05);
    }
}

.leaderboard-entry.tier-gold {
    position: relative;
    animation: goldAuraPulse 4s ease-in-out infinite;
}

.leaderboard-entry.tier-gold::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(253, 230, 138, 0.3),
        rgba(212, 175, 55, 0.2),
        rgba(184, 134, 11, 0.3),
        rgba(212, 175, 55, 0.2)
    );
    background-size: 300% 300%;
    animation: goldBorderShift 6s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
    filter: blur(1px);
}

@keyframes goldBorderShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Gold Crown Glow Animation */
.rank-gold .rank-crown {
    animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 40px rgba(253, 230, 138, 0.4));
    }
}

/* ==========================================
   ENHANCED SHIMMER EFFECTS
   ========================================== */
@keyframes luxuryShimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.btn-elite-cta {
    position: relative;
    overflow: hidden;
}

.btn-elite-cta .cta-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: luxuryShimmer 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Emerald CTA Shimmer */
.btn-cyber-primary {
    position: relative;
    overflow: hidden;
}

.btn-cyber-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-150%) skewX(-20deg);
    animation: luxuryShimmer 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Gold Shine Effect */
@keyframes goldShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.bonus-tag {
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(0, 255, 163, 0.2) 0%,
        rgba(0, 255, 163, 0.3) 25%,
        rgba(0, 255, 163, 0.5) 50%,
        rgba(0, 255, 163, 0.3) 75%,
        rgba(0, 255, 163, 0.2) 100%
    );
    background-size: 200% auto;
    animation: goldShine 4s linear infinite;
}

/* ==========================================
   BEVELED SECTION HEADERS
   ========================================== */
.section-title.gradient-text {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
}

.section-title.gradient-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(253, 230, 138, 0.05) 50%,
        rgba(212, 175, 55, 0.08) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
    z-index: -1;
}

/* Leaderboard Title Enhancement */
.leaderboard-title {
    position: relative;
}

.leaderboard-title .title-main {
    position: relative;
    padding: 0.3em 0.6em;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15),
        rgba(253, 230, 138, 0.1),
        rgba(212, 175, 55, 0.15)
    );
    border: 1px solid rgba(212, 175, 55, 0.4);
    clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
    margin-right: 0.5em;
}

/* ==========================================
   3D SMARTPHONE ENHANCED STYLES
   ========================================== */
.phone-3d-container {
    position: relative;
    perspective: 2000px;
}

.phone-3d-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: phone3DFloat 8s ease-in-out infinite;
    will-change: transform;
}

.phone-3d-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes phone3DFloat {
    0%, 100% {
        transform: rotateY(-8deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-8deg) rotateX(5deg) translateY(-20px);
    }
}

.phone-3d-svg {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    will-change: transform;
}

/* Emerald Glow Ring */
.phone-emerald-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 255, 163, 0.15) 0%,
        rgba(0, 255, 163, 0.08) 30%,
        transparent 70%
    );
    animation: emeraldGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes emeraldGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.9;
    }
}

/* ==========================================
   FLOATING ELEMENTS ENHANCED
   ========================================== */
.floating-mesh-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.mesh-chip,
.mesh-coin {
    position: absolute;
    animation: meshFloat 10s ease-in-out infinite;
}

.mesh-chip-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    animation-delay: 0s;
}

.mesh-chip-2 {
    bottom: 20%;
    right: 8%;
    width: 60px;
    animation-delay: -3s;
}

.mesh-coin-1 {
    top: 25%;
    right: 5%;
    width: 70px;
    animation-delay: -5s;
}

.mesh-coin-2 {
    bottom: 35%;
    left: 8%;
    width: 50px;
    animation-delay: -7s;
}

@keyframes meshFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(4px 8px 15px rgba(0, 0, 0, 0.3));
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        filter: drop-shadow(8px 15px 25px rgba(0, 0, 0, 0.25));
    }
    50% {
        transform: translateY(-30px) rotate(-3deg);
        filter: drop-shadow(10px 20px 35px rgba(0, 0, 0, 0.2));
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
        filter: drop-shadow(6px 12px 20px rgba(0, 0, 0, 0.28));
    }
}

/* ==========================================
   DUO-TONE ICON SYSTEM
   ========================================== */
.duotone-icon {
    --icon-primary: var(--gold-liquid);
    --icon-secondary: rgba(0, 255, 163, 0.4);
    filter: drop-shadow(0 0 8px var(--icon-secondary));
    transition: all 0.3s ease;
}

.duotone-icon:hover {
    --icon-secondary: rgba(0, 255, 163, 0.7);
    filter: drop-shadow(0 0 15px var(--icon-secondary));
    transform: scale(1.1);
}

/* Icon Jade Glow */
.icon-jade-glow {
    position: relative;
}

.icon-jade-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.icon-jade-glow:hover::after {
    opacity: 1;
}

/* ==========================================
   ENHANCED GLASS PANEL WITH LUXURY FEEL
   ========================================== */
.glass-panel-luxury {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel-luxury:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 60px -20px rgba(212, 175, 55, 0.2);
}

/* ==========================================
   SCROLL-TRIGGERED ANIMATIONS
   ========================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 1s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   GOLD TEXT FADE-OUT ANIMATION
   ========================================== */
@keyframes goldTextFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Gold text - no fadeout, just keeps the shine animation */
.gold-fadeout {
    /* Class exists but no special animation - text stays visible */
}

/* ==========================================
   TOP 10 PREMIUM CASINO TABLE REDESIGN
   Ultra Luxury Glassmorphism 2026
   ========================================== */

/* Section Container with Enhanced Glassmorphism */
.elite-leaderboard-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        rgba(5, 7, 10, 0.95) 0%,
        rgba(10, 17, 34, 0.98) 50%,
        rgba(5, 7, 10, 0.95) 100%
    );
    overflow: hidden;
}

/* Golden-Blue Gradient Glow at Edges */
.elite-leaderboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        180deg,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.elite-leaderboard-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        0deg,
        rgba(0, 100, 200, 0.05) 0%,
        transparent 100%
    );
    pointer-events: none;
}

/* Section Header Premium Styling */
.leaderboard-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.leaderboard-title-block {
    display: inline-block;
}

.leaderboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(253, 230, 138, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gold-liquid);
    font-weight: 600;
    letter-spacing: 1px;
}

.leaderboard-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.leaderboard-title .title-main {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.15));
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    background: linear-gradient(135deg, #FDE68A, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.leaderboard-title .title-accent {
    background: linear-gradient(135deg, #F2F4F8 0%, #D4AF37 50%, #FDE68A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leaderboard-subtitle {
    font-size: 1.1rem;
    color: var(--text-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Leaderboard Entries Container */
.leaderboard-entries {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Individual Casino Entry - Premium Floating Glass Panel */
.leaderboard-entry {
    display: grid;
    grid-template-columns: 80px 80px 1fr 200px 200px 140px;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Beveled Border Effect */
.leaderboard-entry::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.leaderboard-entry:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(212, 175, 55, 0.1);
}

/* ========== TIER-SPECIFIC STYLING ========== */

/* GOLD TIER - #1 Position */
.leaderboard-entry.tier-gold {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.12) 0%,
        rgba(253, 230, 138, 0.06) 50%,
        rgba(184, 134, 11, 0.1) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.4);
    animation: goldAuraPulse 4s ease-in-out infinite;
}

.leaderboard-entry.tier-gold::before {
    background: linear-gradient(
        135deg,
        rgba(253, 230, 138, 0.4) 0%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(184, 134, 11, 0.4) 100%
    );
}

.leaderboard-entry.tier-gold:hover {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(212, 175, 55, 0.25),
        inset 0 0 60px rgba(212, 175, 55, 0.05);
}

/* SILVER TIER - #2 Position */
.leaderboard-entry.tier-silver {
    background: linear-gradient(
        135deg,
        rgba(192, 192, 192, 0.08) 0%,
        rgba(220, 220, 220, 0.04) 50%,
        rgba(169, 169, 169, 0.06) 100%
    );
    border: 1px solid rgba(192, 192, 192, 0.35);
}

.leaderboard-entry.tier-silver::before {
    background: linear-gradient(
        135deg,
        rgba(220, 220, 220, 0.3) 0%,
        rgba(192, 192, 192, 0.15) 50%,
        rgba(169, 169, 169, 0.25) 100%
    );
}

.leaderboard-entry.tier-silver:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(192, 192, 192, 0.15);
}

/* BRONZE TIER - #3 Position */
.leaderboard-entry.tier-bronze {
    background: linear-gradient(
        135deg,
        rgba(205, 127, 50, 0.08) 0%,
        rgba(184, 115, 51, 0.04) 50%,
        rgba(166, 99, 38, 0.06) 100%
    );
    border: 1px solid rgba(205, 127, 50, 0.35);
}

.leaderboard-entry.tier-bronze::before {
    background: linear-gradient(
        135deg,
        rgba(205, 127, 50, 0.3) 0%,
        rgba(184, 115, 51, 0.15) 50%,
        rgba(166, 99, 38, 0.25) 100%
    );
}

.leaderboard-entry.tier-bronze:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(205, 127, 50, 0.15);
}

/* GLASS TIER - #4-10 Positions */
.leaderboard-entry.tier-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-entry.tier-glass:hover {
    border-color: rgba(0, 255, 163, 0.3);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(0, 255, 163, 0.08);
}

/* ========== RANK BADGE - Glowing Metallic Emblem ========== */
.entry-rank {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rank-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 70px;
}

.rank-badge .rank-crown {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.rank-badge .rank-number {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Gold Rank - Glowing Metallic */
.rank-gold {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.rank-gold .rank-crown {
    color: #FDE68A;
    animation: crownGlow 2s ease-in-out infinite;
}

.rank-gold .rank-number {
    background: linear-gradient(
        180deg,
        #FFF8DC 0%,
        #FDE68A 20%,
        #D4AF37 50%,
        #B8860B 80%,
        #D4AF37 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

/* Reflection effect for gold rank number */
.rank-gold .rank-number::after {
    content: '1';
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scaleY(-0.3);
    opacity: 0.4;
}

/* Silver Rank */
.rank-silver {
    filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.5));
}

.rank-silver .rank-crown {
    color: #E8E8E8;
}

.rank-silver .rank-number {
    background: linear-gradient(180deg, #F5F5F5 0%, #C0C0C0 50%, #A8A8A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bronze Rank */
.rank-bronze {
    filter: drop-shadow(0 0 10px rgba(205, 127, 50, 0.5));
}

.rank-bronze .rank-crown {
    color: #DEB887;
}

.rank-bronze .rank-number {
    background: linear-gradient(180deg, #DEB887 0%, #CD7F32 50%, #A0522D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Rank */
.rank-glass .rank-number {
    color: var(--text-silver);
    font-weight: 700;
}

/* ========== CASINO LOGO ========== */
.entry-logo {
    display: flex;
    justify-content: center;
}

.logo-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
}

.logo-initial {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FDE68A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== CASINO INFO - Metallic Typography ========== */
.entry-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.entry-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #F2F4F8 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-gold .entry-name {
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #FFF8DC 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.entry-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.star-icon {
    width: 14px;
    height: 14px;
}

.rating-score {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-liquid);
}

/* ========== BONUS TAG - Neon Emerald Pill ========== */
.entry-bonus {
    display: flex;
    align-items: center;
}

.bonus-tag {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.2), rgba(0, 255, 163, 0.1));
    border: 1px solid rgba(0, 255, 163, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-neon);
    position: relative;
    overflow: hidden;
    animation: emeraldPulse 3s ease-in-out infinite;
}

@keyframes emeraldPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 163, 0.2), 0 0 20px rgba(0, 255, 163, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 163, 0.4), 0 0 40px rgba(0, 255, 163, 0.2);
    }
}

/* ========== FEATURES LIST - Glowing Green Checkmarks ========== */
.entry-pros {
    display: flex;
    align-items: center;
}

.pros-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pros-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-silver);
}

.pro-check {
    color: var(--emerald-neon);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 163, 0.6);
    font-size: 0.9rem;
}

/* ========== CTA BUTTON - Shimmering Metallic Gradient ========== */
.entry-cta {
    display: flex;
    justify-content: flex-end;
}

.btn-elite-cta {
    position: relative;
    padding: 14px 28px;
    background: linear-gradient(135deg, #FF3E3E 0%, #FF5555 50%, #D4AF37 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(255, 62, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-elite-cta:hover {
    transform: translateY(-4px);
    background-position: 100% 0;
    box-shadow:
        0 12px 30px rgba(255, 62, 62, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-elite-cta:active {
    transform: translateY(-2px);
}

.btn-elite-cta .cta-text {
    position: relative;
    z-index: 2;
}

.btn-elite-cta .cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: buttonShimmer 3s ease-in-out infinite;
}

@keyframes buttonShimmer {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.btn-elite-cta:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

/* ========== LEADERBOARD FOOTER ========== */
.leaderboard-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-silver);
    opacity: 0.7;
}

/* ========== RESPONSIVE DESIGN FOR TOP 10 ========== */
@media (max-width: 1200px) {
    .leaderboard-entry {
        grid-template-columns: 60px 60px 1fr 160px 160px 120px;
        gap: 15px;
        padding: 20px 24px;
    }
}

@media (max-width: 992px) {
    .leaderboard-entry {
        grid-template-columns: 50px 1fr 140px 100px;
        gap: 15px;
    }

    .entry-logo,
    .entry-pros {
        display: none;
    }

    .leaderboard-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .elite-leaderboard-section {
        padding: 60px 0;
    }

    .leaderboard-entry {
        grid-template-columns: 50px 1fr 100px;
        gap: 12px;
        padding: 16px 20px;
    }

    .entry-bonus {
        display: none;
    }

    .leaderboard-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .rank-badge {
        width: 50px;
        height: 60px;
    }

    .rank-badge .rank-number {
        font-size: 1.3rem;
    }

    .entry-name {
        font-size: 1rem;
    }

    .btn-elite-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .leaderboard-entry {
        grid-template-columns: 45px 1fr 80px;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .leaderboard-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}


/* ==========================================
   ELITE NEXUS 2026 - CYBER LUXURY REDESIGN
   ========================================== */

/* ==========================================
   PHASE 2: HERO GOLD FADEOUT ANIMATION
   ========================================== */

@keyframes goldFadeout {
    0% {
        opacity: 1;
        transform: translateY(0);
        color: #D4AF37;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    70% {
        opacity: 1;
        transform: translateY(0);
        color: #D4AF37;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        color: var(--text-white, #F2F4F8);
        text-shadow: none;
    }
}

.gold-fadeout {
    color: var(--color-gold);
    animation: goldFadeout 2s ease-out 1s forwards;
}

.hero-title-luxury .title-line {
    display: block;
}

/* ==========================================
   PHASE 3: GLASS PANELS WITH 2XL BLUR
   ========================================== */

.glass-panel-2xl {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass), var(--shadow-bevel);
    border-radius: var(--radius-xl);
}

/* Enhanced Leaderboard Entry Glass */
.leaderboard-entry {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-glass),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* ==========================================
   PHASE 3.2: METALLIC RANK EMBLEMS
   ========================================== */

/* Gold Rank (#1) */
.rank-badge.rank-gold {
    background: var(--gradient-gold);
    box-shadow: none;
    border: none;
}

.rank-badge.rank-gold .rank-number {
    color: #1a1a2a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.rank-badge.rank-gold .rank-crown {
    color: #B8860B;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Silver Rank (#2) */
.rank-badge.rank-silver {
    background: var(--gradient-silver);
    box-shadow: none;
    border: none;
}

.rank-badge.rank-silver .rank-number {
    color: #2a2a3a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.rank-badge.rank-silver .rank-crown {
    color: #808080;
}

/* Bronze Rank (#3) */
.rank-badge.rank-bronze {
    background: var(--gradient-bronze);
    box-shadow: none;
    border: none;
}

.rank-badge.rank-bronze .rank-number {
    color: #2a1a0a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.rank-badge.rank-bronze .rank-crown {
    color: #8B4513;
}

/* ==========================================
   PHASE 3.3: CTA BUTTON WITH SHIMMER
   ========================================== */

.btn-elite-cta {
    position: relative;
    background: var(--gradient-cta);
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    pointer-events: none;
    cursor: default;
}

.btn-elite-cta .cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ==========================================
   PHASE 5: GLOBAL MOTION SYSTEM
   ========================================== */

/* 5.1 Cinematic Reveal */
@keyframes cinematicReveal {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-entrance {
    animation: cinematicReveal 0.8s var(--ease-out-expo) forwards;
}

/* 5.2 Staggered List Animations */
.stagger-animate > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.stagger-animate.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-animate.visible > *:nth-child(2) { transition-delay: 0.10s; }
.stagger-animate.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-animate.visible > *:nth-child(4) { transition-delay: 0.20s; }
.stagger-animate.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-animate.visible > *:nth-child(6) { transition-delay: 0.30s; }
.stagger-animate.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-animate.visible > *:nth-child(8) { transition-delay: 0.40s; }
.stagger-animate.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-animate.visible > *:nth-child(10) { transition-delay: 0.50s; }
.stagger-animate.visible > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-animate.visible > *:nth-child(12) { transition-delay: 0.60s; }
.stagger-animate.visible > *:nth-child(13) { transition-delay: 0.65s; }
.stagger-animate.visible > *:nth-child(14) { transition-delay: 0.70s; }
.stagger-animate.visible > *:nth-child(15) { transition-delay: 0.75s; }

.stagger-animate.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* 5.3 Scroll Reveal Elements */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 5.4 Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gold-fadeout {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .scroll-reveal,
    .stagger-animate > * {
        opacity: 1;
        transform: none;
    }

    .btn-elite-cta .cta-shimmer {
        animation: none;
    }
}

/* ==========================================
   PHASE 4.1: THE ACADEMY - KNOWLEDGE CUBES
   ========================================== */

.academy-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.academy-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

.academy-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.academy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.academy-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.academy-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Knowledge Cubes Grid */
.knowledge-cubes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.knowledge-cube {
    position: relative;
    aspect-ratio: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    overflow: hidden;
}

.knowledge-cube::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 163, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.knowledge-cube:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 255, 163, 0.15);
}

.knowledge-cube:hover::before {
    opacity: 1;
}

/* Duo-tone SVG Icons */
.cube-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    position: relative;
}

.cube-icon .icon-base {
    fill: var(--color-primary-dark);
}

.cube-icon .icon-accent {
    fill: var(--color-primary);
}

.cube-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.cube-count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ==========================================
   PHASE 4.2: THE TERMINAL - NEWS FEED
   ========================================== */

.terminal-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.terminal-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0a0f1a 0%, var(--color-bg) 100%);
}

.terminal-bg .scan-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 163, 0.02) 2px,
        rgba(0, 255, 163, 0.02) 4px
    );
    pointer-events: none;
}

.terminal-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.terminal-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.terminal-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-cta);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--color-cta); }
    50% { opacity: 0.5; box-shadow: 0 0 4px var(--color-cta); }
}

.terminal-status .status-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-cta);
}

.terminal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--color-cta);
    border-radius: var(--radius-full);
    color: var(--color-cta);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.terminal-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.terminal-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

/* News Glass Cards */
.news-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.3s var(--ease-out-expo);
}

.news-glass-card:hover {
    border-color: rgba(0, 255, 163, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Market Data Ticker */
.market-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 12px 0;
    z-index: 100;
    overflow: hidden;
}

.market-ticker-content {
    display: flex;
    animation: tickerScroll 30s linear infinite;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    white-space: nowrap;
}

.ticker-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.ticker-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ticker-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.ticker-change.positive {
    color: var(--color-primary);
}

.ticker-change.negative {
    color: var(--color-cta);
}

/* ==========================================
   PHASE 4.3: THE VAULT - VOUCHER CARDS
   ========================================== */

.vault-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.vault-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
}

.vault-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vault-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.vault-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

/* Voucher Cards */
.voucher-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border-radius: var(--radius-xl);
    padding: 28px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

/* Laser-cut Dashed Border */
.voucher-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px dashed transparent;
    border-radius: calc(var(--radius-xl) - 8px);
    background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
                var(--gradient-gold-emerald) border-box;
    pointer-events: none;
}

/* Voucher perforated edge effect */
.voucher-card::after {
    content: '';
    position: absolute;
    right: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.1) 8px,
        rgba(255, 255, 255, 0.1) 16px
    );
}

.voucher-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.1);
}

/* Large Golden Bonus Value */
.voucher-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    margin: 16px 0;
}

.voucher-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.voucher-casino {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
}

.voucher-expires {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 62, 62, 0.15);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--color-cta);
    margin-top: 16px;
}

/* ==========================================
   PHASE 4.4: THE LEDGER - STATUS PULSES
   ========================================== */

.ledger-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.ledger-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

.ledger-bg .ledger-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.ledger-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid #C0C0C0;
    border-radius: var(--radius-full);
    color: #C0C0C0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ledger-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.ledger-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

/* Payment Table Glass Styling */
.payment-table {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.payment-table .table-header {
    display: grid;
    grid-template-columns: 200px 150px 180px 120px 100px 100px;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
}

.payment-table .table-row {
    display: grid;
    grid-template-columns: 200px 150px 180px 120px 100px 100px;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
    transition: background 0.2s ease;
}

.payment-table .table-row:last-child {
    border-bottom: none;
}

.payment-table .table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Status Pulse Indicators */
.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

.speed-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Instant - Emerald Pulse */
.speed-badge.instant {
    background: rgba(0, 255, 163, 0.15);
    color: var(--color-primary);
}

.speed-badge.instant::before {
    background: var(--color-primary);
    animation: emeraldPulse 1.5s ease-in-out infinite;
}

@keyframes emeraldPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.5);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 0 6px rgba(0, 255, 163, 0);
        opacity: 0.7;
    }
}

/* Fast - Gold Pulse */
.speed-badge.fast {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
}

.speed-badge.fast::before {
    background: var(--color-gold);
    animation: goldPulse 1.5s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
        opacity: 0.7;
    }
}

/* Standard - Silver (no pulse) */
.speed-badge.standard {
    background: rgba(148, 163, 184, 0.15);
    color: var(--color-text-muted);
}

.speed-badge.standard::before {
    background: var(--color-text-muted);
}

/* Currency Tags */
.currency-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
    margin-right: 4px;
}

/* Popular Badge */
.popular-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--gradient-cta);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-left: 8px;
}

/* Method Icon & Name */
.td-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.method-icon {
    font-size: 1.5rem;
}

.method-name {
    font-weight: 500;
    color: var(--color-text);
}

/* Comparison Table */
.comparison-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.comp-header {
    background: rgba(255, 255, 255, 0.05);
}

.comp-header .comp-cell {
    padding: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.comp-row {
    border-top: 1px solid var(--glass-border);
}

.comp-row .comp-cell {
    padding: 14px;
    text-align: center;
    color: var(--color-text-muted);
}

.comp-row .comp-cell.label {
    text-align: left;
    font-weight: 500;
    color: var(--color-text);
}

.comp-row .rating {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
}

.comp-row .rating.high {
    background: rgba(0, 255, 163, 0.15);
    color: var(--color-primary);
}

.comp-row .rating.medium {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
}

.comp-row .rating.low {
    background: rgba(148, 163, 184, 0.1);
    color: var(--color-text-muted);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS FOR INTERNAL PAGES
   ========================================== */

@media (max-width: 992px) {
    .payment-table .table-header,
    .payment-table .table-row {
        grid-template-columns: 1fr 100px 120px 100px;
    }

    .payment-table .th-limits,
    .payment-table .th-action,
    .payment-table .td-limits,
    .payment-table .td-action {
        display: none;
    }

    .comp-header,
    .comp-row {
        grid-template-columns: 100px repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .knowledge-cubes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .payment-table .table-header,
    .payment-table .table-row {
        grid-template-columns: 1fr 100px 80px;
    }

    .payment-table .th-currencies,
    .payment-table .td-currencies {
        display: none;
    }

    .voucher-value {
        font-size: 2rem;
    }

    .comp-header,
    .comp-row {
        grid-template-columns: 80px repeat(4, 1fr);
        font-size: 0.8rem;
    }

    .market-ticker {
        display: none;
    }
}

@media (max-width: 480px) {
    .knowledge-cubes-grid {
        grid-template-columns: 1fr;
    }

    .voucher-card::after {
        display: none;
    }
}


/* ==========================================
   ELITE NEXUS 2026 - INTERNAL PAGE STYLES
   ========================================== */

/* Utility Classes */
.text-emerald {
    color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

/* Noise Texture Overlay */
.noise-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================
   THE ELITE COLLECTION - Casino Reviews
   ========================================== */

.elite-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    text-align: center;
}

.elite-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 255, 163, 0.08) 0%, transparent 40%),
                linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
}

.elite-bg .elite-rays {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 0%, transparent 0deg, rgba(212, 175, 55, 0.03) 60deg, transparent 120deg);
}

.elite-bg .diamond-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.elite-header {
    position: relative;
    z-index: 1;
}

.elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.elite-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.elite-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* Trust Stats Row */
.trust-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-stat .stat-number {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-gold);
}

.trust-stat .stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Quick Filter Bar */
.quick-filter-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 50;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

.filter-chip {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-chip.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

/* Featured Casino Card */
.featured-casino-section {
    padding: 60px 0;
}

.featured-casino-card {
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
}

.featured-layout {
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    gap: 40px;
    align-items: center;
}

.casino-logo-lg {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-gold);
}

.casino-logo-lg .logo-letter {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2a;
}

.featured-rating {
    margin-top: 16px;
    text-align: center;
}

.rating-stars-lg {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;
}

.rating-stars-lg svg {
    width: 20px;
    height: 20px;
}

.rating-score-lg {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gold);
}

.featured-info .featured-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.featured-info .featured-tagline {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.featured-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.highlight-item .highlight-icon {
    font-size: 1.2rem;
}

.featured-bonus .bonus-card {
    background: var(--glass-bg);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.featured-bonus .bonus-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 8px;
}

.featured-bonus .bonus-value {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-gold);
    display: block;
}

.featured-bonus .bonus-detail {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    display: block;
    margin-top: 4px;
}

.btn-featured-cta {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-cta);
    border: none;
    border-radius: var(--radius);
    font-size: var(--text-base);
    font-weight: 600;
    color: white;
    cursor: not-allowed;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

/* Casino Review Cards */
.casino-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.casino-review-card {
    position: relative;
    padding: 24px;
    transition: all 0.3s var(--ease-out-expo);
}

.casino-review-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.casino-review-card.top-rated {
    border-color: rgba(212, 175, 55, 0.3);
}

.casino-review-card .top-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B8860B 100%);
    border-radius: 0 0 8px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
}

.casino-review-card .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.casino-logo-sm {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.casino-review-card .casino-name {
    font-size: var(--text-lg);
    font-weight: 600;
}

.casino-review-card .casino-name a {
    color: var(--color-text);
    text-decoration: none;
}

.casino-review-card .casino-type {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.card-rating {
    margin-bottom: 16px;
}

.rating-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.rating-number {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gold);
}

.rating-stars-sm {
    display: flex;
    gap: 2px;
}

.rating-stars-sm svg {
    width: 14px;
    height: 14px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--color-primary);
}

.card-bonus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.card-bonus .bonus-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.card-bonus .bonus-percent {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gold);
}

.card-actions {
    display: flex;
    gap: 12px;
}

.btn-review {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-review:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn-register {
    flex: 1;
    padding: 10px 16px;
    background: var(--gradient-cta);
    border: none;
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
    cursor: not-allowed;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

/* Criteria Grid */
.criteria-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.criteria-card {
    padding: 28px;
    text-align: center;
}

.criteria-card .criteria-icon {
    margin-bottom: 16px;
}

.criteria-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.criteria-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.criteria-weight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.weight-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.weight-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
}

/* FAQ Grid */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    padding: 24px;
}

.faq-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges-section {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.trust-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.trust-badge-item .badge-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-logo-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .featured-highlights {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .trust-stats-row {
        flex-wrap: wrap;
        gap: 24px 40px;
    }
}

@media (max-width: 768px) {
    .elite-hero {
        padding: 80px 0 40px;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .casino-reviews-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges-row {
        gap: 20px;
    }

    .trust-stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
        padding: 20px 15px;
    }

    .trust-stat {
        min-width: 70px;
    }

    .trust-stat .stat-number {
        font-size: 1.25rem;
    }

    .trust-stat .stat-label {
        font-size: 0.75rem;
    }

    .trust-divider {
        display: none;
    }
}


/* ==========================================
   BONUSES PAGE - COUNTDOWN TIMER FIX
   ========================================== */

/* Centered Countdown Timer */
.box-countdown {
    text-align: center;
    padding: 16px;
    margin: 16px 0;
    background: rgba(255, 62, 62, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 62, 62, 0.15);
}

.countdown-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-timer .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-timer .time-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-cta);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-timer .time-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.countdown-timer .time-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cta);
    opacity: 0.5;
    margin-top: -12px;
}

/* Countdown expired state */
.countdown-timer.expired .time-value {
    color: var(--color-text-muted);
}

.countdown-timer.expired::after {
    content: '已截止';
    position: absolute;
    font-size: var(--text-sm);
    color: var(--color-cta);
    font-weight: 600;
}

/* ==========================================
   PAYMENTS PAGE - TABLE FIX
   ========================================== */

/* Fixed Payment Table Grid */
.payment-table {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    overflow-x: auto;
}

.payment-table .table-header {
    display: grid;
    grid-template-columns: minmax(180px, 1.5fr) minmax(120px, 1fr) minmax(140px, 1fr) minmax(100px, 1fr) minmax(80px, 0.8fr) minmax(100px, 1fr);
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 800px;
}

.payment-table .table-body {
    min-width: 800px;
}

.payment-table .table-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.5fr) minmax(120px, 1fr) minmax(140px, 1fr) minmax(100px, 1fr) minmax(80px, 0.8fr) minmax(100px, 1fr);
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
    transition: background 0.2s ease;
}

.payment-table .table-row:last-child {
    border-bottom: none;
}

.payment-table .table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Table Cell Alignment */
.payment-table .td-method {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-table .td-currencies {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.payment-table .td-limits {
    font-size: var(--text-sm);
    color: var(--color-text);
}

.payment-table .td-speed {
    display: flex;
    justify-content: flex-start;
}

.payment-table .td-fees {
    font-size: var(--text-sm);
    color: var(--color-text);
}

.payment-table .td-action {
    display: flex;
    justify-content: flex-end;
}

.btn-view-guide {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-view-guide:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .payment-table .table-header,
    .payment-table .table-row {
        grid-template-columns: minmax(160px, 1.5fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(80px, 0.8fr);
    }

    .payment-table .th-limits,
    .payment-table .th-action,
    .payment-table .td-limits,
    .payment-table .td-action {
        display: none;
    }
}

@media (max-width: 768px) {
    .payment-table .table-header,
    .payment-table .table-row {
        grid-template-columns: minmax(140px, 1.5fr) minmax(80px, 1fr) minmax(70px, 0.8fr);
    }

    .payment-table .th-currencies,
    .payment-table .td-currencies {
        display: none;
    }

    .countdown-timer .time-value {
        font-size: 1.4rem;
    }

    .countdown-timer .time-unit {
        min-width: 40px;
    }
}


/* ==========================================
   THE ACADEMY - FEATURED GUIDE ELITE REDESIGN
   ========================================== */

.featured-guide-elite {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
}

/* Background Effects */
.featured-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.featured-bg-effects .emerald-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.featured-bg-effects .gold-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-primary), transparent);
    opacity: 0.5;
}

.featured-bg-effects .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Featured Ribbon */
.featured-ribbon-elite {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Layout */
.featured-elite-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Visual Card Stack */
.featured-visual-elite {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.visual-card-stack {
    position: relative;
    width: 180px;
    height: 220px;
    perspective: 1000px;
}

.stack-card {
    position: absolute;
    width: 120px;
    height: 160px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stack-card .card-suit {
    font-size: 3rem;
}

.stack-card .card-suit.gold {
    color: var(--color-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.stack-card .card-suit.silver {
    color: #C0C0C0;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.5));
}

.stack-card .card-suit.emerald {
    filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.5));
}

.stack-back {
    background: linear-gradient(145deg, #1a1a2a, #0a0a15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    left: 0;
    top: 0;
    transform: rotate(-15deg) translateZ(-20px);
}

.stack-mid {
    background: linear-gradient(145deg, #1e1e2e, #0d0d18);
    border: 1px solid rgba(192, 192, 192, 0.2);
    left: 30px;
    top: 10px;
    transform: rotate(-5deg) translateZ(-10px);
}

.stack-front {
    background: linear-gradient(145deg, #252535, #12121c);
    border: 1px solid rgba(0, 255, 163, 0.3);
    left: 60px;
    top: 20px;
    transform: rotate(5deg) translateZ(0);
}

/* Hover animation for card stack */
.featured-guide-elite:hover .stack-back {
    transform: rotate(-20deg) translateY(-10px) translateZ(-20px);
}

.featured-guide-elite:hover .stack-mid {
    transform: rotate(-8deg) translateY(-5px) translateZ(-10px);
}

.featured-guide-elite:hover .stack-front {
    transform: rotate(8deg) translateY(-8px) translateZ(10px);
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.2);
}

.visual-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

/* Content Area */
.featured-content-elite {
    padding-top: 20px;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.guide-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
}

.guide-year-tag {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.featured-title-elite {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-excerpt-elite {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
}

/* Stats Row */
.featured-stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.stat-item-mini {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-item-mini .stat-icon {
    font-size: 1rem;
}

.stat-item-mini .stat-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Meta Row */
.featured-meta-elite {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.difficulty-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty-pill.beginner {
    background: rgba(0, 255, 163, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(0, 255, 163, 0.2);
}

.difficulty-pill.intermediate {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.difficulty-pill.expert {
    background: rgba(255, 62, 62, 0.1);
    color: var(--color-cta);
    border: 1px solid rgba(255, 62, 62, 0.2);
}

.difficulty-pill .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar-mini {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-indicator .progress-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* CTA Button */
.btn-featured-elite {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00CC82 100%);
    border: none;
    border-radius: var(--radius);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-bg);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(0, 255, 163, 0.3);
}

.btn-featured-elite:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 163, 0.4);
}

.btn-featured-elite .btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.btn-featured-elite:hover .btn-icon {
    transform: translateX(4px);
}

.btn-featured-elite .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerSlide 3s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-elite-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-visual-elite {
        order: -1;
    }

    .visual-card-stack {
        width: 160px;
        height: 200px;
    }

    .stack-card {
        width: 100px;
        height: 140px;
    }

    .stack-card .card-suit {
        font-size: 2.5rem;
    }

    .featured-guide-elite {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .featured-guide-elite {
        padding: 24px 20px;
    }

    .featured-ribbon-elite {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .featured-title-elite {
        font-size: var(--text-xl);
    }

    .featured-stats-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .featured-meta-elite {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-featured-elite {
        width: 100%;
        justify-content: center;
    }
}


/* Terminal Brand - Stack badge and status vertically */
.terminal-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-neon, #00FFA3), var(--emerald-dark, #065F46));
    border: none;
    color: var(--bg-obsidian, #05070A);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 255, 163, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 163, 0.5);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}
