/* ==========================================
   HOMEPAGE STYLES — Cyber Luxury 2026
   Adapted for parasnettikasino.ai
   ========================================== */

:root {
    --bg-obsidian: #0B0E11;
    --bg-navy: #131820;
    --emerald-neon: #D4AF37;
    --emerald-dark: rgba(212,175,55,0.15);
    --gold-liquid: #D4AF37;
    --gold-soft: #E8CC6E;
    --text-white: #FFFFFF;
    --text-silver: #9AA0A8;
    --crimson: #A32020;
    --sunset: #B8952E;
    --glass-bg-hp: rgba(26, 31, 40, 0.7);
    --glass-border-hp: rgba(42, 48, 64, 0.8);
    --section-padding: 80px;
}

/* ==========================================
   GRADIENT TEXT & GLASS PANEL
   ========================================== */
.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;
}

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

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

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

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

/* ==========================================
   HERO SECTION — Premium 2026
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1321 25%, #111827 50%, #0f172a 75%, #0a0e1a 100%);
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.hero-bg::before {
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 195, 0, 0.03) 50%, transparent 70%);
    filter: blur(80px);
    animation: streak-pulse 8s ease-in-out infinite;
    transform: rotate(-15deg);
}

.hero-bg::after {
    top: 10%;
    right: -15%;
    width: 50%;
    height: 120%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 195, 0, 0.025) 50%, transparent 70%);
    filter: blur(80px);
    animation: streak-pulse 8s ease-in-out 3s infinite;
    transform: rotate(25deg);
}

.gold-streak-3 {
    position: absolute;
    bottom: -10%;
    left: 30%;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 195, 0, 0.02) 50%, transparent 70%);
    filter: blur(80px);
    animation: streak-pulse 8s ease-in-out 5s infinite;
    transform: rotate(40deg);
    pointer-events: none;
}

@keyframes streak-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Bokeh */
.bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: bokeh-drift 12s ease-in-out infinite;
}
.bokeh-1 { width: 350px; height: 350px; top: 8%; left: 12%; background: rgba(255, 195, 0, 0.04); animation-duration: 14s; }
.bokeh-2 { width: 250px; height: 250px; top: 60%; right: 8%; background: rgba(59, 130, 246, 0.03); animation-duration: 11s; animation-delay: 2s; filter: blur(90px); }
.bokeh-3 { width: 180px; height: 180px; bottom: 15%; left: 5%; background: rgba(59, 130, 246, 0.035); animation-duration: 13s; animation-delay: 4s; filter: blur(70px); }
.bokeh-4 { width: 400px; height: 400px; top: 20%; right: 20%; background: rgba(255, 195, 0, 0.03); animation-duration: 15s; animation-delay: 1s; filter: blur(100px); }
.bokeh-5 { width: 120px; height: 120px; top: 45%; left: 40%; background: rgba(212, 168, 83, 0.04); animation-duration: 10s; animation-delay: 3s; filter: blur(60px); }
.bokeh-6 { width: 200px; height: 200px; bottom: 30%; right: 35%; background: rgba(59, 130, 246, 0.025); animation-duration: 12s; animation-delay: 5s; filter: blur(80px); }
.bokeh-7 { width: 280px; height: 280px; top: 5%; right: 5%; background: rgba(255, 195, 0, 0.025); animation-duration: 13s; animation-delay: 6s; filter: blur(90px); }

@keyframes bokeh-drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-10px, 20px); }
}

/* Noise */
.noise-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Floating elements container */
.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.float-el {
    position: absolute;
    pointer-events: none;
    animation: float var(--float-dur, 8s) ease-in-out infinite;
    will-change: transform;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--base-rotate, 0deg)); }
    50% { transform: translateY(-15px) rotate(calc(var(--base-rotate, 0deg) + 3deg)); }
}

/* Casino chips */
.chip {
    width: var(--chip-size, 90px);
    height: var(--chip-size, 90px);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #2a2a42 0%, #1a1a2e 70%);
    border: 2.5px solid #d4a853;
    box-shadow: 0 0 30px rgba(212, 168, 83, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.1), inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: var(--float-opacity, 0.5);
}
.chip::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 168, 83, 0.4);
}
.chip::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(transparent 0deg, transparent 40deg, rgba(212, 168, 83, 0.12) 40deg, rgba(212, 168, 83, 0.12) 50deg);
}
.chip-value {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d4a853;
    font-size: calc(var(--chip-size, 90px) * 0.28);
    text-shadow: 0 0 10px rgba(212, 168, 83, 0.4);
}
.chip-1 { --chip-size: 100px; --float-dur: 9s; --float-opacity: 0.5; top: 12%; left: 6%; --base-rotate: 5deg; }
.chip-2 { --chip-size: 70px; --float-dur: 7s; --float-opacity: 0.4; bottom: 18%; right: 8%; --base-rotate: -12deg; animation-delay: 2s; }
.chip-3 { --chip-size: 60px; --float-dur: 10s; --float-opacity: 0.35; top: 55%; left: 3%; --base-rotate: 8deg; animation-delay: 4s; }

/* Playing cards */
.card-float {
    width: 80px;
    height: 110px;
    border-radius: 8px;
    background: linear-gradient(145deg, #f5f0e8 0%, #ebe5d8 100%);
    border: 1.5px solid rgba(212, 168, 83, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 83, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: var(--float-opacity, 0.5);
    overflow: hidden;
}
.card-float::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 5px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}
.card-float svg {
    width: 36px;
    height: 36px;
    color: #c9952e;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.card-1 { --float-dur: 8s; --float-opacity: 0.55; top: 15%; right: 7%; --base-rotate: -8deg; animation-delay: 1s; }
.card-2 { --float-dur: 9s; --float-opacity: 0.45; bottom: 22%; left: 8%; --base-rotate: 6deg; animation-delay: 3s; }
.card-3 { --float-dur: 7s; --float-opacity: 0.4; top: 60%; right: 4%; --base-rotate: -15deg; animation-delay: 5s; width: 65px; height: 90px; }
.card-3 svg { width: 28px; height: 28px; }

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    width: 100%;
    padding: 80px 24px;
    text-align: center;
}

/* Top tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 83, 0.3);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: fadeInDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a853;
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.6);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.tag-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #d4a853;
}
.tag-text .tag-year { color: #ffffff; }

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

/* H1 title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1.15;
    color: #f1f5f9;
    max-width: 850px;
    margin-top: 28px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-title .gold {
    background: linear-gradient(135deg, #f5d280 0%, #d4a853 40%, #c9952e 60%, #f5d280 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Feature checkmarks */
.hero-features {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    animation: fadeIn 0.6s ease 0.6s both;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-item .check-icon {
    width: 18px;
    height: 18px;
    color: #d4a853;
    filter: drop-shadow(0 0 6px rgba(212, 168, 83, 0.5));
    flex-shrink: 0;
}
.feature-item span {
    font-size: 15px;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 0.3px;
}
.feature-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    flex-shrink: 0;
}

/* CTA buttons */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
    text-decoration: none;
}
.hero-btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(220, 38, 38, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.5), 0 8px 25px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.hero-btn-primary:active { transform: translateY(0); }

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 83, 0.4);
    color: #d4a853;
    transition: all 0.3s ease;
}
.hero-btn-secondary:hover {
    background: rgba(212, 168, 83, 0.08);
    border-color: rgba(212, 168, 83, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 168, 83, 0.15);
    color: #d4a853;
}
.hero-btn-secondary:active { transform: translateY(0); }

/* Trust badges */
.trust-badges {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}
.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}
.hero-badge-item:hover { transform: translateY(-2px); }

.hero-badge-blue {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.12), inset 0 0 15px rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.0s both;
}
.hero-badge-blue:hover {
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.2), inset 0 0 20px rgba(59, 130, 246, 0.08);
}
.hero-badge-blue .badge-icon-wrap { color: #60a5fa; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5)); }

.hero-badge-gold {
    box-shadow: 0 0 25px rgba(212, 168, 83, 0.12), inset 0 0 15px rgba(212, 168, 83, 0.05);
    border-color: rgba(212, 168, 83, 0.15);
}
.hero-badge-gold:hover {
    box-shadow: 0 0 35px rgba(212, 168, 83, 0.2), inset 0 0 20px rgba(212, 168, 83, 0.08);
}
.hero-badge-gold .badge-icon-wrap { color: #d4a853; filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.5)); }

.hero-badge-gold:nth-child(2) { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both; }
.hero-badge-gold:nth-child(3) { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both; }

.badge-icon-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.badge-icon-wrap svg { width: 22px; height: 22px; }

.badge-label {
    font-size: 14px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}

/* Hero load animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   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 {
    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;
}

.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;
}

/* ---- Podium TOP 3 ---- */
.podium-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 40px;
}

.podium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 28px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.podium-card:hover {
    transform: translateY(-6px);
}

/* Gold — center, tallest */
.podium-gold {
    background: linear-gradient(160deg, rgba(212,175,55,0.1), rgba(253,230,138,0.04));
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 0 50px rgba(212,175,55,0.12), inset 0 0 60px rgba(212,175,55,0.03);
    padding-top: 40px;
    padding-bottom: 36px;
}
.podium-gold:hover {
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 0 70px rgba(212,175,55,0.18), inset 0 0 80px rgba(212,175,55,0.05);
}

/* Silver */
.podium-silver {
    background: linear-gradient(160deg, rgba(192,192,192,0.07), rgba(255,255,255,0.02));
    border-color: rgba(192,192,192,0.25);
    box-shadow: 0 0 30px rgba(192,192,192,0.08);
}
.podium-silver:hover {
    border-color: rgba(192,192,192,0.4);
    box-shadow: 0 0 40px rgba(192,192,192,0.12);
}

/* Bronze */
.podium-bronze {
    background: linear-gradient(160deg, rgba(205,127,50,0.07), rgba(255,255,255,0.02));
    border-color: rgba(205,127,50,0.25);
    box-shadow: 0 0 30px rgba(205,127,50,0.08);
}
.podium-bronze:hover {
    border-color: rgba(205,127,50,0.4);
    box-shadow: 0 0 40px rgba(205,127,50,0.12);
}

.podium-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
}

.podium-crown { width: 24px; height: 24px; margin-bottom: 4px; }
.podium-gold .podium-crown { color: var(--gold-liquid); filter: drop-shadow(0 0 8px rgba(212,175,55,0.6)); }
.podium-silver .podium-crown { color: #C0C0C0; filter: drop-shadow(0 0 6px rgba(192,192,192,0.5)); }
.podium-bronze .podium-crown { color: #CD7F32; filter: drop-shadow(0 0 6px rgba(205,127,50,0.5)); }

.podium-rank-number { font-size: 1.6rem; font-weight: 900; }
.podium-gold .podium-rank-number {
    background: linear-gradient(135deg, #FDE68A, #D4AF37, #B8860B);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.podium-silver .podium-rank-number {
    background: linear-gradient(135deg, #E8E8E8, #C0C0C0, #A8A8A8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.podium-bronze .podium-rank-number {
    background: linear-gradient(135deg, #E8A060, #CD7F32, #A66028);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.podium-logo {
    width: 64px; height: 64px; border-radius: 14px; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.12));
    border: 1px solid rgba(255,255,255,0.1);
}
.podium-gold .podium-logo { width: 72px; height: 72px; }
.podium-initial {
    font-size: 1.6rem; 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;
}
.podium-logo svg {
    width: 36px; height: 36px; color: var(--gold-liquid);
}
.podium-gold .podium-logo svg { width: 42px; height: 42px; }

.podium-name {
    font-size: 1.15rem; font-weight: 700; color: var(--text-white); margin-bottom: 8px;
}
.podium-gold .podium-name { font-size: 1.3rem; }

.podium-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.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); }

.podium-bonus {
    display: inline-block; padding: 8px 16px; margin-bottom: 14px;
    background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
    border-radius: 25px; color: var(--emerald-neon); font-size: 0.85rem; font-weight: 600;
}

.podium-pros {
    list-style: none; margin: 0 0 18px; padding: 0;
    display: flex; flex-direction: column; gap: 5px;
}
.podium-pros li {
    display: flex; align-items: center; gap: 5px; justify-content: center;
    color: var(--text-silver); font-size: 0.85rem;
}
.podium-pros .pro-check { color: var(--emerald-neon); font-size: 0.75rem; }

/* ---- Rest List (4–10) ---- */
.rest-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rest-entry {
    display: grid;
    grid-template-columns: 40px 44px 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rest-entry:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.75));
}

.rest-rank {
    font-size: 1.1rem; font-weight: 700; color: var(--text-silver); text-align: center;
}

.rest-logo-wrap {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.08));
    border: 1px solid rgba(255,255,255,0.08);
}
.rest-initial {
    font-size: 1.1rem; 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;
}
.rest-logo-wrap svg {
    width: 26px; height: 26px; color: var(--gold-liquid);
}

.rest-info {
    display: flex; align-items: center; gap: 10px; min-width: 0;
}
.rest-name {
    font-size: 1rem; font-weight: 600; color: var(--text-white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rest-score {
    font-size: 0.85rem; font-weight: 700; color: var(--gold-liquid);
    flex-shrink: 0;
}

.rest-bonus {
    padding: 6px 14px;
    background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px; color: var(--emerald-neon); font-size: 0.8rem; font-weight: 600;
    white-space: nowrap;
}

.rest-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, #A32020, #B83030);
    border: none; border-radius: 8px; color: #fff;
    font-size: 0.85rem; font-weight: 700; cursor: not-allowed;
    opacity: 0.85; pointer-events: none;
    box-shadow: 0 2px 10px rgba(163,32,32,0.25);
}

.btn-elite-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #A32020 0%, #B83030 50%, #A32020 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(163, 32, 32, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.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, rgba(255, 255, 255, 0.3), transparent);
    animation: eliteShimmer 2s ease-in-out infinite;
}

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

.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;
}

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

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

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

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

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

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

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

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

/* ==========================================
   KEYWORDS CAROUSEL
   ========================================== */

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

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

/* Keyword Modals */

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

.hp-section-header .hp-section-title {
    margin-bottom: 0;
    text-align: left;
}

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

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

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

.hp-article-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.hp-article-card h3 a { color: var(--text-white); }
.hp-article-card h3 a:hover { color: var(--gold-liquid); }
.hp-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 {
    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-item .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;
}

.hp-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-hp);
    border: 1px solid var(--glass-border-hp);
    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(212, 175, 55, 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
   ========================================== */
.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-hp);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
}

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

.newsletter-form .btn-primary {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form .btn-primary:hover {
    background: #B83030;
    box-shadow: 0 4px 15px rgba(163, 32, 32, 0.4);
}

/* Shimmer effect on btn */
.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: shimmerSweep 2.5s ease-in-out infinite;
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    color: var(--emerald-neon);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--emerald-neon);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .float-el { opacity: 0.3 !important; }
    .chip-1 { --chip-size: 80px; }
    .chip-2 { --chip-size: 55px; }
    .chip-3 { --chip-size: 50px; }
    .card-1 { width: 65px; height: 90px; }
    .card-1 svg { width: 28px; height: 28px; }

    .podium-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .podium-card { padding: 24px 18px 22px; }
    .podium-gold { padding-top: 28px; }

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

    .rest-entry { grid-template-columns: 36px 40px 1fr auto auto; gap: 12px; padding: 12px 18px; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; }
    .hero-content { padding: 100px 20px 60px; }
    .floating-elements { display: none; }
    .hero-features { flex-direction: column; align-items: center; gap: 12px; }
    .feature-sep { display: none; }
    .trust-badges { flex-direction: column; align-items: center; gap: 12px; }

    .podium-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch;
    }
    .podium-card { padding: 24px 20px; }
    .podium-gold { padding-top: 24px; padding-bottom: 24px; }
    .podium-gold .podium-logo { width: 64px; height: 64px; }

    .rest-entry { grid-template-columns: 32px 1fr auto; gap: 10px; padding: 12px 14px; }
    .rest-logo-wrap { display: none; }
    .rest-bonus { display: none; }

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

    .articles-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .hp-section-header { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .hero-content { padding: 80px 16px 48px; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; }
    .hero-btn { width: 100%; justify-content: center; }
    .hero-badge-item { padding: 12px 22px; }
    .hero-tag { padding: 7px 16px 7px 12px; }
    .tag-text { font-size: 12px; }
    .rest-cta { padding: 8px 14px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .float-el,
    .bokeh,
    .hero-bg::before,
    .hero-bg::after,
    .gold-streak-3,
    .tag-dot,
    .hero-title .gold,
    .btn-elite-cta .cta-shimmer,
    
.hero-tag,
    .hero-title,
    .hero-features,
    .hero-buttons,
    .hero-badge-item {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* Responsive images */
img { max-width: 100%; height: auto; }
