/**
 * Hyperion Theme Styles
 * 
 * @package Hyperion
 * @version 1.0.0
 * @author  Syoska - Syoska Media
 * @link    https://syoska-media.de
 */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --sf-gold: #fbbf24;
    --sf-red: #b91c1c;
    --sf-dark: #020202;
    --sf-panel: rgba(15, 15, 15, 0.95);
    --font-sport: 'Teko', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* ========================================
   BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--sf-dark);
    color: #a3a3a3;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   TYPOGRAPHY
======================================== */
.font-sport {
    font-family: var(--font-sport);
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sport);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ========================================
   UI ELEMENTS
======================================== */
.skew-box {
    transform: skewX(-15deg);
}

.unskew {
    transform: skewX(15deg);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: var(--sf-gold);
    background: linear-gradient(to bottom, #1a1a1a, #050505);
}

/* 3D Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    will-change: transform;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-5deg) translateZ(10px);
}

/* Badge Pop */
.badge-pop:hover {
    animation: badgePop 0.3s ease;
}

/* ========================================
   TEXT EFFECTS
======================================== */
.text-glow-gold {
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.2);
}

.text-glow-red {
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8), 0 0 20px rgba(220, 38, 38, 0.4), 0 0 40px rgba(220, 38, 38, 0.2);
}

/* ========================================
   ANIMATIONS
======================================== */

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Glow */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.2); }
    50% { box-shadow: 0 0 40px rgba(220,38,38,0.5); }
}

.pulse-glow {
    animation: pulse-glow 3s infinite;
}

/* Glow Pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.4); }
}

.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Shine Effect */
@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shine-effect {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shine 3s infinite linear;
}

/* Shimmer */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

/* Crown Float */
@keyframes float-crown {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.animate-crown {
    animation: float-crown 3s ease-in-out infinite;
}

/* Particle Rise */
@keyframes particle-rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-20px) scale(0); opacity: 0; }
}

.particle {
    position: absolute;
    background: #fbbf24;
    border-radius: 50%;
    pointer-events: none;
    animation: particle-rise 2s infinite;
}

/* Stripes Animation */
@keyframes move-stripes {
    0% { background-position: 0 0; }
    100% { background-position: 56px 0; }
}

.animate-stripes {
    animation: move-stripes 1s linear infinite;
}

/* Fade Up Reveal */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal Animation - Elemente sind standardmäßig sichtbar für No-JS */
.reveal {
    opacity: 1;
}

/* Nur wenn JS läuft, werden Elemente initial versteckt */
.js-enabled .reveal {
    opacity: 0;
}

.js-enabled .reveal.active,
.reveal.active {
    opacity: 1;
    animation: fadeUp 0.8s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.1s !important; }
.reveal-delay-2 { animation-delay: 0.2s !important; }
.reveal-delay-3 { animation-delay: 0.3s !important; }
.reveal-delay-4 { animation-delay: 0.4s !important; }

/* Icon Bounce */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-bounce:hover {
    animation: iconBounce 0.6s ease infinite;
}

/* Badge Pop */
@keyframes badgePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ========================================
   PARALLAX
======================================== */
.parallax {
    will-change: transform;
}

/* ========================================
   CUSTOM GRADIENTS
======================================== */
.bg-gradient-radial {
    background: radial-gradient(circle, var(--tw-gradient-stops));
}

/* Phone Glow Effect - Hero Section */
/* Glow wird jetzt direkt im HTML mit Tailwind-Klassen gemacht */

/* ========================================
   PARTNER MARQUEE - ENDLESS LOOP
======================================== */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
}

/* Endless Loop - Links nach Rechts */
@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.marquee-left {
    animation: marquee-scroll-left 40s linear infinite;
}

/* Endless Loop - Rechts nach Links */
@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-right {
    animation: marquee-scroll-right 35s linear infinite;
}

/* Endless Loop - Langsam */
.marquee-left-slow {
    animation: marquee-scroll-left 55s linear infinite;
}

/* Pause on Hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* ========================================
   GAME FEEL / MICRO-INTERACTIONS
======================================== */
.click-burst {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(251,191,36,1) 0%, rgba(251,191,36,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    animation: burst 0.4s ease-out forwards;
    box-shadow: 0 0 10px rgba(251,191,36,0.5);
}

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

/* ========================================
   WORDPRESS SPECIFIC
======================================== */

/* Navigation Menu Overrides */
.menu-item a {
    display: block;
}

/* Pagination */
.nav-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.nav-links a,
.nav-links span {
    padding: 0.5rem 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    border-color: var(--sf-gold);
    color: var(--sf-gold);
}

.nav-links .current {
    background: var(--sf-gold);
    color: #000;
    border-color: var(--sf-gold);
}

/* WordPress Core Elements */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 1.5rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.comment-author {
    color: var(--sf-gold);
    font-weight: bold;
}

.comment-content {
    margin-top: 0.5rem;
    color: #a3a3a3;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--sf-gold);
}

button,
input[type="submit"] {
    background: var(--sf-gold);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sport);
    font-size: 1.25rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Generic WP Buttons Only */
.wp-block-button__link:hover,
input[type="submit"]:hover {
    background: #fff;
    color: #000;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ========================================
   MOBILE MENU
======================================== */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.open {
    max-height: 500px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .skew-box {
        transform: none;
    }
    
    .unskew {
        transform: none;
    }
}

/* ========================================
   ADMIN BAR FIX
======================================== */
.admin-bar nav.fixed {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar nav.fixed {
        top: 46px;
    }
}

/* ========================================
   ELEMENTOR EDITOR / PREVIEW FIXES
   (Navbar soll beim Bauen nicht über dem Canvas liegen)
======================================== */
html.elementor-editor-active nav.fixed,
body.elementor-editor-active nav.fixed,
html.elementor-preview nav.fixed,
body.elementor-preview nav.fixed,
html.elementor-editor-preview nav.fixed,
body.elementor-editor-preview nav.fixed {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 1 !important;
    backdrop-filter: none !important;
}

html.elementor-editor-active main,
body.elementor-editor-active main,
html.elementor-preview main,
body.elementor-preview main {
    padding-top: 0 !important;
}

/* ========================================
   HYBRID THRONE LEADERBOARD
======================================== */

/* Table container */
.ht-table { width: 100%; display: flex; flex-direction: column; gap: 0.6rem; }

/* Shared left block */
.ht-left { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 2; min-width: 0; }

/* ── TOP 3 CARDS ── */
.ht-card {
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    overflow: visible;
    border-radius: 18px;
    z-index: 10;
    isolation: isolate;
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, filter 0.35s ease;
}

.ht-card:hover {
    transform: translateY(-8px) rotateX(var(--ht-tilt-x, 2deg)) rotateY(var(--ht-tilt-y, -1.5deg)) scale(1.018) !important;
    filter: saturate(1.12) brightness(1.05);
}

.ht-card > .ht-left,
.ht-card > .ht-score {
    transform: translateZ(34px);
}

.ht-card .ht-particles {
    transform: translateZ(18px);
}

.ht-card::before,
.ht-card::after {
    pointer-events: none;
}

/* Rank 3 – Bronze */
.ht-card.ht-rank-3 {
    height: 98px; margin-bottom: 0.7rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at 16% 16%, rgba(205,127,50,0.32), transparent 35%),
        linear-gradient(135deg, rgba(20,10,4,0.96) 0%, rgba(4,4,5,0.98) 72%);
    box-shadow:
        0 22px 55px rgba(0,0,0,0.55),
        0 10px 35px rgba(205,127,50,0.16),
        inset 0 1px 0 rgba(255,255,255,0.16),
        inset 0 -18px 28px rgba(0,0,0,0.35);
}
.ht-card.ht-rank-3.ht-visible { animation: htSlam 0.6s cubic-bezier(0.16,1,0.3,1) forwards, htFloat 6s ease-in-out infinite 0.6s; }
.ht-card.ht-rank-3::before {
    content:''; position:absolute; inset:-2px;
    background: linear-gradient(115deg,#3b1d0a,#cd7f32,#fff0c2,#a0522d,#3b1d0a);
    background-size:400% 400%; z-index:-2; border-radius:20px; animation: htBorderFlow 4s linear infinite;
    filter: drop-shadow(0 0 14px rgba(205,127,50,0.34));
}
.ht-card.ht-rank-3::after {
    content:''; position:absolute; inset:2px;
    background:
        linear-gradient(105deg, rgba(255,255,255,0.12), transparent 18%, transparent 72%, rgba(205,127,50,0.12)),
        radial-gradient(circle at 20% 20%, rgba(205,127,50,0.18), transparent 42%),
        linear-gradient(145deg,#1a0f05,#050505 68%);
    border-radius:16px; z-index:-1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -28px 36px rgba(0,0,0,0.42);
}

/* Rank 2 – Silver */
.ht-card.ht-rank-2 {
    height: 116px; margin-bottom: 0.8rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.12), transparent 26%),
        radial-gradient(circle at 18% 12%, rgba(226,232,240,0.28), transparent 38%),
        linear-gradient(135deg, rgba(12,16,22,0.98) 0%, rgba(4,5,7,0.98) 74%);
    box-shadow:
        0 28px 65px rgba(0,0,0,0.62),
        0 12px 38px rgba(192,192,192,0.18),
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -20px 34px rgba(0,0,0,0.42);
}
.ht-card.ht-rank-2.ht-visible { animation: htSlam 0.6s cubic-bezier(0.16,1,0.3,1) forwards, htFloatWild 4s ease-in-out infinite 0.6s; }
.ht-card.ht-rank-2::before {
    content:''; position:absolute; inset:-2px;
    background: linear-gradient(115deg,#52606d,#ffffff,#c0c0c0,#7dd3fc,#52606d);
    background-size:350% 350%; z-index:-2; border-radius:20px; animation: htBorderFast 2.4s linear infinite;
    filter: drop-shadow(0 0 16px rgba(226,232,240,0.32));
}
.ht-card.ht-rank-2::after {
    content:''; position:absolute; inset:2px;
    background:
        linear-gradient(105deg, rgba(255,255,255,0.16), transparent 20%, transparent 72%, rgba(148,163,184,0.13)),
        radial-gradient(circle at 20% 20%, rgba(226,232,240,0.18), transparent 44%),
        linear-gradient(145deg,#101821,#050505 70%);
    border-radius:16px; z-index:-1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -30px 38px rgba(0,0,0,0.44);
}

/* Rank 1 – Gold */
.ht-card.ht-rank-1 {
    height: 148px; margin-bottom: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), transparent 25%),
        radial-gradient(circle at 18% 10%, rgba(255,215,0,0.38), transparent 36%),
        radial-gradient(circle at 82% 70%, rgba(251,191,36,0.16), transparent 36%),
        linear-gradient(135deg, rgba(44,31,0,0.98) 0%, rgba(3,3,4,0.98) 74%);
    box-shadow:
        0 34px 90px rgba(0,0,0,0.68),
        0 0 68px rgba(255,215,0,0.28),
        0 14px 46px rgba(251,191,36,0.18),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -24px 42px rgba(0,0,0,0.46);
}
.ht-card.ht-rank-1.ht-visible { animation: htSlam 0.6s cubic-bezier(0.16,1,0.3,1) forwards, htGodFloat 3s cubic-bezier(0.45,0.05,0.55,0.95) infinite 0.6s; }
.ht-card.ht-rank-1::before {
    content:''; position:absolute; inset:-3px;
    background: linear-gradient(90deg,#ffd700,#fff,#ff8c00,#ffd700,#fff);
    background-size:500% 500%; z-index:-2; border-radius:22px;
    animation: htBorderHyper 1.7s linear infinite; filter: drop-shadow(0 0 18px rgba(255,215,0,0.5));
}
.ht-card.ht-rank-1::after {
    content:''; position:absolute; inset:3px;
    background:
        linear-gradient(105deg, rgba(255,255,255,0.18), transparent 18%, transparent 68%, rgba(255,215,0,0.16)),
        radial-gradient(circle at 21% 20%, rgba(255,215,0,0.22), transparent 40%),
        linear-gradient(145deg,#2a2000,#000 72%);
    border-radius:17px; z-index:-1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -36px 46px rgba(0,0,0,0.48);
}

/* ── AVATARS ── */
.ht-avatar {
    border-radius:50%;
    background:
        radial-gradient(circle at 35% 24%, rgba(255,255,255,0.16), transparent 30%),
        radial-gradient(circle at center, #101010, #000 70%);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    flex-shrink:0;
    transform: translateZ(42px);
    text-shadow: 0 2px 0 rgba(0,0,0,0.7), 0 0 18px currentColor;
}

.ht-avatar.ht-rank-3 { width:52px; height:52px; font-size:1.65rem; color:#cd7f32; box-shadow: 0 16px 28px rgba(0,0,0,0.45), 0 0 22px rgba(205,127,50,0.34), inset 0 0 14px rgba(205,127,50,0.12); }
.ht-avatar.ht-rank-3::before, .ht-avatar.ht-rank-3::after { content:''; position:absolute; border-radius:50%; border:2px solid transparent; }
.ht-avatar.ht-rank-3::before { inset:-3px; border-top-color:#cd7f32; border-right-color:#cd7f32; animation: htSpin 4s linear infinite; }
.ht-avatar.ht-rank-3::after { inset:-7px; border-bottom-color:rgba(205,127,50,0.4); border-left-color:rgba(205,127,50,0.4); animation: htSpin 6s linear infinite reverse; }

.ht-avatar.ht-rank-2 { width:64px; height:64px; font-size:2.15rem; color:#e5e7eb; box-shadow: 0 18px 32px rgba(0,0,0,0.5), 0 0 28px rgba(226,232,240,0.34), inset 0 0 16px rgba(226,232,240,0.12); }
.ht-avatar.ht-rank-2::before, .ht-avatar.ht-rank-2::after { content:''; position:absolute; border-radius:50%; border:2px solid transparent; }
.ht-avatar.ht-rank-2::before { inset:-3px; border-top-color:#fff; border-right-color:#c0c0c0; animation: htSpinFast 2s linear infinite; }
.ht-avatar.ht-rank-2::after { inset:-7px; border-bottom-color:#c0c0c0; border-left-color:rgba(192,192,192,0.3); animation: htSpinFast 3s linear infinite reverse; }

.ht-avatar.ht-rank-1 { width:78px; height:78px; font-size:2.7rem; color:#ffd700; box-shadow: 0 22px 38px rgba(0,0,0,0.54), 0 0 42px rgba(255,215,0,0.55), inset 0 0 20px rgba(255,215,0,0.16); }
.ht-avatar.ht-rank-1::before, .ht-avatar.ht-rank-1::after { content:''; position:absolute; border-radius:50%; border:2px solid transparent; }
.ht-avatar.ht-rank-1::before { inset:-4px; border-color:#ffd700; border-right-color:transparent; border-left-color:transparent; animation: htSpinHyper 1s linear infinite; }
.ht-avatar.ht-rank-1::after { inset:-9px; border-color:rgba(255,255,255,0.7); border-top-color:transparent; border-bottom-color:transparent; animation: htSpinHyper 1.5s linear infinite reverse; filter:blur(1px); }
.ht-avatar.ht-rank-1 .ht-core-ring { position:absolute; inset:-14px; border-radius:50%; border:1px dashed rgba(255,215,0,0.4); animation: htSpin 10s linear infinite; }

/* ── RANK NUMBERS ── */
.ht-rank-num {
    font-family:'Teko',var(--font-sport),sans-serif;
    font-weight:900;
    font-style:italic;
    line-height:0.92;
    flex-shrink:0;
    text-align:center;
    width:2.9rem;
    transform: translateZ(52px) skewX(-8deg);
    letter-spacing:-0.04em;
}
.ht-rank-num.ht-rank-3 { font-size:3.35rem; color:#cd7f32; text-shadow: 0 2px 0 #5c2d11, 0 8px 18px rgba(0,0,0,0.52), 0 0 18px rgba(205,127,50,0.52); }
.ht-rank-num.ht-rank-2 { font-size:4.1rem; color:#f8fafc; text-shadow: 0 2px 0 #64748b, 0 10px 22px rgba(0,0,0,0.56), 0 0 22px rgba(226,232,240,0.55); }
.ht-rank-num.ht-rank-1 { font-size:5.25rem; color:#ffd700; text-shadow: 0 3px 0 #8a5200, 0 12px 26px rgba(0,0,0,0.62), 0 0 34px rgba(255,215,0,0.78); }

/* ── NAMES ── */
.ht-name { font-weight:800; letter-spacing:1px; text-transform:uppercase; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ht-name.ht-rank-3 { font-size:1.42rem; background: linear-gradient(to right,#fff,#f4c38a,#cd7f32); -webkit-background-clip:text; color:transparent; text-shadow: 0 10px 24px rgba(0,0,0,0.42); }
.ht-name.ht-rank-2 { font-size:1.64rem; background: linear-gradient(to right,#fff,#e5e7eb,#93c5fd); -webkit-background-clip:text; color:transparent; text-shadow: 0 10px 24px rgba(0,0,0,0.46); }
.ht-name.ht-rank-1 { font-size:2.05rem; background: linear-gradient(to right,#fff,#ffd700,#fff,#fbbf24); -webkit-background-clip:text; color:transparent; animation: htShineText 2s linear infinite; background-size:220% auto; text-shadow: 0 12px 28px rgba(0,0,0,0.5); }

/* ── SCORES ── */
.ht-score { font-family:'Teko',var(--font-sport),sans-serif; font-weight:900; z-index:2; flex-shrink:0; }
.ht-score.ht-rank-3 { font-size:2.45rem; color:#cd7f32; text-shadow: 0 2px 0 #5c2d11, 0 8px 18px rgba(0,0,0,0.55), 0 0 16px rgba(205,127,50,0.42); }
.ht-score.ht-rank-2 { font-size:2.95rem; color:#f8fafc; text-shadow: 0 2px 0 #64748b, 0 10px 22px rgba(0,0,0,0.58), 0 0 22px rgba(226,232,240,0.5); animation: htPulse 2s infinite; }
.ht-score.ht-rank-1 { font-size:3.65rem; color:#ffd700; text-shadow: 0 3px 0 #8a5200, 0 14px 26px rgba(0,0,0,0.62), 0 0 34px rgba(255,215,0,0.72); animation: htPulseHyper 1s infinite alternate; }

/* ── BADGES ── */
.ht-badge { font-family:'Orbitron',sans-serif; letter-spacing:0.15em; display:inline-block; border-radius:999px; text-align:center; white-space:nowrap; transform: translateZ(38px); }
.ht-badge.ht-rank-3 { font-size:0.6rem; color:#f4c38a; background:linear-gradient(90deg,rgba(205,127,50,0.18),rgba(0,0,0,0.2)); padding:4px 9px; border:1px solid rgba(205,127,50,0.38); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 12px rgba(205,127,50,0.14); }
.ht-badge.ht-rank-2 { font-size:0.65rem; color:#fff; background:linear-gradient(90deg,rgba(226,232,240,0.18),rgba(14,165,233,0.08)); padding:4px 10px; border:1px solid rgba(226,232,240,0.36); box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 0 14px rgba(226,232,240,0.18); }
.ht-badge.ht-rank-1 { font-size:0.75rem; color:#000; background:linear-gradient(90deg,#ffd700,#fff2a8,#fbbf24); padding:5px 12px; border:1px solid rgba(255,255,255,0.8); box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 0 18px rgba(255,215,0,0.45); font-weight:900; animation: htBadgeFlash 2s infinite; }

/* ── PARTICLES ── */
.ht-particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; border-radius:14px; z-index:0; }
.ht-particle { position:absolute; border-radius:50%; opacity:0; }
.ht-particles.ht-rank-3 .ht-particle { width:3px; height:3px; background:#cd7f32; animation: htRise 3s infinite ease-in; }
.ht-particles.ht-rank-2 .ht-particle { width:2px; height:12px; background:#c0c0c0; animation: htRainUp 1.5s infinite linear; border-radius:2px; }
.ht-particles.ht-rank-1 .ht-particle { background:#ffd700; box-shadow: 0 0 8px #ffd700; animation: htExplode 1s infinite ease-out; }

/* ── GOD CROWN ── */
.ht-crown-god {
    position:absolute; font-size:10rem; opacity:0.12; right:-1.5rem; top:50%;
    transform:translateY(-50%) rotate(15deg); pointer-events:none;
    animation: htGodCrown 2s cubic-bezier(0.175,0.885,0.32,1.275) infinite alternate;
    background: linear-gradient(to bottom,#ffd700,#ff8c00,transparent);
    -webkit-background-clip:text; color:transparent; filter: drop-shadow(0 0 15px rgba(255,215,0,0.4));
}

/* ── TOP 10 (Ranks 4-10) ── */
.ht-row-top10 {
    height:70px; border-left:3px solid rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:space-between;
    padding:0 1.5rem; border-radius:8px; margin-bottom:0.4rem;
    background: linear-gradient(90deg,rgba(255,255,255,0.05),rgba(255,255,255,0.01));
    border-top:1px solid rgba(255,255,255,0.04); border-bottom:1px solid rgba(255,255,255,0.02);
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    position:relative; overflow:hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.ht-row-top10.ht-visible { animation: htSlam 0.6s cubic-bezier(0.16,1,0.3,1) forwards, htPulseTop10 4s infinite ease-in-out 0.6s; }
.ht-row-top10::before {
    content:''; position:absolute; top:0; left:-100%; width:50%; height:100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.04),transparent);
    transform:skewX(-20deg); transition:left 0.5s;
}
.ht-row-top10:hover {
    transform:scale(1.02) translateX(4px); border-left-color:#0ea5e9;
    background: linear-gradient(90deg,rgba(14,165,233,0.12),rgba(255,255,255,0.02));
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.ht-row-top10:hover::before { left:200%; }

.ht-rank-top10 { font-size:1.8rem; color:#fff; font-family:'Teko',var(--font-sport),sans-serif; width:2rem; text-align:center; text-shadow: 0 0 8px rgba(255,255,255,0.15); flex-shrink:0; }
.ht-row-top10:hover .ht-rank-top10 { color:#0ea5e9; }

.ht-avatar-top10 {
    width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center;
    font-weight:700; color:#bbb; font-size:1rem; flex-shrink:0; transition: border-color 0.3s, color 0.3s;
}
.ht-row-top10:hover .ht-avatar-top10 { border-color:rgba(14,165,233,0.4); color:#0ea5e9; }

.ht-name-top10 { color:#e2e8f0; font-size:1.15rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; transition:color 0.3s; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ht-row-top10:hover .ht-name-top10 { color:#fff; }

.ht-badge-top10 { font-family:'Orbitron',sans-serif; font-size:0.55rem; color:#94a3b8; background:rgba(255,255,255,0.04); padding:1px 5px; border-radius:2px; letter-spacing:0.1em; transition:all 0.3s; }
.ht-row-top10:hover .ht-badge-top10 { color:#0ea5e9; background:rgba(14,165,233,0.08); }

.ht-score-top10 { font-size:1.8rem; color:#e2e8f0; font-family:'Teko',var(--font-sport),sans-serif; font-weight:700; transition:color 0.3s; flex-shrink:0; }
.ht-row-top10:hover .ht-score-top10 { color:#0ea5e9; }

/* ── STANDARD (Ranks > 10) ── */
.ht-row-std {
    min-height:55px; border-left:2px solid transparent;
    display:flex; align-items:center; justify-content:space-between;
    padding:0.4rem 1.5rem; border-radius:6px; margin-bottom:0.2rem;
    background:rgba(255,255,255,0.012); border:1px solid rgba(255,255,255,0.025);
    transition:all 0.3s ease; cursor:pointer;
}
.ht-row-std:hover {
    background:rgba(255,255,255,0.035); transform:scale(1.01);
    border-left-color:#555; box-shadow: 0 0 8px rgba(0,0,0,0.4);
    min-height:72px;
}
.ht-rank-std { font-size:1.3rem; color:#666; font-family:'Teko',var(--font-sport),sans-serif; width:2rem; text-align:center; transition:color 0.3s; flex-shrink:0; }
.ht-row-std:hover .ht-rank-std { color:#aaa; }
.ht-avatar-std { width:26px; height:26px; border-radius:50%; background:#222; border:1px solid #444; display:flex; align-items:center; justify-content:center; font-size:0.7rem; font-weight:700; color:#888; flex-shrink:0; transition:border-color 0.3s; }
.ht-row-std:hover .ht-avatar-std { border-color:#666; color:#bbb; }
.ht-name-std { color:#888; font-size:0.95rem; font-weight:600; text-transform:uppercase; transition:color 0.3s; line-height:1.2; }
.ht-row-std:hover .ht-name-std { color:#ccc; }
.ht-badge-std { font-family:'Orbitron',sans-serif; font-size:0.5rem; color:#777; background:#111; padding:1px 5px; border-radius:2px; letter-spacing:0.1em; border:1px solid #333; }
.ht-score-std { font-size:1.5rem; color:#777; font-family:'Teko',var(--font-sport),sans-serif; transition:color 0.3s; flex-shrink:0; }
.ht-row-std:hover .ht-score-std { color:#fff; }

/* ── CURRENT PLAYER HIGHLIGHT ── */
.ht-row-you {
    position: relative;
    border-left-color: #0ea5e9 !important;
    background: linear-gradient(90deg, rgba(14,165,233,0.16), rgba(251,191,36,0.07), rgba(255,255,255,0.02)) !important;
    box-shadow: 0 0 0 1px rgba(14,165,233,0.35), 0 0 30px rgba(14,165,233,0.18), inset 0 0 24px rgba(14,165,233,0.08) !important;
    isolation: isolate;
}

.ht-row-you::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #0ea5e9, #fbbf24, #38bdf8, #0ea5e9);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -2;
    opacity: 0.65;
    animation: htYouBorder 2.4s linear infinite;
}

.ht-row-you::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(90deg, rgba(2,6,23,0.96), rgba(8,47,73,0.82), rgba(2,6,23,0.96));
    border-radius: inherit;
    z-index: -1;
}

.ht-card.ht-row-you::before {
    background: linear-gradient(90deg, #0ea5e9, #fbbf24, #38bdf8, #0ea5e9) !important;
    background-size: 300% 300% !important;
    animation: htYouBorder 2.4s linear infinite !important;
    opacity: 0.82;
    filter: drop-shadow(0 0 12px rgba(56,189,248,0.45));
}

.ht-card.ht-row-you::after {
    background: radial-gradient(circle at 50% 50%, rgba(8,47,73,0.88), #020202 72%) !important;
}

.ht-row-you:hover {
    transform: scale(1.02) translateX(4px);
    border-left-color: #fbbf24 !important;
    box-shadow: 0 0 0 1px rgba(251,191,36,0.5), 0 0 40px rgba(14,165,233,0.28), 0 0 22px rgba(251,191,36,0.16) !important;
}

.ht-row-you .ht-rank-num,
.ht-row-you .ht-rank-top10,
.ht-row-you .ht-rank-std,
.ht-row-you .ht-score,
.ht-row-you .ht-score-top10,
.ht-row-you .ht-score-std {
    color: #38bdf8 !important;
    text-shadow: 0 0 15px rgba(56,189,248,0.65) !important;
}

.ht-row-you .ht-name,
.ht-row-you .ht-name-top10,
.ht-row-you .ht-name-std {
    color: #fff !important;
    background: linear-gradient(90deg, #fff, #38bdf8, #fbbf24, #fff);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: htYouText 2.6s linear infinite;
}

.ht-row-you .ht-avatar,
.ht-row-you .ht-avatar-top10,
.ht-row-you .ht-avatar-std {
    border-color: rgba(56,189,248,0.85) !important;
    color: #38bdf8 !important;
    box-shadow: 0 0 22px rgba(56,189,248,0.4) !important;
}

.ht-you-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 0.45rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    line-height: 1;
    background: linear-gradient(90deg, #0ea5e9, #fbbf24);
    color: #000;
    padding: 3px 6px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 0 12px rgba(14,165,233,0.5);
    vertical-align: middle;
    animation: htYouBadge 1.4s ease-in-out infinite;
}

/* ── ANIM ROW (initial hidden) ── */
.ht-anim { opacity:0; transform:translateY(25px); }
.ht-anim.ht-visible { animation: htSlam 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }

/* ── KEYFRAMES ── */
@keyframes htSlam { 0%{opacity:0;transform:translateY(50px) scale(0.9)} 100%{opacity:1;transform:translateY(0) scale(1)} }
@keyframes htFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@keyframes htFloatWild { 0%,100%{transform:translateY(0) rotate(0deg)} 25%{transform:translateY(-6px) rotate(0.4deg)} 75%{transform:translateY(-6px) rotate(-0.4deg)} }
@keyframes htGodFloat { 0%,100%{transform:translateY(0) scale(1) rotateX(0) rotateY(0)} 25%{transform:translateY(-10px) scale(1.015) rotateX(1.5deg) rotateY(1.5deg)} 75%{transform:translateY(-10px) scale(1.015) rotateX(-1.5deg) rotateY(-1.5deg)} }
@keyframes htBorderFlow { 0%{background-position:0% 50%} 100%{background-position:100% 50%} }
@keyframes htBorderFast { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
@keyframes htBorderHyper { 0%{background-position:0% 50%} 100%{background-position:300% 50%} }
@keyframes htSpin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }
@keyframes htSpinFast { 0%{transform:rotate(0)} 100%{transform:rotate(720deg)} }
@keyframes htSpinHyper { 0%{transform:rotate(0) scale(1)} 50%{transform:rotate(180deg) scale(1.08)} 100%{transform:rotate(360deg) scale(1)} }
@keyframes htPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes htPulseHyper { 0%{transform:scale(1)} 100%{transform:scale(1.12)} }
@keyframes htShineText { 0%{background-position:200% center} 100%{background-position:-200% center} }
@keyframes htBadgeFlash { 0%,100%{background:#ffd700;color:#000} 50%{background:#fff;color:#000;box-shadow:0 0 25px #fff} }
@keyframes htGodCrown { 0%{transform:translateY(-50%) rotate(15deg) scale(1);opacity:0.08} 100%{transform:translateY(-50%) rotate(25deg) scale(1.15);opacity:0.2} }
@keyframes htRise { 0%{bottom:-8px;opacity:0;transform:scale(0.5)} 50%{opacity:0.7} 100%{bottom:100%;opacity:0;transform:scale(1.3)} }
@keyframes htRainUp { 0%{bottom:-15px;opacity:0} 10%{opacity:0.8} 90%{opacity:0.8} 100%{bottom:110%;opacity:0} }
@keyframes htExplode { 0%{bottom:-8px;opacity:0;transform:scale(0.1) translateX(0)} 10%{opacity:1} 100%{bottom:110%;opacity:0;transform:scale(1.8) translateX(var(--drift))} }
@keyframes htPulseTop10 { 0%,100%{border-left-color:rgba(255,255,255,0.08);box-shadow:0 3px 10px rgba(0,0,0,0.15)} 50%{border-left-color:rgba(255,255,255,0.25);box-shadow:0 3px 15px rgba(255,255,255,0.04)} }
@keyframes htYouBorder { 0%{background-position:0% 50%;filter:hue-rotate(0deg)} 100%{background-position:300% 50%;filter:hue-rotate(25deg)} }
@keyframes htYouText { 0%{background-position:220% center} 100%{background-position:-220% center} }
@keyframes htYouBadge { 0%,100%{transform:translateY(0) scale(1);box-shadow:0 0 12px rgba(14,165,233,0.45)} 50%{transform:translateY(-1px) scale(1.06);box-shadow:0 0 22px rgba(251,191,36,0.55)} }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ht-card { padding:0 1rem; }
    .ht-left { gap:0.7rem; }
    .ht-card.ht-rank-1 { height:110px; }
    .ht-rank-num.ht-rank-1 { font-size:3.2rem; }
    .ht-avatar.ht-rank-1 { width:55px; height:55px; font-size:1.8rem; }
    .ht-name.ht-rank-1 { font-size:1.4rem; }
    .ht-score.ht-rank-1 { font-size:2.5rem; }
    .ht-crown-god { font-size:7rem; right:-1rem; }
    .ht-card.ht-rank-2 { height:90px; }
    .ht-rank-num.ht-rank-2 { font-size:2.8rem; }
    .ht-avatar.ht-rank-2 { width:45px; height:45px; font-size:1.5rem; }
    .ht-name.ht-rank-2 { font-size:1.2rem; }
    .ht-score.ht-rank-2 { font-size:2rem; }
    .ht-card.ht-rank-3 { height:75px; }
    .ht-rank-num.ht-rank-3 { font-size:2.2rem; }
    .ht-avatar.ht-rank-3 { width:38px; height:38px; font-size:1.2rem; }
    .ht-name.ht-rank-3 { font-size:1.05rem; }
    .ht-score.ht-rank-3 { font-size:1.8rem; }
    .ht-badge { font-size:0.5rem !important; padding:1px 4px !important; }
    .ht-row-top10 { height:60px; padding:0 1rem; }
    .ht-rank-top10 { font-size:1.5rem; }
    .ht-avatar-top10 { width:30px; height:30px; font-size:0.85rem; }
    .ht-name-top10 { font-size:0.95rem; }
    .ht-score-top10 { font-size:1.5rem; }
    .ht-row-std { min-height:48px; padding:0.3rem 1rem; }
    .ht-row-std:hover { min-height:65px; }
}

@media (max-width: 480px) {
    .ht-left { gap:0.5rem; }
    .ht-card, .ht-row-top10, .ht-row-std { padding-left:0.6rem; padding-right:0.6rem; }
    .ht-card.ht-rank-1 { height:95px; }
    .ht-rank-num.ht-rank-1 { font-size:2.5rem; width:1.8rem; }
    .ht-avatar.ht-rank-1 { width:42px; height:42px; font-size:1.5rem; }
    .ht-name.ht-rank-1 { font-size:1.1rem; }
    .ht-score.ht-rank-1 { font-size:2rem; }
    .ht-crown-god { font-size:5rem; right:-0.3rem; }
    .ht-card.ht-rank-2 { height:78px; }
    .ht-rank-num.ht-rank-2 { font-size:2.2rem; width:1.8rem; }
    .ht-avatar.ht-rank-2 { width:38px; height:38px; font-size:1.2rem; }
    .ht-name.ht-rank-2 { font-size:1rem; }
    .ht-score.ht-rank-2 { font-size:1.7rem; }
    .ht-card.ht-rank-3 { height:68px; }
    .ht-rank-num.ht-rank-3 { font-size:1.8rem; width:1.8rem; }
    .ht-avatar.ht-rank-3 { width:32px; height:32px; font-size:1rem; }
    .ht-name.ht-rank-3 { font-size:0.9rem; }
    .ht-score.ht-rank-3 { font-size:1.5rem; }
    .ht-rank-top10 { font-size:1.3rem; width:1.5rem; }
    .ht-avatar-top10 { width:26px; height:26px; font-size:0.75rem; }
    .ht-name-top10 { font-size:0.85rem; }
    .ht-score-top10 { font-size:1.3rem; }
    .ht-badge-top10 { font-size:0.45rem; padding:1px 3px; }
    .ht-rank-std { font-size:1.1rem; width:1.5rem; }
}

/* ========================================
   RANKING PAGE FILTERS
======================================== */
#ht-season-select {
    background-image: none;
}
#ht-season-select option {
    background: #1a1a1a;
    color: #fff;
}
.ht-searchable { transition: opacity 0.2s ease; }

/* ========================================
   LEADERBOARD EMPTY STATE (New Season)
======================================== */
.ht-empty-state {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at 50% 120%, rgba(255,215,0,0.06) 0%, transparent 60%),
                linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(255,215,0,0.08);
    box-shadow: 0 0 80px rgba(255,215,0,0.04) inset;
}

.ht-empty-state::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), transparent 40%, transparent 60%, rgba(255,215,0,0.1));
    z-index: 0;
    pointer-events: none;
}

.ht-empty-state::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

/* Particles */
.ht-empty-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 16px;
    z-index: 0;
}

.ht-empty-particles .ht-particle {
    position: absolute;
    border-radius: 50%;
    background: #ffd700;
    opacity: 0;
    animation: htEmptyRise 4s infinite ease-in;
}

@keyframes htEmptyRise {
    0%   { bottom: -10px; opacity: 0; transform: scale(0.3) translateX(0); }
    15%  { opacity: 0.6; }
    85%  { opacity: 0.3; }
    100% { bottom: 105%; opacity: 0; transform: scale(1.2) translateX(var(--drift, 0px)); }
}

/* Icon */
.ht-empty-icon {
    position: relative;
    z-index: 1;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 25px rgba(255,215,0,0.5)) drop-shadow(0 0 60px rgba(255,215,0,0.2));
    animation: htEmptyPunch 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}

@keyframes htEmptyPunch {
    0%, 100% { transform: scale(1) rotate(0deg); }
    15%      { transform: scale(1.2) rotate(-8deg); }
    30%      { transform: scale(0.95) rotate(2deg); }
    45%      { transform: scale(1.05) rotate(-1deg); }
    60%      { transform: scale(1); }
}

/* Headline */
.ht-empty-headline {
    position: relative;
    z-index: 1;
    font-family: 'Teko', var(--font-sport), sans-serif;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: htShineText 3s linear infinite;
    text-shadow: none;
}

/* Subtitle */
.ht-empty-sub {
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,215,0,0.6);
    margin-bottom: 2.5rem;
    animation: htEmptySubPulse 3s ease-in-out infinite;
}

@keyframes htEmptySubPulse {
    0%, 100% { opacity: 0.6; text-shadow: 0 0 0 transparent; }
    50%      { opacity: 1; text-shadow: 0 0 20px rgba(255,215,0,0.3); }
}

/* CTA Button */
.ht-empty-cta {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: 'Teko', var(--font-sport), sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffd700;
    padding: 0.7rem 2.5rem;
    border: 2px solid rgba(255,215,0,0.4);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.ht-empty-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.ht-empty-cta:hover {
    border-color: #ffd700;
    color: #000;
    background: #ffd700;
    box-shadow: 0 0 30px rgba(255,215,0,0.3), 0 0 60px rgba(255,215,0,0.1);
    transform: scale(1.05);
}

.ht-empty-cta:hover::before { left: 200%; }

/* Decorative ring behind icon */
.ht-empty-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px dashed rgba(255,215,0,0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    animation: htSpin 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.ht-empty-ring-inner {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255,215,0,0.06);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    animation: htSpin 15s linear infinite reverse;
    z-index: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ht-empty-state { min-height: 350px; padding: 3rem 1.5rem; }
    .ht-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
    .ht-empty-headline { font-size: 3rem; }
    .ht-empty-sub { font-size: 0.7rem; letter-spacing: 0.18em; margin-bottom: 2rem; }
    .ht-empty-cta { font-size: 1.2rem; padding: 0.6rem 2rem; }
    .ht-empty-ring { width: 140px; height: 140px; }
    .ht-empty-ring-inner { width: 90px; height: 90px; }
}

@media (max-width: 480px) {
    .ht-empty-state { min-height: 300px; padding: 2.5rem 1rem; }
    .ht-empty-icon { font-size: 2.8rem; margin-bottom: 0.8rem; }
    .ht-empty-headline { font-size: 2.4rem; }
    .ht-empty-sub { font-size: 0.6rem; letter-spacing: 0.12em; margin-bottom: 1.5rem; }
    .ht-empty-cta { font-size: 1rem; padding: 0.5rem 1.5rem; }
    .ht-empty-ring { width: 110px; height: 110px; }
    .ht-empty-ring-inner { width: 70px; height: 70px; }
}

