/* ═══════════════════════════════════════════════════════════
   GameVault Ultra — Premium Design System 2026
   ═══════════════════════════════════════════════════════════ */

:root {
    /* ── Core brand ── */
    --gv-brand: #8b5cf6;
    --gv-brand-strong: #6d28d9;
    --gv-brand-soft: #a78bfa;
    --gv-brand-glow: rgba(139, 92, 246, 0.45);
    --gv-accent: #06b6d4;
    --gv-accent-soft: #22d3ee;

    /* ── Semantic tokens ── */
    --gv-primary: var(--gv-brand);
    --gv-secondary: #6366f1;
    --gv-danger: #ef4444;
    --gv-warning: #f59e0b;
    --gv-success: #10b981;
    --gv-info: #0ea5e9;

    /* ── Surfaces (light) ── */
    --gv-bg: #f4f2ff;
    --gv-surface: rgba(255, 255, 255, 0.72);
    --gv-surface-solid: #ffffff;
    --gv-surface-raised: rgba(255, 255, 255, 0.88);
    --gv-border: rgba(139, 92, 246, 0.14);
    --gv-border-strong: rgba(139, 92, 246, 0.3);

    /* ── Text (light) ── */
    --gv-text: #13102a;
    --gv-text-soft: #4b4768;
    --gv-text-muted: #64748b;

    /* ── Shape / motion ── */
    --gv-radius: 1.5rem;
    --gv-radius-sm: 0.875rem;
    --gv-radius-lg: 1.75rem;
    --gv-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --gv-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --gv-mesh-1: rgba(139, 92, 246, 0.35);
    --gv-mesh-2: rgba(6, 182, 212, 0.25);
    --gv-mesh-3: rgba(244, 114, 182, 0.15);
    --gv-space-xs: 0.5rem;
    --gv-space-sm: 0.75rem;
    --gv-space-md: 1.25rem;
    --gv-space-lg: 2rem;
    --gv-space-xl: 3rem;
    --gv-space-2xl: 4.5rem;
    --gv-card-ratio: 4 / 5;

    /* لون هوية اللعبة — تتجاوزه صفحة اللعبة ديناميكياً */
    --game-accent: 139, 92, 246;
}

.dark {
    --gv-bg: #08080f;
    --gv-surface: rgba(22, 22, 42, 0.72);
    --gv-surface-solid: #14142a;
    --gv-surface-raised: rgba(30, 30, 53, 0.9);
    --gv-border: rgba(255, 255, 255, 0.09);
    --gv-border-strong: rgba(167, 139, 250, 0.35);
    --gv-text: #f1f5f9;
    --gv-text-soft: #cbd5e1;
    --gv-text-muted: #94a3b8;
}

/* ═══ Typography scale ═══ */
.t-display {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.t-heading {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}
.t-title {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.015em;
}
.t-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--gv-text-soft);
}
.t-body { font-size: 0.95rem; line-height: 1.7; }
.t-caption {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gv-text-muted);
}
.t-overline {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

html {
    scroll-behavior: smooth;
    transition: background-color 0.5s var(--gv-ease), color 0.5s var(--gv-ease);
}
body { transition: background-color 0.5s var(--gv-ease), color 0.5s var(--gv-ease); }

/* ── Animated mesh background ── */
.mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.mesh-bg::before,
.mesh-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: meshFloat 18s ease-in-out infinite;
}
.mesh-bg::before {
    width: 55vw; height: 55vw;
    top: -15%; right: -10%;
    background: radial-gradient(circle, var(--gv-mesh-1), transparent 70%);
}
.mesh-bg::after {
    width: 45vw; height: 45vw;
    bottom: -10%; left: -5%;
    background: radial-gradient(circle, var(--gv-mesh-2), transparent 70%);
    animation-delay: -9s;
}
.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: meshFloat 14s ease-in-out infinite;
}
@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-25px, 20px) scale(0.95); }
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
    pointer-events: none;
}

/* ── Glass ── */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
}
.dark .glass {
    background: rgba(14, 14, 26, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.glass-strong {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(32px) saturate(2);
    -webkit-backdrop-filter: blur(32px) saturate(2);
    border: 1px solid rgba(255, 255, 255, 0.55);
}
.dark .glass-strong {
    background: rgba(10, 10, 20, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Navbar ── */
.gv-nav {
    transition: background 0.35s var(--gv-ease), border-color 0.35s var(--gv-ease), box-shadow 0.35s var(--gv-ease);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}
.dark .gv-nav {
    background: rgba(8, 8, 15, 0.86);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
.gv-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.1);
}
.dark .gv-nav.is-scrolled {
    background: rgba(8, 8, 15, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.gv-nav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3.75rem;
    flex-wrap: nowrap;
}
@media (min-width: 1024px) {
    .gv-nav__row { min-height: 4rem; gap: 1rem; }
}
.gv-nav__start {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 auto;
}
@media (min-width: 1024px) {
    .gv-nav__start { flex: 0 1 auto; }
}
.gv-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 0;
}
.gv-nav__menu {
    flex-shrink: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .nav-pill {
        padding: 0.4rem 0.65rem;
        font-size: 0.78rem;
    }
    .nav-pill i { display: none; }
}
.gv-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}
@media (min-width: 640px) {
    .gv-nav__actions { gap: 0.5rem; }
}
@media (min-width: 1280px) {
    .gv-nav__actions { gap: 0.625rem; }
}
.gv-nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    transition: all 0.25s var(--gv-ease);
}
.gv-nav-action--text {
    width: auto;
    min-width: 2.5rem;
    padding-inline: 0.65rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.gv-nav__search {
    position: relative;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.3s var(--gv-ease), opacity 0.25s ease;
}
.gv-nav__search.is-open {
    width: 11rem;
    opacity: 1;
}
@media (min-width: 1280px) {
    .gv-nav__search.is-open { width: 13rem; }
}
.gv-nav__search input {
    width: 100%;
    padding: 0.55rem 0.85rem 0.55rem 2.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    outline: none;
}
.dark .gv-nav__search input {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}
.gv-nav__search-icon {
    position: absolute;
    top: 50%;
    inset-inline-start: 0.75rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #8b5cf6;
    pointer-events: none;
}
.gv-nav__login {
    display: none;
    padding: 0.5rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: color 0.2s ease, background 0.2s ease;
}
.dark .gv-nav__login { color: #94a3b8; }
.gv-nav__login:hover { color: #7c3aed; background: rgba(139, 92, 246, 0.06); }
@media (min-width: 640px) {
    .gv-nav__login { display: inline-flex; align-items: center; }
}
@media (min-width: 640px) and (max-width: 1279px) {
    .gv-nav__login { display: none; }
}
.gv-nav__register {
    padding: 0.5rem 0.65rem !important;
    font-size: 0.8125rem !important;
    border-radius: 0.75rem !important;
    min-width: 2.5rem;
    min-height: 2.5rem;
}
@media (min-width: 1280px) {
    .gv-nav__register {
        padding: 0.55rem 1rem !important;
    }
}
.nav-pill {
    position: relative;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s var(--gv-ease);
}
.dark .nav-pill { color: #94a3b8; }
.nav-pill:hover {
    color: var(--gv-brand);
    background: rgba(139, 92, 246, 0.08);
}
.nav-pill.active {
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 4px 20px var(--gv-brand-glow);
}
.nav-link-active { /* legacy */ }

/* ── Typography ── */
.gradient-text {
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 35%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 1rem;
}
.dark .section-eyebrow { color: #a78bfa; }

/* ── Hero ── */
.hero-gradient {
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(139, 92, 246, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(6, 182, 212, 0.1), transparent),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(167, 139, 250, 0.08), transparent);
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.glow-brand { box-shadow: 0 0 60px var(--gv-brand-glow), 0 20px 60px rgba(139, 92, 246, 0.2); }
.glow-brand-sm { box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25); }
.shadow-premium { box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15), 0 4px 12px rgba(0,0,0,0.06); }
.shadow-premium-lg { box-shadow: 0 24px 80px rgba(139, 92, 246, 0.22), 0 8px 24px rgba(0,0,0,0.1); }

/* ── Premium Game Cards v2 ── */
.game-card {
    position: relative;
    border-radius: 1.75rem;
    transition: z-index 0s;
}
.game-card:hover { z-index: 5; }
.game-card__link { display: block; border-radius: inherit; text-decoration: none; }
.game-card__frame {
    position: relative;
    border-radius: 1.35rem;
    padding: 1px;
    background: linear-gradient(145deg, rgba(139,92,246,0.28), rgba(6,182,212,0.12), rgba(139,92,246,0.08));
    transition: box-shadow 0.4s var(--gv-ease), background 0.4s var(--gv-ease);
}
.game-card:hover .game-card__frame {
    background: linear-gradient(145deg, rgba(139,92,246,0.65), rgba(6,182,212,0.35), rgba(167,139,250,0.45));
    box-shadow: 0 20px 56px rgba(139, 92, 246, 0.28), 0 6px 18px rgba(0,0,0,0.12);
}
.game-card__glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 65%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.game-card:hover .game-card__glow { opacity: 1; }
.game-card__media {
    position: relative;
    aspect-ratio: var(--gv-card-ratio, 4 / 5);
    border-radius: calc(1.75rem - 2px);
    overflow: hidden;
    background: #12121f;
    transition: box-shadow 0.5s var(--gv-ease);
}
.game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s var(--gv-ease), filter 0.5s ease;
}
.game-card:hover .game-card__media img {
    transform: scale(1.12);
    filter: brightness(1.08) saturate(1.1);
}
.game-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 25%, rgba(255,255,255,0.15) 50%, transparent 75%);
    transform: translateX(-120%) skewX(-12deg);
    transition: transform 0.9s var(--gv-ease);
    pointer-events: none;
    z-index: 4;
}
.game-card:hover .game-card__shine { transform: translateX(120%) skewX(-12deg); }
.game-card__scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.game-card:hover .game-card__scanline { opacity: 1; }
.game-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.08) 62%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.game-card:hover .game-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.65) 45%, rgba(88,28,135,0.15) 70%, transparent 100%);
}
.game-card__top {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 1rem;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}
.game-card__badges { display: flex; flex-direction: column; gap: 0.45rem; }
.game-card__meta-top { display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; }
[dir="rtl"] .game-card__meta-top { align-items: flex-start; }
[dir="rtl"] .game-card__badges { align-items: flex-end; }
.game-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}
.game-card__badge--hot { background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; box-shadow: 0 4px 20px rgba(245,158,11,0.45); }
.game-card__badge--new { background: linear-gradient(135deg, #10b981, #059669); color: #fff; box-shadow: 0 4px 20px rgba(16,185,129,0.4); }
.game-card__badge--featured { background: linear-gradient(135deg, #8b5cf6, #6d28d9); color: #fff; box-shadow: 0 4px 20px var(--gv-brand-glow); }
.game-card__fav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.25s var(--gv-ease-bounce), color 0.2s ease, border-color 0.2s ease;
}
.game-card__fav:hover {
    color: #fb7185;
    border-color: rgba(251, 113, 133, 0.5);
    transform: scale(1.1);
}
.game-card__fav.is-fav { color: #fb7185; border-color: rgba(251, 113, 133, 0.45); }
.game-card__fav.is-pop { animation: favPop 0.4s var(--gv-ease-bounce); }
@keyframes favPop {
    0% { transform: scale(0.75); }
    55% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.game-card__rating,
.game-card__platform {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 9999px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(14px);
    font-size: 0.68rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.12);
}
.game-card__rating { color: #fbbf24; }
.game-card__platform { color: rgba(255,255,255,0.85); }
.game-card__hover-panel {
    position: absolute;
    left: 1rem; right: 1rem;
    bottom: 38%;
    z-index: 3;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: rgba(139,92,246,0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.45s var(--gv-ease);
    pointer-events: none;
}
.game-card:hover .game-card__hover-panel {
    opacity: 1;
    transform: translateY(0);
}
.game-card__hover-text { font-size: 0.75rem; color: rgba(255,255,255,0.9); margin-bottom: 0.35rem; }
.game-card__orders { font-size: 0.68rem; font-weight: 700; color: #a78bfa; display: inline-flex; align-items: center; gap: 0.3rem; }
.game-card__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.35rem 1.25rem 1.4rem;
    z-index: 3;
}
.game-card__cat {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c4b5fd;
    margin-bottom: 0.4rem;
}
.game-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6);
    margin-bottom: 0.9rem;
}
@media (min-width: 768px) { .game-card__title { font-size: 1.3rem; } }
.game-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.game-card__price-label { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.game-card__price-value { font-family: var(--font-mono, monospace); font-size: 1.15rem; font-weight: 800; color: #e9d5ff; }
.game-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 6px 24px var(--gv-brand-glow);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.45s var(--gv-ease);
    white-space: nowrap;
}
.game-card:hover .game-card__cta { opacity: 1; transform: translateY(0) scale(1); }
.game-card--featured .game-card__media { aspect-ratio: 3 / 4; }
.game-card--featured .game-card__title { font-size: 1.4rem; }
.game-card--compact .game-card__media { aspect-ratio: 1 / 1; }
.game-card--compact .game-card__hover-panel { display: none; }
.game-card__media img[data-loaded="true"] { opacity: 1; }

/* ── Reveal ── */
.swiper-pagination-bullet-active { background: #8b5cf6 !important; }
.hero-swiper .swiper-slide { border-radius: 1.5rem; overflow: hidden; }

/* ── Stats counter ── */
.stat-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.4s var(--gv-ease);
}
.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(139, 92, 246, 0.06);
}
.stat-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    font-family: var(--font-mono, monospace);
}

/* ── Buttons ── */
.btn-gv-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 0.875rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 50%, #5b21b6 100%);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.35);
    transition: transform 0.25s var(--gv-ease), box-shadow 0.25s var(--gv-ease);
    position: relative;
    overflow: hidden;
}
.btn-gv-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.45);
}
.btn-gv-primary:disabled,
.btn-gv-primary.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: rippleAnim 0.65s ease-out;
    pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ── Card shine ── */
.card-shine { position: relative; overflow: hidden; }
.card-shine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.7s var(--gv-ease);
    pointer-events: none;
}
.card-shine:hover::after { transform: translateX(100%); }

/* ── Skeleton ── */
.img-skeleton {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease infinite;
}
.dark .img-skeleton {
    background: linear-gradient(90deg, #1a1a2e 25%, #252540 50%, #1a1a2e 75%);
    background-size: 200% 100%;
}
@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.game-card__media img { opacity: 0; transition: opacity 0.5s ease; }
.game-card__media img[data-loaded="true"] { opacity: 1; }

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--gv-ease), transform 0.8s var(--gv-ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Marquee ── */
.animate-marquee { animation: marquee 40s linear infinite; }
[dir="rtl"] .animate-marquee { animation-direction: reverse; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Footer ── */
.footer-glow {
    border-top: 1px solid transparent;
    background-image:
        linear-gradient(var(--footer-bg, #f3f1ff), var(--footer-bg, #f3f1ff)),
        linear-gradient(90deg, rgba(139,92,246,0.4), rgba(6,182,212,0.35), rgba(139,92,246,0.4));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.dark .footer-glow { --footer-bg: #08080f; }

.footer-top-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 13.5rem;
}
.footer-game-thumb {
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 0.625rem;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dark .footer-game-thumb {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}
.footer-game-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.18);
}
.footer-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .footer-top-games { max-width: 15rem; }
}

/* ── Currency picker ── */
.gv-currency-picker__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    height: 2.5rem;
    padding: 0 0.65rem;
    border-radius: 0.75rem;
    font-size: 0.72rem;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(139,92,246,0.18);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.dark .gv-currency-picker__btn {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}
.gv-currency-picker__btn:hover {
    border-color: rgba(139,92,246,0.45);
    box-shadow: 0 4px 20px rgba(139,92,246,0.15);
}
.gv-currency-picker__btn--full {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
}
.gv-currency-picker__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    inset-inline-end: 0;
    min-width: 220px;
    max-height: 320px;
    border-radius: 1rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(139,92,246,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
    z-index: 100;
    overflow: hidden;
    color: #1e293b;
}
.dark .gv-currency-picker__menu {
    background: rgba(14,14,26,0.96);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gv-currency-picker__menu--wide { min-width: 280px; max-height: 360px; }
.gv-currency-picker__search-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(139,92,246,0.1);
    color: #8b5cf6;
}
.gv-currency-picker__search {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    outline: none;
    color: #1e293b;
}
.dark .gv-currency-picker__menu { color: #e2e8f0; }
.dark .gv-currency-picker__search-wrap { color: #a78bfa; border-bottom-color: rgba(255, 255, 255, 0.08); }
.dark .gv-currency-picker__search { color: #f1f5f9; }
.dark .gv-currency-picker__search::placeholder { color: #94a3b8; opacity: 1; }

/* ── Country picker (search + flags) ── */
.gv-country-picker { position: relative; z-index: 1; }
.gv-country-picker.is-open { z-index: 80; }
.gv-field:has(.gv-country-picker) {
    position: relative;
    overflow: visible;
}
.gv-country-picker__btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    font-size: 0.9375rem;
    font-family: inherit;
    text-align: start;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.dark .gv-country-picker__btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}
.gv-country-picker__btn:hover,
.gv-country-picker__btn:focus-visible {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
    outline: none;
}
.gv-country-picker__flag {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.gv-country-picker__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gv-country-picker__flag--empty {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    font-size: 0.85rem;
}
.dark .gv-country-picker__flag--empty { color: #a78bfa; }
.gv-country-picker__label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
.gv-country-picker__chevron {
    flex-shrink: 0;
    font-size: 0.65rem;
    color: #8b5cf6;
    transition: transform 0.2s ease;
}
.dark .gv-country-picker__chevron { color: #a78bfa; }
.gv-country-picker__chevron.is-open { transform: rotate(180deg); }

.gv-country-picker__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    inset-inline: 0;
    z-index: 90;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.gv-country-picker__menu[hidden] {
    display: none !important;
}
.dark .gv-country-picker__menu {
    background: #14142a;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #e2e8f0;
}
.gv-country-picker__search-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}
.dark .gv-country-picker__search-wrap {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: #a78bfa;
}
.gv-country-picker__search {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    outline: none;
    color: #1e293b;
    font-family: inherit;
}
.dark .gv-country-picker__search { color: #f1f5f9; }
.gv-country-picker__search::placeholder { color: #94a3b8; opacity: 1; }

.gv-country-picker__list {
    max-height: 280px;
    overflow-y: auto;
    padding: 0.35rem;
}
.gv-country-picker__item {
    display: grid;
    grid-template-columns: 2rem 1fr auto auto;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: none;
    border-radius: 0.65rem;
    background: transparent;
    color: inherit;
    font-family: inherit;
    font-size: 0.875rem;
    text-align: start;
    cursor: pointer;
    transition: background 0.15s ease;
}
.gv-country-picker__item:hover { background: rgba(139, 92, 246, 0.08); }
.gv-country-picker__item.is-selected { background: rgba(139, 92, 246, 0.12); }
.dark .gv-country-picker__item:hover { background: rgba(139, 92, 246, 0.15); }
.dark .gv-country-picker__item.is-selected { background: rgba(139, 92, 246, 0.2); }
.gv-country-picker__item-flag {
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 0.25rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.gv-country-picker__item-name {
    font-weight: 600;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dark .gv-country-picker__item-name { color: #f1f5f9; }
.gv-country-picker__item-code {
    font-size: 0.72rem;
    font-family: var(--font-mono, monospace);
    color: #64748b;
}
.dark .gv-country-picker__item-code { color: #94a3b8; }
.gv-country-picker__check {
    color: #7c3aed;
    font-size: 0.75rem;
}
.dark .gv-country-picker__check { color: #a78bfa; }
.gv-country-picker__check[hidden] { display: none !important; }

.home-country-chip__flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    margin-inline-end: 0.35rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.gv-currency-picker__list { max-height: 260px; overflow-y: auto; padding: 0.35rem; }
.gv-currency-picker__item {
    display: grid;
    grid-template-columns: 2.5rem 1fr auto auto;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.65rem;
    font-size: 0.78rem;
    text-decoration: none;
    color: #334155;
    transition: background 0.2s ease;
}
.gv-currency-picker__item:hover { background: rgba(139,92,246,0.08); }
.gv-currency-picker__item.is-active { background: rgba(139,92,246,0.12); font-weight: 700; }
.gv-currency-picker__code { font-family: var(--font-mono, monospace); font-weight: 800; color: #7c3aed; }
.dark .gv-currency-picker__code { color: #c4b5fd; }
.gv-currency-picker__name { font-size: 0.72rem; color: #64748b; opacity: 1; }
.dark .gv-currency-picker__name { color: #cbd5e1; }
.gv-currency-picker__sym { font-size: 0.7rem; color: #94a3b8; opacity: 1; }
.dark .gv-currency-picker__sym { color: #94a3b8; }
.dark .gv-currency-picker__item { color: #e2e8f0; }

/* ── Animations ── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.animate-float { animation: float 7s ease-in-out infinite; }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(139,92,246,0.3); }
    50% { box-shadow: 0 0 60px rgba(139,92,246,0.55); }
}
.animate-pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* ── View Transitions ── */
@view-transition { navigation: auto; }

/* ── Parallax layer ── */
[data-parallax] { will-change: transform; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .game-card:hover { transform: none; }
}

/* ── Form focus ── */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { scrollbar-width: none; }

/* ── Page atmosphere ── */
.gv-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.dark .gv-noise { opacity: 0.04; }

.gv-cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}
@media (hover: hover) { .gv-cursor-glow { opacity: 1; } }

/* ── Promo bar ── */
.gv-promo {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6, #06b6d4, #8b5cf6, #6d28d9);
    background-size: 300% 100%;
    animation: promoShift 8s ease infinite;
}
.gv-promo__track {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: promoShine 3s ease-in-out infinite;
}
@keyframes promoShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes promoShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* ── Global game background (all pages) ── */
.gv-page > main,
.gv-page > .home-main,
.gv-page > .auth-page {
    position: relative;
    z-index: 1;
}
.gv-game-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    --scroll-intensity: 0.45;
}
.gv-game-bg__layer {
    position: absolute;
    inset: -10% 0;
    min-height: 120%;
}
.gv-game-bg__poster {
    position: absolute;
    border-radius: 1rem;
    overflow: visible;
    opacity: calc(0.28 + var(--scroll-intensity) * 0.52);
    transform: rotate(var(--r, 0deg));
    will-change: transform, opacity;
    transition: opacity 0.45s ease;
    filter: blur(0.2px);
}
.gv-game-bg__poster-inner {
    border-radius: inherit;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.12);
    animation: posterFloatInner 7s ease-in-out infinite;
    will-change: transform;
}
.dark .gv-game-bg__poster {
    opacity: calc(0.32 + var(--scroll-intensity) * 0.55);
}
.dark .gv-game-bg__poster-inner {
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
}
.gv-game-bg__poster--sm { width: clamp(64px, 7vw, 90px); }
.gv-game-bg__poster--md { width: clamp(80px, 9vw, 115px); }
.gv-game-bg__poster--lg { width: clamp(96px, 11vw, 140px); }
.gv-game-bg__poster img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.gv-game-bg__poster:nth-child(odd) .gv-game-bg__poster-inner { animation-delay: -2s; }
.gv-game-bg__poster:nth-child(3n) .gv-game-bg__poster-inner { animation-delay: -4s; }
.gv-game-bg__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 45%, rgba(244,242,255,0.45) 100%);
    pointer-events: none;
}
.dark .gv-game-bg__vignette {
    background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 40%, rgba(8,8,15,0.55) 100%);
}
.gv-game-bg__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(244,242,255,0.12) 0%,
        transparent 12%,
        transparent 88%,
        rgba(244,242,255,0.18) 100%);
    pointer-events: none;
}
.dark .gv-game-bg__fade {
    background: linear-gradient(180deg,
        rgba(8,8,15,0.2) 0%,
        transparent 12%,
        transparent 88%,
        rgba(8,8,15,0.25) 100%);
}
@media (max-width: 768px) {
    .gv-game-bg__poster--lg,
    .gv-game-bg__poster:nth-child(n+9) { display: none; }
    .gv-game-bg__poster { opacity: calc(0.22 + var(--scroll-intensity) * 0.4); }
}

/* ── Hero floating posters (homepage hero extra layer) ── */
.hero-posters {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}
.hero-poster {
    position: absolute;
    width: clamp(75px, 9vw, 120px);
    opacity: calc(0.38 + var(--scroll-intensity, 0.45) * 0.35);
    transition: opacity 0.45s ease;
    will-change: transform;
}
.hero-poster__inner {
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.12);
    animation: posterFloatInner 6s ease-in-out infinite;
    filter: blur(0.4px);
    will-change: transform;
}
.dark .hero-poster { opacity: calc(0.45 + var(--scroll-intensity, 0.45) * 0.38); }
.hero-poster img { width: 100%; height: auto; display: block; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 768px) {
    .hero-poster { width: clamp(60px, 16vw, 85px); }
    .hero-poster:nth-child(n+7) { display: none; }
}

@keyframes posterFloat {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
@keyframes posterFloatInner {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── Category pills ── */
.cat-pill { min-width: min(160px, calc(100vw - 2rem)); }

/* ── Larger premium grid ── */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 640px)  { .games-grid { gap: 1.75rem; } }
@media (min-width: 768px)  { .games-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; } }
@media (min-width: 1536px) { .games-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

.games-grid--featured .game-card__media { aspect-ratio: 3 / 4; }
.games-grid--featured .game-card__title { font-size: 1.35rem; }

/* ── View transitions ── */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.4s;
    animation-timing-function: var(--gv-ease);
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; transform: scale(0.98); } }
@keyframes vt-fade-in { from { opacity: 0; transform: scale(1.02); } }

/* Lite homepage — less GPU work */
.gv-page--lite .gv-noise { display: none; }
.gv-page--lite .gv-game-bg__poster-inner { animation: none; }
[x-cloak] { display: none !important; }

/* ── Section divider glow ── */
.section-glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), rgba(6,182,212,0.4), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ── Auth pages ── */
.auth-page .auth-card { border: 1px solid rgba(139,92,246,0.12); }
.auth-collage__item {
    transition: transform 0.5s var(--gv-ease), box-shadow 0.5s ease;
    animation: collageFloat 5s ease-in-out infinite;
}
.auth-collage__item:nth-child(2) { animation-delay: -0.5s; }
.auth-collage__item:nth-child(3) { animation-delay: -1s; }
.auth-collage__item:nth-child(4) { animation-delay: -1.5s; }
.auth-collage__item:nth-child(5) { animation-delay: -2s; }
.auth-collage__item:nth-child(6) { animation-delay: -2.5s; }
.auth-collage__item:nth-child(7) { animation-delay: -3s; }
.auth-collage__item:nth-child(8) { animation-delay: -3.5s; }
.auth-collage__item:hover { transform: translateY(-6px) scale(1.05); z-index: 2; }
@keyframes collageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.gv-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(139,92,246,0.12);
    background: rgba(255,255,255,0.5);
    color: #1e293b;
    transition: all 0.3s var(--gv-ease);
}
.dark .gv-input {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #f1f5f9;
}
.dark .gv-input:focus {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.06);
}
.gv-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
}
.dark .gv-label { color: #94a3b8; }
.account-hero {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6 40%, #06b6d4);
}
.account-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}

/* ── Game landing page ── */
.game-page { position: relative; }
.game-page__glow {
    position: absolute;
    top: -6rem;
    inset-inline: 0;
    height: 34rem;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 75% 60% at 50% 0%, rgba(var(--game-accent), 0.16), transparent 68%),
        radial-gradient(ellipse 40% 35% at 12% 25%, rgba(var(--game-accent), 0.08), transparent 70%);
}
.dark .game-page__glow {
    background:
        radial-gradient(ellipse 75% 60% at 50% 0%, rgba(var(--game-accent), 0.22), transparent 68%),
        radial-gradient(ellipse 40% 35% at 12% 25%, rgba(var(--game-accent), 0.1), transparent 70%);
}
.game-page__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(var(--game-accent), 0.12);
    border: 1px solid rgba(var(--game-accent), 0.25);
    color: rgb(var(--game-accent));
}
.dark .game-page__chip { background: rgba(var(--game-accent), 0.16); }
.game-page__chip--hot {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.game-page__chip--new {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
    color: #fff;
}
.game-detail-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .game-detail-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 3rem;
    }
}
.gv-game-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #12121f;
}
.gv-game-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.game-hero-media__frame {
    position: relative;
    border-radius: 1.75rem;
    padding: 2px;
    align-self: start;
    max-width: 24rem;
    margin-inline: auto;
    background: linear-gradient(150deg, rgba(var(--game-accent), 0.6), rgba(var(--game-accent), 0.12) 45%, rgba(var(--game-accent), 0.35));
    box-shadow: 0 24px 70px rgba(var(--game-accent), 0.22);
}
@media (min-width: 1024px) {
    .game-hero-media__frame { max-width: 100%; margin-inline: 0; }
}
.game-hero-media__inner {
    border-radius: calc(1.75rem - 2px);
    overflow: hidden;
    background: #0c0c18;
}
.game-hero-media { aspect-ratio: var(--gv-card-ratio, 4 / 5); border-radius: 0; }

/* Steps */
.game-steps { position: relative; }
.game-steps__line {
    display: none;
    position: absolute;
    top: 3.3rem;
    inset-inline: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--game-accent), 0.4), rgba(var(--game-accent), 0.4), transparent);
    z-index: 0;
}
@media (min-width: 1024px) { .game-steps__line { display: block; } }
.game-step { z-index: 1; transition: transform 0.35s var(--gv-ease), box-shadow 0.35s var(--gv-ease); }
.game-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(var(--game-accent), 0.16);
}
.game-step__num {
    position: absolute;
    top: 0.85rem;
    inset-inline-start: 1rem;
    font-family: var(--font-mono, monospace);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(var(--game-accent), 0.22);
    line-height: 1;
}
.game-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1.1rem;
    margin-bottom: 0.9rem;
    font-size: 1.2rem;
    color: rgb(var(--game-accent));
    background: rgba(var(--game-accent), 0.12);
    transition: transform 0.35s var(--gv-ease-bounce);
}
.game-step:hover .game-step__icon { transform: scale(1.12) rotate(-6deg); }

/* Buy button loading */
.gv-buy-btn { position: relative; }
.gv-buy-btn__loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.gv-buy-btn.is-loading { pointer-events: none; opacity: 0.9; }
.gv-buy-btn.is-loading .gv-buy-btn__label { display: none; }
.gv-buy-btn.is-loading .gv-buy-btn__loading { display: inline-flex; }
.gv-spinner {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: gvSpin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes gvSpin { to { transform: rotate(360deg); } }

/* ── Support page ── */
.support-channel { text-decoration: none; color: inherit; }
.support-channel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1.1rem;
    font-size: 1.25rem;
    transition: transform 0.35s var(--gv-ease-bounce);
}
.support-channel:hover .support-channel__icon { transform: scale(1.12) rotate(-6deg); }
.support-channel--brand .support-channel__icon { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.support-channel--accent .support-channel__icon { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.support-channel--emerald .support-channel__icon { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.support-channel--amber .support-channel__icon { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.support-topic summary::-webkit-details-marker { display: none; }

/* Player account verification */
.player-verify__result {
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.dark .player-verify__result {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(139, 92, 246, 0.08));
    border-color: rgba(16, 185, 129, 0.2);
}
.player-verify__success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.75rem;
}
.dark .player-verify__success { color: #34d399; }
.player-verify__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.player-verify__grid dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.15rem;
}
.dark .player-verify__grid dt { color: #94a3b8; }
.player-verify__grid dd {
    font-size: 0.925rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}
.dark .player-verify__grid dd { color: #f1f5f9; }

.player-verify__status--error { color: #ef4444; font-weight: 600; }
.dark .player-verify__status--error { color: #f87171; }
.player-verify__status--info { color: #7c3aed; font-weight: 500; }
.dark .player-verify__status--info { color: #a78bfa; }
.player-verify__spinner { display: none; }
.player-verify__btn.is-checking { opacity: 0.75; pointer-events: none; }
.player-verify__btn.is-checking .player-verify__spinner { display: inline-block; }

/* ── About page (platform story) ── */
.about-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gv-brand-strong);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--gv-border);
}
.about-tag--muted { color: var(--gv-text-muted); background: rgba(100, 116, 139, 0.08); }
.about-tag--light { color: #fff; background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.2); }

.about-hero__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 48rem;
    margin: 0 auto 1rem;
}
.about-hero__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto;
}

.about-facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .about-facts-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-fact-card {
    padding: 1.75rem;
    border-radius: var(--gv-radius-sm);
    background: var(--gv-surface-solid);
    border: 1px solid var(--gv-border);
    transition: transform 0.35s var(--gv-ease), box-shadow 0.35s var(--gv-ease);
}
.dark .about-fact-card { background: rgba(255, 255, 255, 0.03); }
.about-fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}
.about-fact-card__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    color: var(--gv-brand);
    font-size: 1.25rem;
}
.about-fact-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gv-text);
    margin-bottom: 0.5rem;
}
.dark .about-fact-card__title { color: #f8fafc; }
.about-fact-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gv-text-muted);
}

.about-stat-card {
    padding: 1.5rem;
    border-radius: var(--gv-radius-sm);
    background: var(--gv-surface-solid);
    border: 1px solid var(--gv-border);
    text-align: center;
    transition: transform 0.3s var(--gv-ease);
}
.dark .about-stat-card { background: rgba(255, 255, 255, 0.03); }
.about-stat-card:hover { transform: translateY(-3px); }
.about-stat-card__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    font-size: 1.125rem;
}
.about-stat-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: ui-monospace, monospace;
    color: var(--gv-text);
}
.dark .about-stat-card__value { color: #fff; }
.about-stat-card__label { font-size: 0.8125rem; color: var(--gv-text-muted); margin-top: 0.25rem; }

.about-security__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: var(--gv-radius);
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 50%, #312e81 100%);
    color: #fff;
    overflow: hidden;
}
@media (min-width: 768px) {
    .about-security__inner { grid-template-columns: 1.2fr 0.8fr; padding: 2.5rem 3rem; }
}
.about-security__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.about-security__desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.about-security__list { list-style: none; padding: 0; margin: 0; }
.about-security__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.92);
}
.about-security__list i { color: #34d399; margin-top: 0.15rem; }
.about-security__shield {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: float 4s ease-in-out infinite;
}

.about-numbers {
    padding: 2rem;
    border-radius: var(--gv-radius);
    background: var(--gv-surface-solid);
    border: 1px solid var(--gv-border);
}
.dark .about-numbers { background: rgba(255, 255, 255, 0.03); }
.about-numbers__tag {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gv-text-muted);
    margin-bottom: 1.5rem;
}
.about-numbers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .about-numbers__grid { grid-template-columns: repeat(3, 1fr); }
}
.about-numbers__item { text-align: center; }
.about-numbers__index {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gv-brand);
    margin-bottom: 0.5rem;
    font-family: ui-monospace, monospace;
}
.about-numbers__value {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--gv-text);
    line-height: 1;
}
.dark .about-numbers__value { color: #fff; }
.about-numbers__label {
    font-size: 0.875rem;
    color: var(--gv-text-muted);
    margin-top: 0.5rem;
}

.about-testimonial__quote {
    position: relative;
    margin: 0;
    padding: 2.5rem 2rem;
    border-radius: var(--gv-radius);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.06));
    border: 1px solid var(--gv-border);
    text-align: center;
}
.about-testimonial__icon {
    font-size: 1.5rem;
    color: var(--gv-brand-soft);
    margin-bottom: 1rem;
}
.about-testimonial__quote p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gv-text);
    font-style: italic;
    max-width: 40rem;
    margin: 0 auto 1.25rem;
}
.dark .about-testimonial__quote p { color: #e2e8f0; }
.about-testimonial__quote cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--gv-text);
}
.dark .about-testimonial__quote cite { color: #fff; }
.about-testimonial__quote footer span {
    display: block;
    font-size: 0.8125rem;
    color: var(--gv-text-muted);
    margin-top: 0.25rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .about-features-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-feature-card {
    padding: 1.75rem;
    border-radius: var(--gv-radius-sm);
    border: 1px solid var(--gv-border);
    background: var(--gv-surface-solid);
}
.dark .about-feature-card { background: rgba(255, 255, 255, 0.03); }
.about-feature-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--gv-brand);
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}
.about-feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gv-text);
    margin-bottom: 0.5rem;
}
.dark .about-feature-card h3 { color: #fff; }
.about-feature-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gv-text-muted);
}

.about-brand-card {
    padding: 3rem 2rem;
    border-radius: var(--gv-radius);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--gv-border);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-brand-card__logo {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--gv-brand), var(--gv-accent));
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 16px 40px var(--gv-brand-glow);
    animation: float 4s ease-in-out infinite;
}
.about-brand-card__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gv-text);
}
.dark .about-brand-card__name { color: #fff; }
.about-brand-card__tagline {
    font-size: 0.9375rem;
    color: var(--gv-text-muted);
    margin-top: 0.5rem;
    max-width: 18rem;
}

.about-grow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .about-grow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .about-grow-grid { grid-template-columns: repeat(4, 1fr); }
}
.about-grow-card {
    padding: 1.5rem;
    border-radius: var(--gv-radius-sm);
    border: 1px solid var(--gv-border);
    background: var(--gv-surface-solid);
    transition: border-color 0.3s, transform 0.3s var(--gv-ease);
}
.dark .about-grow-card { background: rgba(255, 255, 255, 0.03); }
.about-grow-card:hover {
    border-color: var(--gv-brand-soft);
    transform: translateY(-2px);
}
.about-grow-card i {
    font-size: 1.5rem;
    color: var(--gv-brand);
    margin-bottom: 0.75rem;
}
.about-grow-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gv-text);
    margin-bottom: 0.35rem;
}
.dark .about-grow-card h3 { color: #fff; }
.about-grow-card p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gv-text-muted);
}

.about-cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--gv-radius);
    background: linear-gradient(135deg, var(--gv-brand) 0%, var(--gv-brand-strong) 100%);
    color: #fff;
}
.about-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.about-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.875rem;
    background: #fff;
    color: var(--gv-brand-strong);
    font-weight: 700;
    transition: transform 0.25s var(--gv-ease), box-shadow 0.25s;
}
.about-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   PWA / Mobile app experience
   ═══════════════════════════════════════════════════════════ */

:root {
    --gv-safe-bottom: env(safe-area-inset-bottom, 0px);
    --gv-safe-top: env(safe-area-inset-top, 0px);
    --gv-bottom-nav-h: 62px;
}

/* شريط تنقّل سفلي بنمط تطبيق (هاتف فقط) */
.gv-bottom-nav {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
    gap: 2px;
    padding: 6px 6px calc(6px + var(--gv-safe-bottom));
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--gv-border);
    box-shadow: 0 -8px 30px -12px rgba(31, 18, 66, 0.18);
}
.dark .gv-bottom-nav {
    background: rgba(12, 12, 24, 0.85);
    border-top-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 30px -12px rgba(0, 0, 0, 0.6);
}
.gv-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    border-radius: 14px;
    color: #6b7280;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s var(--gv-ease), background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.dark .gv-bottom-nav__item { color: #9ca3af; }
.gv-bottom-nav__item:active { transform: scale(0.92); }
.gv-bottom-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s var(--gv-ease);
}
.gv-bottom-nav__item.active {
    color: var(--gv-brand-strong);
}
.dark .gv-bottom-nav__item.active { color: var(--gv-brand-soft); }
.gv-bottom-nav__item.active .gv-bottom-nav__icon {
    background: linear-gradient(135deg, var(--gv-brand), var(--gv-accent));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -6px var(--gv-brand-glow);
}

/* مساحة أسفل الصفحة حتى لا يغطّي الشريط المحتوى */
@media (max-width: 1023.98px) {
    body.gv-page { padding-bottom: calc(var(--gv-bottom-nav-h) + var(--gv-safe-bottom)); }
    /* رفع الأزرار العائمة/الفوتر فوق الشريط */
    footer.footer-glow { margin-bottom: 0; }
}

/* في وضع التطبيق المثبّت (standalone): إخفاء عناصر الويب غير الضرورية */
@media (display-mode: standalone), (display-mode: minimal-ui) {
    .gv-promo { display: none !important; }
    body { --gv-app: 1; }
    /* حشوة علوية لتفادي النوتش */
    .gv-nav { padding-top: var(--gv-safe-top); }
}

/* شعار تثبيت التطبيق (A2HS) */
.gv-install-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(var(--gv-bottom-nav-h) + var(--gv-safe-bottom) + 12px);
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--gv-border-strong);
    box-shadow: 0 18px 50px -12px rgba(31, 18, 66, 0.35);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.4s var(--gv-ease), opacity 0.3s;
}
.dark .gv-install-banner {
    background: rgba(22, 22, 42, 0.97);
    border-color: rgba(255, 255, 255, 0.1);
}
.gv-install-banner.is-visible { transform: translateY(0); opacity: 1; }
.gv-install-banner__icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gv-brand), var(--gv-accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
}
.gv-install-banner__text { flex: 1; min-width: 0; }
.gv-install-banner__title { font-weight: 800; font-size: 0.9rem; color: var(--gv-text, #1f1235); }
.dark .gv-install-banner__title { color: #fff; }
.gv-install-banner__sub { font-size: 0.72rem; color: #6b7280; }
.gv-install-banner__btn {
    flex-shrink: 0; font-weight: 700; font-size: 0.82rem; color: #fff;
    background: linear-gradient(135deg, var(--gv-brand-strong), var(--gv-brand));
    padding: 9px 16px; border-radius: 12px; border: 0; cursor: pointer;
    white-space: nowrap;
}
.gv-install-banner__close {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 10px; border: 0;
    background: transparent; color: #9ca3af; cursor: pointer; font-size: 0.95rem;
}
@media (min-width: 1024px) {
    .gv-install-banner { left: auto; right: 20px; bottom: 20px; max-width: 380px; }
}

