/* ================================================
   RIVALBOOST — STARTUP-TIER LANDING PAGE
   Typography: Syne (hero) + Outfit (UI) + Inter (navbar compat)
   Aesthetic: Cinematic SaaS × Esports Broadcast
   ================================================ */

/* ===== TOKENS ===== */
:root {
    --bg-deep: #060a14;
    --bg-surface: #0c1628;
    --bg-card: #0e1a30;
    --glass-bg-1: rgba(255,255,255,0.025);
    --glass-bg-2: rgba(255,255,255,0.05);
    --glass-bg-3: rgba(255,255,255,0.08);
    --glass-border-1: rgba(255,255,255,0.06);
    --glass-border-2: rgba(255,255,255,0.10);
    --glass-border-3: rgba(255,255,255,0.14);
    --glass-blur-1: 40px;
    --glass-blur-2: 24px;
    --glass-blur-3: 16px;
    --blue: #3b82f6;
    --blue-bright: #60a5fa;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --rose: #f43f5e;
    --green: #10b981;
    --gold: #f59e0b;
    --cta-accent: #F59E0B;
    --cta-accent-hover: #FBBF24;
    --cta-glow: rgba(245,158,11,0.35);
    --accent-glow: rgba(59,130,246,0.35);
    --purple-glow: rgba(139,92,246,0.25);
    --text-1: #f0f4f8;
    --text-2: #a8b8cc;
    --text-3: #7a8ba0;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --section-pad: 110px 20px;
    --max-w: 1140px;
    --radius: 16px;
    --radius-lg: 24px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* ===== GLASS ===== */
.glass-1 {
    background: var(--glass-bg-1);
    backdrop-filter: blur(var(--glass-blur-1));
    -webkit-backdrop-filter: blur(var(--glass-blur-1));
    border: 1px solid var(--glass-border-1);
    border-radius: var(--radius);
}
.glass-2 {
    background: var(--glass-bg-2);
    backdrop-filter: blur(var(--glass-blur-2));
    -webkit-backdrop-filter: blur(var(--glass-blur-2));
    border: 1px solid var(--glass-border-2);
    border-radius: var(--radius);
}
.glass-3 {
    background: var(--glass-bg-3);
    backdrop-filter: blur(var(--glass-blur-3));
    -webkit-backdrop-filter: blur(var(--glass-blur-3));
    border: 1px solid var(--glass-border-3);
    border-radius: var(--radius);
}
@supports not (backdrop-filter: blur(1px)) {
    .glass-1 { background: rgba(10,22,40,0.88); }
    .glass-2 { background: rgba(10,22,40,0.92); }
    .glass-3 { background: rgba(10,22,40,0.95); }
}

/* ===== GLOBAL ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-1);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== BACKGROUND LAYERS ===== */
/* Dot grid — Linear-inspired */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(148,163,184,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
}
/* Gradient mesh orbs */
.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    will-change: transform;
}
.bg-orb--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
    top: -15%; left: -10%;
    animation: orb-1 55s ease-in-out infinite alternate;
}
@keyframes orb-1 {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(12vw,18vh) scale(1.15); }
    100% { transform: translate(6vw,8vh) scale(0.95); }
}
/* Cursor-following glow */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -250px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(59,130,246,0.08) 0%,
        rgba(139,92,246,0.04) 30%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    contain: strict;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.preloader.fade-out {
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
}
.preloader-bloom {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: bloom-pulse 2s ease-in-out infinite;
}
.preloader-logo {
    position: relative;
    width: 80px; height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    animation: logo-breathe 2s ease-in-out infinite;
}
@keyframes bloom-pulse { 0%,100%{transform:scale(1);opacity:0.4}50%{transform:scale(1.2);opacity:0.7} }
@keyframes logo-breathe { 0%,100%{transform:scale(1)}50%{transform:scale(1.05)} }

/* ===== HERO ===== */
.hp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hp-hero-text { position: relative; z-index: 2; }

/* Hero badge */
.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue-bright);
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}
.hp-hero-badge i { font-size: 0.6rem; }

/* Text reveal wrapper */
.text-reveal {
    overflow: hidden;
    display: block;
}
.text-reveal-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 0.9s var(--ease-out);
    transition-delay: var(--d, 0s);
}
.revealed .text-reveal-inner {
    transform: translateY(0);
}

.hp-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}
.gradient-text {
    background: linear-gradient(135deg, var(--blue-bright), var(--purple), var(--cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: grad-shift 6s ease infinite;
}
@keyframes grad-shift { 0%,100%{background-position:0% 50%}50%{background-position:100% 50%} }

.hp-hero-sub {
    font-size: 1.12rem;
    color: var(--text-2);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 400;
}
.hp-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--cta-accent), #d97706);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 24px var(--cta-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hp-btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--cta-accent-hover), #f59e0b);
    box-shadow: 0 8px 32px rgba(245,158,11,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.hp-btn-primary:active { transform: scale(0.97); }
.hp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid var(--glass-border-3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}
.hp-btn-ghost:hover {
    background: var(--glass-bg-2);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero trust row */
.hp-hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-3);
    font-weight: 500;
}
.hp-hero-trust-item .stars {
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 1px;
}
.hp-hero-trust-item i { font-size: 0.7rem; }
.hp-hero-trust-item .ic-green { color: var(--green); }
.trust-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ===== RANK CLIMB CARD ===== */
.rank-climb-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.rank-climb-card {
    width: 340px;
    border-radius: var(--radius-lg);
    background: rgba(12,22,40,0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    animation: card-float 7s ease-in-out infinite;
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
    box-shadow:
        0 32px 64px rgba(0,0,0,0.4),
        0 0 80px rgba(59,130,246,0.08),
        inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
}
.rank-climb-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(160deg, rgba(59,130,246,0.3), transparent 40%, transparent 60%, rgba(139,92,246,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
@keyframes card-float {
    0%,100% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-14px); }
}
.rank-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rank-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-1);
    font-family: var(--font-body);
}
.rank-card-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green);
}
.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16,185,129,0.4);
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.rank-card-body { padding: 20px; }

.rank-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    position: relative;
}
.rank-node-badge {
    width: 40px; height: 40px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    transition: filter 0.3s ease;
}
.rank-node-info { flex: 1; }
.rank-node-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-1);
}
.rank-node-status {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
}
.rank-node--done .rank-node-status { color: var(--green); }
.rank-node--done .rank-node-badge { filter: none; }
.rank-node--active .rank-node-status { color: var(--blue-bright); }
.rank-node--active .rank-node-badge {
    filter: drop-shadow(0 0 12px var(--accent-glow));
}
.rank-node--target .rank-node-status { color: var(--text-3); }
.rank-node--target .rank-node-badge { filter: saturate(0.4) brightness(0.6); }
.rank-node--target .rank-node-name { color: var(--text-2); }

.rank-connector {
    width: 2px;
    height: 16px;
    margin: 0 0 0 19px;
    border-radius: 1px;
}
.rank-connector--done { background: linear-gradient(180deg, var(--green), var(--green)); opacity: 0.4; }
.rank-connector--active {
    background: linear-gradient(180deg, var(--blue), var(--purple));
    opacity: 0.6;
    box-shadow: 0 0 8px var(--accent-glow);
}
.rank-connector--dim { background: rgba(255,255,255,0.06); }

.rank-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
}
.rank-card-footer i { margin-right: 4px; color: var(--text-2); }
.rank-card-footer span { color: var(--text-2); }

/* Glow behind card */
.rank-climb-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100%{opacity:0.6;transform:translate(-50%,-50%) scale(1)}50%{opacity:1;transform:translate(-50%,-50%) scale(1.15)} }

/* Hero particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-particles span {
    position: absolute;
    width: 2px; height: 2px;
    background: rgba(59,130,246,0.35);
    border-radius: 50%;
    animation: particle-up linear infinite;
}
.hero-particles span:nth-child(1) { left: 10%; animation-duration: 8s; }
.hero-particles span:nth-child(2) { left: 25%; animation-duration: 11s; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 40%; animation-duration: 7s; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 55%; animation-duration: 9s; animation-delay: 0.5s; }
.hero-particles span:nth-child(5) { left: 70%; animation-duration: 12s; animation-delay: 3s; }
.hero-particles span:nth-child(6) { left: 85%; animation-duration: 8s; animation-delay: 1.5s; }
@keyframes particle-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.7; transform: translateY(80vh) scale(1); }
    90% { opacity: 0.7; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== SECTION TITLES ===== */
.hp-section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 16px;
}
.hp-section-tag::before,
.hp-section-tag::after {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.hp-section-title {
    text-align: center;
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.hp-section-sub {
    text-align: center;
    color: var(--text-2);
    font-size: 1rem;
    margin-bottom: 56px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== STATS RIBBON ===== */
.hp-stats {
    padding: 32px 20px;
    position: relative;
    z-index: 1;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}
.hp-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.hp-stat { text-align: center; }
.hp-stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hp-stat-value em { color: var(--blue-bright); font-style: normal; }
.hp-stat-label {
    font-size: 0.72rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    font-weight: 600;
}

/* ===== TRUST STRIP ===== */
.hp-trust-strip {
    padding: 18px 20px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.hp-trust-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
    white-space: nowrap;
}
.hp-trust-item i { font-size: 1rem; color: var(--text-2); opacity: 0.6; }

/* ===== GAME CARDS ===== */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.hp-games {
    padding: var(--section-pad);
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hp-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    perspective: 1000px;
}
.hp-game-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-decoration: none;
    color: var(--text-1);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(15,25,50,0.4) 0%, rgba(10,18,35,0.6) 100%);
    cursor: pointer;
    aspect-ratio: 3 / 4;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease;
}
.hp-game-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    padding: 1.5px;
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 25%, var(--card-accent, var(--blue)) 50%, transparent 75%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 5;
}
.hp-game-card:hover::before {
    opacity: 0.7;
    animation: borderSpin 3s linear infinite;
}
@keyframes borderSpin { to { --border-angle: 360deg; } }
.hp-game-card::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 30px;
    background: var(--card-glow, rgba(59,130,246,0.12));
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    pointer-events: none;
}
.hp-game-card:hover::after { opacity: 1; }
.hp-game-shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}
.hp-game-shine::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(500px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.06), transparent 40%);
}
.hp-game-card:hover .hp-game-shine::before { opacity: 1; }
.hp-game-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.03) 35%, rgba(255,255,255,0.07) 45%, rgba(255,255,255,0.03) 55%, transparent 70%);
    pointer-events: none;
}
.hp-game-card:hover .hp-game-shine::after {
    animation: shine 0.7s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes shine { from{left:-60%} to{left:120%} }
.hp-game-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.03,0.98,0.52,0.99), filter 0.7s var(--ease-out);
    filter: brightness(0.72) saturate(1.35);
}
.hp-game-card:hover .hp-game-bg { filter: brightness(0.85) saturate(1.5); }
.hp-game-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(6,10,20,0.05) 0%,
            transparent 20%,
            transparent 40%,
            rgba(6,10,20,0.15) 55%,
            rgba(6,10,20,0.5) 68%,
            rgba(6,10,20,0.82) 80%,
            rgba(6,10,20,0.95) 92%);
    pointer-events: none;
}
.hp-game-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateZ(20px);
    gap: 0;
}
.hp-game-genre {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-2);
    margin-bottom: 10px;
}
.hp-game-card h3 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hp-game-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: all 0.4s var(--ease-out);
}
.hp-game-arrow i { font-size: 0.65rem; transition: transform 0.4s var(--ease-out); }
.hp-game-card:hover .hp-game-arrow { color: var(--card-accent, var(--blue-bright)); text-shadow: 0 0 16px var(--card-glow, rgba(59,130,246,0.3)); }
.hp-game-card:hover .hp-game-arrow i { transform: translateX(5px); }
.hp-game-card:hover {
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 20px 50px rgba(0,0,0,0.45), 0 0 80px var(--card-glow, rgba(59,130,246,0.12));
}
.hp-game-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
    z-index: 6;
}
.badge-hot { background: rgba(244,63,94,0.22); border: 1px solid rgba(244,63,94,0.3); color: #fda4af; }
.badge-new { background: rgba(139,92,246,0.22); border: 1px solid rgba(139,92,246,0.3); color: #c4b5fd; }


/* ===== TESTIMONIALS MARQUEE ===== */
.hp-testimonials {
    padding: var(--section-pad);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.marquee-row {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}
.marquee-left .marquee-track { animation: ml 50s linear infinite; }
.marquee-right .marquee-track { animation: mr 50s linear infinite; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes ml { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }
@keyframes mr { 0%{transform:translateX(-50%)}100%{transform:translateX(0)} }

.t-card {
    flex-shrink: 0;
    width: 360px;
    padding: 28px;
    border-radius: 16px;
    background: rgba(12,22,40,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
}
.t-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.95rem; color: var(--text-1); }
.t-game { font-size: 0.78rem; color: var(--purple); font-weight: 500; margin-top: 2px; }
.t-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 3px;
}
.t-verified i { font-size: 0.55rem; }
.t-stars { color: #facc15; font-size: 1rem; letter-spacing: 2px; }
.t-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #d1d9e6;
    font-style: italic;
    padding-left: 14px;
    border-left: 2px solid rgba(59,130,246,0.2);
}
.testimonials-cta { text-align: center; position: relative; z-index: 1; margin-top: 40px; }
.tp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}
.tp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.tp-stars-g { color: #00b67a; font-size: 1rem; letter-spacing: 1px; }
.tp-score { color: var(--text-3); font-weight: 400; font-size: 0.8rem; }

/* ===== FAQ ===== */
.hp-faq {
    padding: var(--section-pad);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp-faq-item {
    border-radius: 12px;
    border: 1px solid var(--glass-border-1);
    background: var(--glass-bg-1);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hp-faq-item.active {
    border-color: rgba(59,130,246,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.hp-faq-q {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}
.hp-faq-q:hover { color: var(--blue-bright); }
.hp-faq-chev {
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--text-3);
    transition: transform 0.3s var(--ease-out), color 0.3s ease;
}
.hp-faq-item.active .hp-faq-chev { transform: rotate(180deg); color: var(--blue-bright); }
.hp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
.hp-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.hp-cta-wrap {
    padding: var(--section-pad);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hp-cta-box {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--glass-bg-2);
    border: 1px solid var(--glass-border-2);
}
.hp-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--cyan), var(--purple));
    background-size: 300% 300%;
    animation: grad-border 5s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
@keyframes grad-border { 0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%} }
.hp-cta-box h2 {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hp-cta-box p {
    color: var(--text-2);
    font-size: 1.02rem;
    margin-bottom: 32px;
}
.hp-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.hp-footer {
    padding: 48px 20px 24px;
    position: relative;
    z-index: 1;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}
.hp-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--glass-border-1);
}
.hp-footer-logo { height: 34px; margin-bottom: 12px; display: block; }
.hp-footer-desc { font-size: 0.84rem; color: var(--text-2); line-height: 1.6; max-width: 260px; }
.hp-footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.hp-footer-payments i { font-size: 1.4rem; color: var(--text-3); opacity: 0.5; transition: opacity 0.2s; }
.hp-footer-payments i:hover { opacity: 1; }
.hp-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hp-footer-col a {
    display: block;
    font-size: 0.84rem;
    color: var(--text-2);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}
.hp-footer-col a:hover { color: var(--blue-bright); }
.hp-footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 0.78rem;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 12px;
}
.hp-footer-links { display: flex; gap: 16px; }
.hp-footer-links a { color: var(--text-3); text-decoration: none; font-size: 0.76rem; transition: color 0.2s; padding: 8px 4px; display: inline-block; }
.hp-footer-links a:hover { color: var(--text-2); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--d, 0ms);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hp-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hp-hero-text { order: 1; }
    .rank-climb-wrap { order: 2; }
    .hp-hero-sub { margin-left: auto; margin-right: auto; }
    .hp-cta-group { justify-content: center; }
    .hp-hero-trust { justify-content: center; }
    /* Results grid — 2-col before going 1-col at 768px */
    .hp-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --glass-blur-1:20px; --glass-blur-2:12px; --glass-blur-3:8px; --section-pad: 64px 16px; }
    .hp-hero { min-height: auto; padding: 120px 16px 60px; overflow: visible; }
    .hp-hero h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); word-break: break-word; }
    .hp-hero-sub { font-size: 0.95rem; max-width: 100%; }
    .text-reveal { overflow: visible; }
    .rank-climb-wrap { display: none; }
    .hp-cta-group { flex-direction: column; align-items: center; }
    .hp-cta-group .hp-btn-primary,
    .hp-cta-group .hp-btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
    .hp-games-grid { grid-template-columns: repeat(2, 1fr); perspective: none; }
    .hp-game-card { aspect-ratio: 4/3; }
    .hp-game-content { padding: 18px; transform: none; }
    .hp-game-card h3 { font-size: 1.1rem; }
    .hp-stats-inner { gap: 24px; }
    .hp-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hp-footer-col a { padding: 8px 0; }
    .hp-cta-box { padding: 40px 24px; }
    .hp-cta-btns { flex-direction: column; align-items: center; }
    .hp-cta-btns .hp-btn-primary,
    .hp-cta-btns .hp-btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
    .t-card { width: 300px; }
    .bg-orb { opacity: 0.25; }
    .cursor-glow { display: none; }
    .hero-particles { display: none; }
    /* Trust strip mobile */
    .hp-trust-inner { gap: 14px; }
    .hp-trust-item { font-size: 0.7rem; gap: 5px; }
    /* How-it-Works padding */
    .hiw-step { padding: 36px 24px 28px; }
    /* Footer bottom links touch targets */
    .hp-footer-links a { padding: 8px 6px; display: inline-block; }
    /* Results grid 2-col before going 1-col */
    .hp-results-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 480px) {
    :root { --section-pad: 48px 14px; }
    /* Game cards — single column on small phones */
    .hp-games-grid { grid-template-columns: 1fr; gap: 12px; max-width: 380px; margin: 0 auto; }
    .hp-game-card { aspect-ratio: 4/3; }
    .hp-game-content { padding: 16px; }
    .hp-game-card h3 { font-size: 1.05rem; }
    .hp-game-badge { font-size: 0.56rem; padding: 4px 9px; }
    .hp-game-card::after { display: none; }
    .hp-game-tag { font-size: 0.6rem; padding: 3px 7px; }
    /* Stats ribbon */
    .hp-stat-value { font-size: 1.5rem; }
    .hp-stats-inner { gap: 16px; }
    .hp-stat-label { font-size: 0.65rem; }
    /* Trust strip stack */
    .hp-trust-inner { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
    .hp-trust-item { white-space: nowrap; font-size: 0.68rem; }
    /* Hero trust */
    .hp-hero-trust { gap: 8px; flex-wrap: wrap; }
    .hp-hero-trust-item { font-size: 0.72rem; }
    .trust-sep { display: none; }
    /* Footer */
    .hp-footer-inner { grid-template-columns: 1fr; gap: 20px; }
    .hp-footer-bottom { flex-direction: column; text-align: center; }
    /* FAQ — bigger touch targets */
    .hp-faq-q { padding: 18px 20px; min-height: 52px; font-size: 0.88rem; }
    .hp-faq-chev { font-size: 0.85rem; padding: 4px; }
    .hp-faq-a-inner { padding: 0 20px 16px; }
    /* Testimonials */
    .t-card { width: 270px; padding: 22px; }
    .t-text { font-size: 0.85rem; line-height: 1.6; padding-left: 10px; }
    .t-avatar { width: 38px; height: 38px; font-size: 0.78rem; }
}
@media (prefers-reduced-motion: reduce) {
    .bg-orb, .marquee-track, .hero-particles span,
    .preloader-bloom, .preloader-logo, .hp-cta-box::before,
    .hp-game-card::before, .hp-game-shine::after,
    .rank-climb-card, .gradient-text, .live-dot,
    .rank-climb-glow { animation: none !important; }
    .reveal { opacity:1; transform:none; transition:none; }
    .text-reveal-inner { transform: none !important; transition: none; }
    .hp-game-bg { transition: none; }
    .hp-game-card::after { display: none; }
    .rank-climb-card { transform: none; }
}

/* ===== ROLLING TEXT ===== */
.rolling-wrap {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.15em;
    vertical-align: bottom;
    min-width: 4ch;
}
.rolling-wrap.gradient-text {
    /* reset gradient on wrapper — applied per-span instead */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    animation: none;
}
.rolling-text {
    display: block;
    transition: transform 0.5s var(--ease-out);
}
.rolling-text span {
    display: block;
    line-height: 1.15;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--blue-bright), var(--purple), var(--cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: grad-shift 6s ease infinite;
}

/* ===== BOOSTERS ONLINE BADGE ===== */
.hp-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    margin-left: 12px;
    font-family: var(--font-body);
}
.hp-online-badge .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16,185,129,0.4);
}

/* ===== LIVE ACTIVITY FEED ===== */
.hp-activity {
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hp-activity-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 36px;
}
.hp-activity-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}
.hp-activity-label .live-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}
.hp-activity-item {
    font-size: 0.82rem;
    color: var(--text-2);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out);
    position: absolute;
    white-space: nowrap;
}
.hp-activity-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.hp-activity-item .act-rank {
    color: var(--cta-accent);
    font-weight: 600;
}
.hp-activity-item .act-game {
    color: var(--blue-bright);
    font-weight: 500;
}
.hp-activity-item .act-time {
    color: var(--text-3);
    font-size: 0.72rem;
    margin-left: 6px;
}

/* ===== GAME CARD PRICE ===== */
.hp-game-price {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-3);
}
.hp-game-price strong {
    color: var(--cta-accent);
    font-size: 1.05rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(245,158,11,0.3);
}

/* ===== BEFORE/AFTER SHOWCASE ===== */
.hp-results {
    padding: var(--section-pad);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hp-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.hp-result-card {
    border-radius: var(--radius);
    background: var(--glass-bg-1);
    border: 1px solid var(--glass-border-1);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.hp-result-card:hover {
    border-color: var(--glass-border-2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.hp-result-header {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-result-game {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--blue-bright);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hp-result-time {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--green);
}
.hp-result-ranks {
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.hp-result-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hp-result-rank img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.hp-result-rank-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-2);
}
.hp-result-arrow {
    font-size: 1.2rem;
    color: var(--cta-accent);
}
.hp-result-stats {
    padding: 12px 18px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-around;
    font-size: 0.7rem;
    color: var(--text-3);
    font-family: var(--font-mono);
}
.hp-result-stats span {
    color: var(--text-2);
    font-weight: 600;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .hp-online-badge { display: none; }
    .hp-activity-item { font-size: 0.75rem; white-space: normal; text-align: center; }
    .hp-activity-inner { flex-direction: column; gap: 6px; min-height: 48px; }
}
@media (max-width: 480px) {
    .hp-activity { padding: 16px 14px; }
    .hp-activity-item { font-size: 0.72rem; }
}

/* ===== V3 PREMIUM POLISH ENHANCEMENTS ==== */
/* ========================================= */

/* --- Selection color --- */
::selection { background: rgba(59,130,246,0.3); color: var(--text-1); }
::-moz-selection { background: rgba(59,130,246,0.3); color: var(--text-1); }

/* --- Focus-visible accessibility --- */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--blue-bright);
    outline-offset: 2px;
}

/* --- Hero CTA Shimmer --- */
.hp-btn-primary {
    position: relative !important;
    overflow: hidden !important;
}
.hp-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.hp-btn-primary:hover::after { left: 100%; }
.hp-btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(245,158,11,0.55), inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

/* --- Ghost Button Polish --- */
.hp-btn-ghost:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* --- Result Cards Premium --- */
.hp-result-card {
    position: relative !important;
}
.hp-result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.hp-result-card:hover::before { opacity: 1; }

/* --- Testimonial Cards Premium --- */
.t-card {
    transition: all 0.35s var(--ease-out) !important;
    position: relative !important;
}
.t-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.t-card:hover {
    border-color: rgba(59,130,246,0.15) !important;
    background: rgba(255,255,255,0.04) !important;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.t-card:hover::before { opacity: 1; }
.t-avatar {
    box-shadow: 0 0 12px rgba(59,130,246,0.2) !important;
}

/* --- FAQ Premium Glass --- */
.hp-faq-item {
    position: relative !important;
    transition: all 0.3s var(--ease-out) !important;
}
.hp-faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: linear-gradient(180deg, var(--blue), var(--purple));
    transition: height 0.4s var(--ease-out);
    border-radius: 0 0 2px 2px;
    z-index: 1;
}
.hp-faq-item.active::before {
    height: 100%;
}
.hp-faq-item:hover {
    background: rgba(255,255,255,0.035) !important;
    border-color: rgba(59,130,246,0.15) !important;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hp-faq-chev {
    transition: transform 0.3s var(--ease-spring) !important;
}

/* --- CTA Box Polish --- */
.hp-cta-box::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse at top center, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* --- Footer Premium --- */
.hp-footer {
    position: relative !important;
    backdrop-filter: blur(var(--glass-blur-3));
    -webkit-backdrop-filter: blur(var(--glass-blur-3));
}
.hp-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    pointer-events: none;
}
.hp-footer-col a {
    position: relative !important;
}
.hp-footer-col a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--blue-bright);
    transition: width 0.3s var(--ease-out);
}
.hp-footer-col a:hover::after { width: 100%; }

/* --- Stats Ribbon Enhancement --- */
.hp-stat-value em {
    background: linear-gradient(135deg, var(--blue-bright), var(--cyan)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-style: normal !important;
}

/* ===== GAME CARDS V2 — CHARACTER RENDERS & POLISH ===== */



/* Accent glow line at bottom of card */
.hp-game-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--card-accent, var(--blue)) 50%, transparent 95%);
    z-index: 5;
    opacity: 0.25;
    transition: opacity 0.4s ease, height 0.3s ease;
    border-radius: 0 0 16px 16px;
}
.hp-game-card:hover .hp-game-accent {
    opacity: 0.9;
    height: 3px;
    box-shadow: 0 0 18px 3px var(--card-glow, rgba(59,130,246,0.35));
}

/* Service tags (always visible) */
.hp-game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    opacity: 0.7;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.hp-game-card:hover .hp-game-tags {
    opacity: 1;
}
.hp-game-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 5px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-3);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.hp-game-card:hover .hp-game-tag {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
}
.hp-game-tag i {
    font-size: 0.48rem;
    color: var(--card-accent, var(--blue));
}

/* Badge pulse glow animations */
.badge-hot {
    animation: badgePulse 2s ease-in-out infinite;
}
.badge-new {
    animation: badgePulseNew 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(244,63,94,0); }
    50% { box-shadow: 0 0 14px 3px rgba(244,63,94,0.25); }
}
@keyframes badgePulseNew {
    0%, 100% { box-shadow: 0 0 0 rgba(139,92,246,0); }
    50% { box-shadow: 0 0 14px 3px rgba(139,92,246,0.25); }
}
.hp-game-badge i {
    font-size: 0.5rem;
    margin-right: 3px;
}

/* Title hover underline */
.hp-game-card h3 {
    position: relative;
    display: inline-block;
}
.hp-game-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--card-accent, var(--blue)), transparent);
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hp-game-card:hover h3::after {
    width: 70%;
}

/* Floating micro particles */
.hp-game-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}
.hp-game-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--card-accent, rgba(255,255,255,0.6));
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hp-game-card:hover .hp-game-particles span {
    opacity: 0.5;
    animation: gcp var(--pdur, 3s) ease-in-out infinite;
    animation-delay: var(--pdel, 0s);
}
@keyframes gcp {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(var(--px, 10px), var(--py, -20px)) scale(1.5); opacity: 0.6; }
    50% { transform: translate(calc(var(--px, 10px) * -0.5), calc(var(--py, -20px) * 1.3)) scale(0.8); opacity: 0.4; }
    75% { transform: translate(calc(var(--px, 10px) * 0.7), calc(var(--py, -20px) * 0.4)) scale(1.3); opacity: 0.5; }
}


/* Responsive: new elements */
@media (max-width: 768px) {
    .hp-game-particles { display: none; }
    .hp-game-tags { display: flex; opacity: 0.6; }
    .hp-game-accent { opacity: 0.2; }
}

/* ===== HOW IT WORKS V2 ===== */
.hiw {
    padding: var(--section-pad);
    position: relative;
    z-index: 1;
}
.hiw-inner {
    max-width: 1060px;
    margin: 0 auto;
}
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hiw-step {
    position: relative;
    padding: 44px 28px 36px;
    border-radius: 16px;
    background: var(--glass-bg-1);
    border: 1px solid var(--glass-border-1);
    text-align: center;
    transition: all 0.5s var(--ease-out);
}
.hiw-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--step-accent, var(--blue-bright)), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}
.hiw-step:hover::before { opacity: 0.7; }
.hiw-step:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 40px rgba(59,130,246,0.04);
}
.hiw-num {
    font-size: 5.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--step-accent, var(--blue-bright)), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.07;
    position: absolute;
    top: 10px;
    right: 18px;
    pointer-events: none;
    transition: opacity 0.5s ease;
    user-select: none;
}
.hiw-step:hover .hiw-num { opacity: 0.15; }
.hiw-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.07));
    border: 1px solid rgba(59,130,246,0.12);
    color: var(--step-accent, var(--blue-bright));
    position: relative;
    transition: all 0.4s var(--ease-out);
}
.hiw-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.hiw-step:hover .hiw-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.25);
}
.hiw-step:hover .hiw-icon::after { opacity: 1; }
.hiw-step h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.hiw-step p {
    font-size: 0.86rem;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}
/* Payment icons row */
.hiw-payments {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.hiw-payments i {
    font-size: 1.3rem;
    color: var(--text-3);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.hiw-step:hover .hiw-payments i { opacity: 0.8; }
/* Mini progress visual */
.hiw-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 16px;
}
.hiw-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-3);
    opacity: 0.2;
}
.hiw-progress-dot.active {
    background: var(--green);
    opacity: 1;
    box-shadow: 0 0 8px rgba(16,185,129,0.4);
}
.hiw-progress-dot.current {
    background: var(--blue-bright);
    opacity: 1;
    animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
    50% { box-shadow: 0 0 8px 3px rgba(59,130,246,0.3); }
}
.hiw-progress-line {
    width: 20px;
    height: 2px;
    background: var(--text-3);
    opacity: 0.15;
}
.hiw-progress-line.active {
    background: linear-gradient(90deg, var(--green), var(--blue-bright));
    opacity: 0.6;
}

/* ===== WHY US V2 (Bento Grid) ===== */
.why {
    padding: var(--section-pad);
    position: relative;
    z-index: 1;
}
.why-inner {
    max-width: 1060px;
    margin: 0 auto;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.why-card {
    padding: 36px 30px;
    border-radius: 16px;
    background: var(--glass-bg-1);
    border: 1px solid var(--glass-border-1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--w-accent, var(--blue-bright)), transparent);
    opacity: 0.2;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}
.why-card:hover::before { opacity: 0.7; }
.why-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 15px;
    background: radial-gradient(ellipse at top center, rgba(255,255,255,0.012) 0%, transparent 60%);
    pointer-events: none;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,0,0,0.1);
}
.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: var(--w-bg, rgba(59,130,246,0.08));
    color: var(--w-accent, var(--blue-bright));
    border: 1px solid var(--w-border, rgba(59,130,246,0.12));
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.why-card:hover .why-card-icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px var(--w-bg, rgba(59,130,246,0.15)), 0 0 0 1px rgba(0,0,0,0.1);
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.why-card p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.7;
}
/* Large card — spans 2 cols */
.why-card-lg {
    grid-column: span 2;
    border-color: rgba(96,165,250,0.08);
}
.why-card-lg::after {
    background: radial-gradient(ellipse at top left, rgba(96,165,250,0.03) 0%, transparent 60%);
}
/* Full-width banner card */
.why-card-wide { grid-column: 1 / -1; }
.why-wide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.why-wide-text { flex: 1; }
.why-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    background: #5865F2;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(88,101,242,0.2);
}
.why-discord-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(88,101,242,0.35);
}
.why-discord-btn i {
    font-size: 1.1rem;
}
/* Rank badges for Verified Pros */
.why-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.12);
    color: var(--blue-bright);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.why-badge i {
    font-size: 0.6rem;
    opacity: 0.8;
}
.why-card:hover .why-badge {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.2);
}
/* Zero Bans stat line */
.why-zero-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.02em;
}
.why-zero-stat i {
    font-size: 0.7rem;
}
/* Responsive */
@media (max-width: 768px) {
    .hiw-steps { grid-template-columns: 1fr; gap: 16px; }
    .hiw-num { font-size: 3.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card-lg { grid-column: auto; }
    .why-card-wide { grid-column: auto; }
    .why-wide-inner { flex-direction: column; text-align: center; }
    .why-discord-btn { width: 100%; justify-content: center; }
    .why-badges { justify-content: center; }
}
@media (max-width: 480px) {
    .hiw-step { padding: 32px 20px 28px; }
    .hiw-num { font-size: 2.8rem; }
    .why-card { padding: 28px 22px; }
    .why-stat { font-size: 2.5rem; }
    .why-stat-label { font-size: 0.9rem; }
}

/* --- Game Card Tilt Depth --- */
.hp-game-card {
    will-change: transform;
}
.hp-game-content {
    transition: transform 0.5s var(--ease-out);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(90deg, rgba(245,158,11,0.12) 0%, rgba(139,92,246,0.12) 50%, rgba(59,130,246,0.12) 100%);
    border-bottom: 1px solid rgba(245,158,11,0.2);
    position: relative;
    z-index: 100;
}
.promo-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-2);
}
.promo-badge {
    background: var(--cta-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
    animation: promo-pulse 2s ease-in-out infinite;
}
@keyframes promo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.promo-code {
    font-family: var(--font-mono);
    background: rgba(245,158,11,0.15);
    color: var(--cta-accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.promo-close {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 18px;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}
.promo-close:hover { color: var(--text-1); }
@media (max-width: 600px) {
    .promo-inner { font-size: 0.75rem; gap: 8px; padding: 8px 12px; flex-wrap: wrap; justify-content: center; text-align: center; }
    .promo-badge { font-size: 0.6rem; }
    .promo-text { flex: 1 1 100%; order: 2; }
    .promo-close { order: 3; }
}
