@font-face {
  font-family: "Heading-Now";
  src: url("../fonts/HeadingNowTrial-66Bold.woff") format("woff");
}

:root {
  --gold-primary: #f0b429;
  --gold-glow: rgba(240, 180, 41, 0.4);
  --gold-glow-strong: rgba(240, 180, 41, 0.8);
  --purple-accent: #7c3aed;
  --blue-accent: #1d4ed8;
  --neon-cyan: #00d4ff;
  --bg-deep: #05080f;
  --bg-card: rgba(10, 15, 35, 0.85);
  --bg-card-hover: rgba(20, 30, 70, 0.95);
  --text-gold: #f0b429;
  --fn-yellow: #f7ff19;
  --rarity-legendary: #f0b429;
  --rarity-epic: #7c3aed;
  --rarity-rare: #1d4ed8;
  --rarity-uncommon: #15803d;
}

* { box-sizing: border-box; }

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(ellipse 80% 60% at 20% 110%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 110%, rgba(240,180,41,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, #0f1a3a 0%, #05080f 65%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.fn-heading {
  font-family: "Heading-Now", "Montserrat", sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

/* --- Particles --- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   SCROLL PROGRESS BAR
============================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), #f7ff19, var(--neon-cyan));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(240,180,41,0.8);
}

/* =============================================
   STICKY MINI-TIMER
============================================= */
#sticky-timer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: rgba(5, 8, 20, 0.92);
  border: 1px solid rgba(240,180,41,0.4);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 0 16px rgba(240,180,41,0.15);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#sticky-timer.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#sticky-timer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.8), transparent);
}
#sticky-timer-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sticky-t-num {
  font-family: "Heading-Now", monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--fn-yellow);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
}
.sticky-t-sep {
  font-family: "Heading-Now", sans-serif;
  font-size: 1rem;
  color: var(--gold-primary);
  opacity: 0.6;
  margin-bottom: 1px;
}
.sticky-t-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8899aa;
  margin-left: 2px;
  white-space: nowrap;
}

/* --- Animations --- */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-glow-yellow {
  0%, 100% { box-shadow: 0 0 24px rgba(247,255,25,0.6), 0 0 50px rgba(247,255,25,0.25), inset 0 1px 0 rgba(255,255,255,0.2); }
  50%       { box-shadow: 0 0 50px rgba(247,255,25,1), 0 0 100px rgba(247,255,25,0.5), inset 0 1px 0 rgba(255,255,255,0.4); }
}
@keyframes float {
  0%   { transform: translateY(0px) scale(1); }
  25%  { transform: translateY(-10px) scale(1.01); }
  50%  { transform: translateY(-16px) scale(1.02); }
  75%  { transform: translateY(-8px) scale(1.01); }
  100% { transform: translateY(0px) scale(1); }
}
@keyframes timer-flip {
  0%   { transform: scaleY(1) translateY(0); opacity: 1; }
  40%  { transform: scaleY(0.7) translateY(4px); opacity: 0.5; }
  100% { transform: scaleY(1) translateY(0); opacity: 1; }
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes ground-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scaleX(1) scaleY(1); }
  50%       { opacity: 1; transform: scaleX(1.15) scaleY(1.3); }
}
@keyframes btn-shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes icon-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25) rotate(-5deg); }
  100% { transform: scale(1); }
}
@keyframes aurora {
  0%   { opacity: 0.4; transform: translateX(-5%) scaleX(1); }
  50%  { opacity: 0.8; transform: translateX(5%) scaleX(1.1); }
  100% { opacity: 0.4; transform: translateX(-5%) scaleX(1); }
}
@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes border-sweep {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes count-up-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stagger-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-glow-pulse {
  0%, 100% { text-shadow: 0 0 30px rgba(240,180,41,0.4), 0 0 60px rgba(240,180,41,0.15); }
  50%       { text-shadow: 0 0 60px rgba(240,180,41,0.7), 0 0 120px rgba(240,180,41,0.3), 0 0 180px rgba(247,255,25,0.1); }
}

.animate-slideUp-1 { animation: slideUp 0.7s 0.1s both; }
.animate-slideUp-2 { animation: slideUp 0.7s 0.25s both; }
.animate-slideUp-3 { animation: slideUp 0.7s 0.4s both; }
.animate-slideUp-4 { animation: slideUp 0.7s 0.55s both; }
.animate-fadeIn    { animation: fadeIn 1s 0.2s both; }

/* =============================================
   CTA BUTTON
============================================= */
.cta-btn {
  animation: pulse-glow-yellow 2.5s ease-in-out infinite;
  transition: transform 0.15s ease, filter 0.15s ease;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btn-shine 3s ease-in-out infinite;
  animation-delay: 1s;
}
.cta-btn:hover  { transform: scale(1.04); filter: brightness(1.1); }
.cta-btn:active { transform: scale(0.97); }

.cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
  transform-origin: center;
}

/* --- Timer --- */
.timer-block {
  background: rgba(5, 8, 20, 0.95);
  border: 1px solid rgba(240, 180, 41, 0.35);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.timer-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.timer-block::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.timer-number {
  font-family: "Heading-Now", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fn-yellow);
  line-height: 1;
  display: block;
  transition: transform 0.15s ease;
}
.timer-number.flip { animation: timer-flip 0.2s ease; }
.timer-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8899aa;
  margin-top: 4px;
  display: block;
}
.timer-sep {
  font-family: "Heading-Now", sans-serif;
  font-size: 2rem;
  color: var(--gold-primary);
  align-self: flex-start;
  margin-top: 8px;
  opacity: 0.7;
}
.timer-block.urgent .timer-number { color: #ff4444; }
.timer-block.urgent { border-color: rgba(255,68,68,0.4); animation: badge-pulse 1s ease-in-out infinite; }

/* =============================================
   HERO DECORATIONS
============================================= */
.hero-title-glow {
  animation: hero-glow-pulse 3s ease-in-out infinite;
}
.hero-subtitle-bar {
  border-left: 3px solid var(--gold-primary);
  padding-left: 12px;
  color: #8899aa;
}
.hero-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.hero-corner-tl { top: 0; left: 0; border-top: 2px solid rgba(240,180,41,0.5); border-left: 2px solid rgba(240,180,41,0.5); border-radius: 2px 0 0 0; }
.hero-corner-tr { top: 0; right: 0; border-top: 2px solid rgba(240,180,41,0.5); border-right: 2px solid rgba(240,180,41,0.5); border-radius: 0 2px 0 0; }
.hero-corner-bl { bottom: 0; left: 0; border-bottom: 2px solid rgba(240,180,41,0.5); border-left: 2px solid rgba(240,180,41,0.5); border-radius: 0 0 0 2px; }
.hero-corner-br { bottom: 0; right: 0; border-bottom: 2px solid rgba(240,180,41,0.5); border-right: 2px solid rgba(240,180,41,0.5); border-radius: 0 0 2px 0; }

/* =============================================
   CAROUSEL 3D
============================================= */
.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  transform-style: preserve-3d;
}
.carousel-slide {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
}
.carousel-slide.active {
  width: 280px;
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(240,180,41,0.5), 0 0 40px rgba(240,180,41,0.2), 0 20px 60px rgba(0,0,0,0.6);
}
.carousel-slide.prev {
  width: 160px;
  opacity: 0.4;
  transform: scale(0.82) rotateY(18deg) translateX(20px);
  z-index: 1;
  filter: blur(1.5px) brightness(0.65);
}
.carousel-slide.next {
  width: 160px;
  opacity: 0.4;
  transform: scale(0.82) rotateY(-18deg) translateX(-20px);
  z-index: 1;
  filter: blur(1.5px) brightness(0.65);
}
.carousel-slide video,
.carousel-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--gold-primary);
}
.carousel-nav-btn:hover {
  background: rgba(240,180,41,0.35);
  border-color: rgba(240,180,41,0.8);
  box-shadow: 0 0 20px rgba(240,180,41,0.4);
}
.carousel-nav-btn.prev { left: -8px; }
.carousel-nav-btn.next { right: -8px; }

.carousel-rarity-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  border-radius: 0 0 16px 16px;
  transition: background 0.4s ease;
}

.ground-glow {
  width: 240px;
  height: 24px;
  border-radius: 50%;
  margin: 0 auto;
  filter: blur(16px);
  animation: ground-glow-pulse 3s ease-in-out infinite;
}

/* =============================================
   RARITY SYSTEM
============================================= */
.rarity-legendary { color: #f0b429; }
.rarity-epic      { color: #a855f7; }
.rarity-rare      { color: #3b82f6; }
.rarity-uncommon  { color: #22c55e; }

.rarity-border-legendary { border-top: 2px solid #f0b429; }
.rarity-border-epic      { border-top: 2px solid #a855f7; }
.rarity-border-rare      { border-top: 2px solid #3b82f6; }
.rarity-border-uncommon  { border-top: 2px solid #22c55e; }

.rarity-glow-legendary { box-shadow: 0 0 20px rgba(240,180,41,0.35), 0 4px 16px rgba(0,0,0,0.4); }
.rarity-glow-epic      { box-shadow: 0 0 20px rgba(168,85,247,0.35), 0 4px 16px rgba(0,0,0,0.4); }
.rarity-glow-rare      { box-shadow: 0 0 20px rgba(59,130,246,0.35), 0 4px 16px rgba(0,0,0,0.4); }
.rarity-glow-uncommon  { box-shadow: 0 0 20px rgba(34,197,94,0.35), 0 4px 16px rgba(0,0,0,0.4); }

.rarity-badge {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 4px;
  display: inline-block;
  white-space: nowrap;
}
.rarity-badge-legendary { background: rgba(240,180,41,0.2); color: #f0b429; border: 1px solid rgba(240,180,41,0.4); }
.rarity-badge-epic      { background: rgba(168,85,247,0.2); color: #a855f7; border: 1px solid rgba(168,85,247,0.4); }
.rarity-badge-rare      { background: rgba(59,130,246,0.2); color: #3b82f6; border: 1px solid rgba(59,130,246,0.4); }
.rarity-badge-uncommon  { background: rgba(34,197,94,0.2);  color: #22c55e; border: 1px solid rgba(34,197,94,0.4); }

/* =============================================
   RARITY STATS SECTION
============================================= */
#section-rarity-stats {
  padding-bottom: 3rem;
}
.rarity-stats-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.rarity-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: rgba(10,15,35,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rarity-stat-pill:hover {
  transform: translateY(-3px);
}
.rarity-stat-pill::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
}
.rarity-stat-pill.legendary { border-color: rgba(240,180,41,0.25); box-shadow: 0 0 20px rgba(240,180,41,0.12); }
.rarity-stat-pill.legendary:hover { box-shadow: 0 0 32px rgba(240,180,41,0.25); }
.rarity-stat-pill.legendary::before { background: linear-gradient(90deg, transparent, rgba(240,180,41,0.7), transparent); }
.rarity-stat-pill.epic { border-color: rgba(168,85,247,0.25); box-shadow: 0 0 20px rgba(168,85,247,0.12); }
.rarity-stat-pill.epic:hover { box-shadow: 0 0 32px rgba(168,85,247,0.25); }
.rarity-stat-pill.epic::before { background: linear-gradient(90deg, transparent, rgba(168,85,247,0.7), transparent); }
.rarity-stat-pill.rare { border-color: rgba(59,130,246,0.25); box-shadow: 0 0 20px rgba(59,130,246,0.12); }
.rarity-stat-pill.rare:hover { box-shadow: 0 0 32px rgba(59,130,246,0.25); }
.rarity-stat-pill.rare::before { background: linear-gradient(90deg, transparent, rgba(59,130,246,0.7), transparent); }

.rarity-stat-count {
  font-family: "Heading-Now", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rarity-stat-count.legendary { color: #f0b429; }
.rarity-stat-count.epic { color: #a855f7; }
.rarity-stat-count.rare { color: #3b82f6; }

.rarity-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rarity-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rarity-stat-sub {
  font-size: 0.6rem;
  color: #8899aa;
  letter-spacing: 0.05em;
}

.rarity-bar-wrap {
  margin-top: 20px;
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.rarity-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.rarity-bar-fill.legendary { background: linear-gradient(90deg, #c8860a, #f0b429, #f7ff19); }
.rarity-bar-fill.epic      { background: linear-gradient(90deg, #6b21a8, #a855f7, #d8b4fe); }
.rarity-bar-fill.rare      { background: linear-gradient(90deg, #1e40af, #3b82f6, #93c5fd); }

/* =============================================
   ITEM CARD
============================================= */
.item-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.2s ease;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  position: relative;
}
.item-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.item-card:hover {
  transform: translateY(-6px) scale(1.05);
  background: var(--bg-card-hover);
  z-index: 2;
}
.item-card:hover .item-img { transform: scale(1.1); }
.item-card:hover .item-img-wrap::after { opacity: 1; }
.item-card:hover .card-border-sweep { opacity: 1; }

.card-border-sweep {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: border-sweep 2s linear infinite;
}

.item-img-wrap {
  position: relative;
  overflow: hidden;
}
.item-img-wrap::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  transform: skewX(-15deg);
}
.item-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.item-card-body {
  padding: 10px 12px 12px;
  background: rgba(10,15,35,0.9);
}

/* =============================================
   SKIN STRIP TOOLTIP
============================================= */
.skin-strip-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  position: relative;
}
.skin-strip-avatar:hover {
  transform: scale(1.2);
  border-color: var(--gold-primary);
}
.skin-strip-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; display: block; }
.strip-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(5,8,20,0.95);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 8px;
  padding: 6px 10px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.strip-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(240,180,41,0.3);
}
.strip-tooltip-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.3;
}
.strip-tooltip-rarity {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}
.skin-strip-avatar:hover .strip-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.skin-strip {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* --- Dots --- */
.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.25);
}
.dot-indicator.active {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-glow);
  width: 24px;
  border-radius: 4px;
}

/* --- Gold divider --- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.6), transparent);
}

/* =============================================
   FEATURE CARDS — glassmorphism
============================================= */
.feature-card {
  background: rgba(10,15,35,0.6);
  border: 1px solid rgba(240,180,41,0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(240,180,41,0.5);
  box-shadow: 0 0 40px rgba(240,180,41,0.15), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
  background: rgba(15,22,50,0.75);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .feat-icon { animation: icon-pop 0.4s ease; }

/* --- Shimmer text --- */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-primary) 0%, #fff9c0 40%, var(--gold-primary) 60%, #c8860a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* --- Limited badge --- */
.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.4);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #05080f; }
::-webkit-scrollbar-thumb { background: rgba(240,180,41,0.3); border-radius: 3px; }

/* --- Available block --- */
.available-block {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  backdrop-filter: blur(6px);
  font-size: 0.8rem;
  color: #8899aa;
}

/* =============================================
   SECTION REVEAL + STAGGER
============================================= */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Price strikethrough --- */
.price-strike {
  position: relative;
  display: inline-block;
  opacity: 0.55;
}
.price-strike::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: white;
  transform: translateY(-50%) rotate(-7deg);
  opacity: 0.8;
}

/* =============================================
   REDIRECT OVERLAY
============================================= */
#redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.25), transparent 70%),
              radial-gradient(ellipse at 50% 100%, #0f1a3a, #05080f);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#redirect-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.redirect-logo {
  width: 56px;
  height: 56px;
  animation: redirect-spin 1s linear infinite;
}
@keyframes redirect-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.redirect-text {
  font-family: "Heading-Now", "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fn-yellow);
  animation: badge-pulse 1s ease-in-out infinite;
}
.redirect-sub {
  font-size: 0.75rem;
  color: #8899aa;
  letter-spacing: 0.06em;
}

/* --- Nav patch --- */
.epic-wf { --eg-global-nav-height: 4.5rem; }
.wf-nav-open { height: 100vh; overflow: hidden; position: fixed; top: 0; left: 0; width: 100vw; }

/* =============================================
   SECOND CTA glassmorphism
============================================= */
.second-cta-box {
  position: relative;
  background: rgba(10,15,35,0.7);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(240,180,41,0.08), 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* =============================================
   MOBILE
============================================= */
@media (max-width: 640px) {
  .carousel-slide.active { width: 85vw; max-width: 300px; }
  .carousel-slide.prev,
  .carousel-slide.next   { width: 60px; opacity: 0.25; }
  .timer-number          { font-size: 2rem; }
  .timer-block           { min-width: 58px; padding: 10px 10px; }
  #sticky-timer          { bottom: 12px; right: 12px; padding: 8px 12px; }
  .sticky-t-num          { font-size: 1rem; }
  .rarity-stats-grid     { flex-direction: column; align-items: stretch; }
  .rarity-stat-pill      { justify-content: center; }
}
@media (max-width: 480px) {
  .cta-btn               { width: 100%; box-sizing: border-box; }
}

/* =============================================
   1. ANIMATED TITLE — letter glitch
============================================= */
.hero-title-letters { display: inline-flex; flex-wrap: wrap; gap: 0; }
.hero-title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px) rotate(-4deg) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-title-letter.in {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}
@keyframes glitch-rgb {
  0%   { filter: none; transform: none; }
  10%  { filter: hue-rotate(90deg) saturate(2); transform: skewX(-3deg) scaleX(1.02); }
  12%  { filter: hue-rotate(-90deg) saturate(2); transform: skewX(3deg); }
  14%  { filter: none; transform: none; }
  60%  { filter: none; transform: none; }
  61%  { filter: hue-rotate(120deg) saturate(3) brightness(1.3); transform: skewX(-2deg); }
  63%  { filter: hue-rotate(-120deg) saturate(3); }
  65%  { filter: none; transform: none; }
  100% { filter: none; transform: none; }
}
.hero-title-glow.glitch-active {
  animation: glitch-rgb 5s ease-in-out infinite, shimmer 3s linear infinite;
}

/* =============================================
   2. PLAYER COUNTER
============================================= */
.player-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8899aa;
  letter-spacing: 0.04em;
}
.player-counter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.9);
  animation: player-dot-pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes player-dot-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(34,197,94,0.9); }
  50% { transform: scale(1.35); box-shadow: 0 0 14px rgba(34,197,94,1); }
}
.player-counter-num {
  color: #22c55e;
  font-family: "Heading-Now", monospace;
  font-size: 0.88rem;
}

/* =============================================
   3. 3D TILT + HOLOGRAPHIC on cards
============================================= */
.item-card {
  will-change: transform;
  transform-style: preserve-3d;
}
.item-card .holo-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.04) 35%,
    rgba(0,212,255,0.08) 45%,
    rgba(168,85,247,0.08) 55%,
    rgba(240,180,41,0.06) 65%,
    transparent 80%
  );
  background-size: 200% 200%;
  mix-blend-mode: screen;
}
.item-card:hover .holo-shimmer {
  opacity: 1;
}

/* =============================================
   4. CAROUSEL BLUR BG
============================================= */
.carousel-blur-bg {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(24px) saturate(1.4) brightness(0.3);
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  overflow: hidden;
}
.carousel-blur-bg.visible { opacity: 1; }
.carousel-wrapper { position: relative; overflow: visible; border-radius: 0; }
.carousel-track { position: relative; z-index: 1; }
.carousel-nav-btn { z-index: 10; }

/* =============================================
   5. MARQUEE BANNER
============================================= */
.marquee-banner {
  overflow: hidden;
  background: rgba(240,180,41,0.07);
  border-top: 1px solid rgba(240,180,41,0.2);
  border-bottom: 1px solid rgba(240,180,41,0.2);
  padding: 10px 0;
  margin: 8px 0 32px;
  position: relative;
}
.marquee-banner::before,
.marquee-banner::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-banner::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep, #05080f), transparent);
}
.marquee-banner::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep, #05080f), transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 18s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  white-space: nowrap;
  font-family: "Heading-Now", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 0 20px;
  opacity: 0.75;
}
.marquee-sep {
  color: rgba(240,180,41,0.4);
  padding: 0 4px;
  font-size: 0.55rem;
  align-self: center;
}

/* =============================================
   6. FLIP-CLOCK TIMER upgrade
============================================= */
.timer-block {
  perspective: 400px;
}
.timer-number {
  transform-origin: center bottom;
}
@keyframes flip-card {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(-90deg); opacity: 0.4; }
  51%  { transform: rotateX(90deg);  opacity: 0.4; }
  100% { transform: rotateX(0deg);   opacity: 1; }
}
.timer-number.flip { animation: flip-card 0.28s ease; }
/* Urgent red pulse lines on edges */
@keyframes urgent-edge-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,68,68,0.4), 0 0 20px rgba(255,68,68,0.2); }
  50%       { box-shadow: 0 0 0 2px rgba(255,68,68,0.8), 0 0 40px rgba(255,68,68,0.5); }
}
.timer-block.urgent {
  animation: urgent-edge-pulse 0.8s ease-in-out infinite !important;
  border-color: rgba(255,68,68,0.6) !important;
}
.timer-block.urgent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255,40,40,0.04);
  pointer-events: none;
}



/* =============================================
   8. AURORA UPGRADE + NOISE
============================================= */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.028;
  mix-blend-mode: overlay;
}
.aurora-layer {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.12;
  animation: aurora-float 12s ease-in-out infinite;
}
@keyframes aurora-float {
  0%   { transform: translate(0, 0) scale(1);      opacity: 0.12; }
  33%  { transform: translate(3%, 2%) scale(1.06);  opacity: 0.2; }
  66%  { transform: translate(-2%, 3%) scale(0.96); opacity: 0.15; }
  100% { transform: translate(0, 0) scale(1);       opacity: 0.12; }
}

/* =============================================
   9. SECOND CTA border orbit
============================================= */
.cta-orbit-container {
  position: relative;
  display: inline-block;
}
@keyframes orbit {
  from { offset-distance: 0%; }
  to   { offset-distance: 100%; }
}
.orbit-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fn-yellow);
  box-shadow: 0 0 10px rgba(247,255,25,0.9), 0 0 20px rgba(247,255,25,0.4);
  pointer-events: none;
  offset-path: border-box;
  animation: orbit 2.5s linear infinite;
}
.orbit-dot-2 {
  animation-delay: -1.25s;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,212,255,0.9), 0 0 20px rgba(0,212,255,0.4);
}
.cta-skin-blur {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.cta-skin-blur img {
  position: absolute;
  right: -40px;
  top: -20px;
  height: 140%;
  object-fit: cover;
  object-position: top;
  opacity: 0.07;
  filter: blur(2px) saturate(1.5);
}
.second-cta-box > * { position: relative; z-index: 1; }

/* =============================================
   10. SELECTION + SCROLLBAR GLOW + FOOTER LINE
============================================= */
::selection {
  background: rgba(240,180,41,0.35);
  color: #f7ff19;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #05080f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-primary), #a855f7);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(240,180,41,0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f7ff19, var(--neon-cyan));
  box-shadow: 0 0 10px rgba(247,255,25,0.7);
}
fortnite-footer {
  border-top: 1px solid rgba(240,180,41,0.2);
  display: block;
}

/* =============================================
   SKIN PICKER MODAL
============================================= */
@keyframes sp-in {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes sp-out {
  from { opacity: 1; transform: scale(1) translateY(0); }
  to   { opacity: 0; transform: scale(0.96) translateY(8px); }
}
@keyframes sp-check-pop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes sp-img-in {
  from { opacity: 0; transform: translateX(12px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

#skin-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,8,20,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}
#skin-picker-overlay.active {
  opacity: 1;
  pointer-events: all;
}
#skin-picker-modal {
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  background: rgba(8,12,28,0.97);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(240,180,41,0.1), 0 40px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: sp-in 0.35s cubic-bezier(0.34,1.3,0.64,1) both;
}
#skin-picker-modal.closing {
  animation: sp-out 0.22s ease forwards;
}

/* HEADER */
.sp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(240,180,41,0.15);
  background: rgba(240,180,41,0.04);
  flex-shrink: 0;
  gap: 12px;
}
.sp-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-title-text {
  font-size: 1.1rem;
  background: linear-gradient(90deg, #f0b429, #f7ff19, #f0b429);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.sp-header-step {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: #556677;
  font-weight: 700;
  text-transform: uppercase;
}
.sp-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #8899aa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.sp-close:hover {
  border-color: rgba(240,180,41,0.5);
  color: var(--gold-primary);
  background: rgba(240,180,41,0.1);
}

/* BODY */
.sp-body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* LIST */
.sp-list {
  width: 300px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sp-filters {
  display: flex;
  gap: 4px;
  padding: 12px 12px 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.sp-filter-btn {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #8899aa;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: "Montserrat", sans-serif;
}
.sp-filter-btn:hover {
  border-color: rgba(240,180,41,0.4);
  color: var(--gold-primary);
}
.sp-filter-btn.active {
  background: rgba(240,180,41,0.15);
  border-color: rgba(240,180,41,0.5);
  color: var(--gold-primary);
}
.sp-items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,180,41,0.3) transparent;
}
.sp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.18s ease;
  position: relative;
}
.sp-item:hover {
  background: rgba(255,255,255,0.04);
  transform: translateX(3px);
}
.sp-item.active {
  background: rgba(240,180,41,0.07);
}
.sp-item-thumb {
  width: 44px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
}
.sp-item-info {
  flex: 1;
  min-width: 0;
}
.sp-item-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.sp-item-season {
  font-size: 0.6rem;
  color: #556677;
  margin-top: 2px;
}
.sp-item-badge {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-item-check {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: none;
  align-items: center;
  justify-content: center;
}
.sp-item.active .sp-item-check {
  display: flex;
  animation: sp-check-pop 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.sp-item.active .sp-item-badge { display: none; }

/* PREVIEW */
.sp-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.sp-preview-art {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,8,20,0.6);
}
.sp-preview-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center top;
  filter: blur(30px) saturate(1.4) brightness(0.28);
  transition: background-image 0.3s ease;
  pointer-events: none;
}
.sp-preview-img {
  position: relative;
  z-index: 1;
  height: 100%;
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  animation: sp-img-in 0.25s ease both;
}
.sp-preview-rarity-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.sp-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.3s ease;
}
.sp-corner-tl { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; border-radius: 2px 0 0 0; }
.sp-corner-tr { top: 12px; right: 12px; border-top: 2px solid; border-right: 2px solid; border-radius: 0 2px 0 0; }
.sp-corner-bl { bottom: 12px; left: 12px; border-bottom: 2px solid; border-left: 2px solid; border-radius: 0 0 0 2px; }
.sp-corner-br { bottom: 12px; right: 12px; border-bottom: 2px solid; border-right: 2px solid; border-radius: 0 0 2px 0; }

.sp-preview-info {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,12,28,0.9);
  flex-shrink: 0;
}
.sp-preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sp-preview-name {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1;
}
.sp-preview-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-preview-season {
  font-size: 0.6rem;
  color: #556677;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}
.sp-never-returned {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,60,60,0.08);
  border: 1px solid rgba(255,60,60,0.2);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ff6060;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-never-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 6px #ff4444;
  animation: badge-pulse 1s ease-in-out infinite;
  flex-shrink: 0;
}
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}
.sp-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 10px;
}
.sp-stat-label {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #445566;
  font-weight: 700;
  margin-bottom: 4px;
}
.sp-stat-val {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ccd6e0;
}

/* FOOTER */
.sp-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid rgba(240,180,41,0.15);
  background: rgba(5,8,20,0.95);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.sp-footer-chosen {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.sp-footer-img {
  width: 36px;
  height: 48px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  border: 1px solid rgba(240,180,41,0.3);
  flex-shrink: 0;
}
.sp-footer-chosen-label {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #445566;
  font-weight: 700;
  margin-bottom: 3px;
}
.sp-footer-chosen-name {
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: "Heading-Now", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sp-claim-btn:hover { transform: scale(1.04); filter: brightness(1.1); }
.sp-claim-btn:active { transform: scale(0.97); }
.sp-claim-all {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-claim-all:hover { opacity: 1; }

/* Mobile */
@media (max-width: 700px) {
  #skin-picker-modal { max-height: 100vh; border-radius: 16px 16px 0 0; margin-top: auto; }
  .sp-body { flex-direction: column; }
  .sp-list { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); max-height: 200px; }
  .sp-items { display: flex; flex-direction: row; overflow-x: auto; overflow-y: hidden; padding: 4px 8px; }
  .sp-item { flex-direction: column; align-items: center; text-align: center; padding: 8px 10px; min-width: 80px; border-left: none; border-bottom: 3px solid transparent; }
  .sp-item:hover { transform: translateY(-3px); }
  .sp-item-thumb { width: 52px; height: 68px; }
  .sp-item-season { display: none; }
  .sp-stats { grid-template-columns: repeat(2,1fr); }
  .sp-never-returned { display: none; }
  .sp-footer { gap: 10px; }
  .sp-claim-btn { padding: 12px 18px; font-size: 0.85rem; }
  .sp-footer-chosen { min-width: 0; }
}
