/* ===================================================================
   COLA MC — BananaSMP-Inspired Theme
   Bright pixel-art aesthetic, dark blue hero, big yellow cards
   =================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === LIGHT BLUE CLEAN PALETTE === */
  --bg-deep:    #dbeafe;    /* lightest sky blue */
  --bg-base:    #f0f9ff;    /* near white sky */
  --bg-elevated: #ffffff;   /* pure white */
  --bg-card:    rgba(255, 255, 255, 0.85);
  --bg-glass:   rgba(255, 255, 255, 0.6);
  --bg-glass-hi: rgba(255, 255, 255, 0.95);
  --bg-dark:    #1e293b;
  --bg-banner:  #e0f2fe;

  /* === MAIN ACCENTS (kept as legacy aliases) === */
  --yellow:     #fbbf24;
  --yellow-hi:  #fcd34d;
  --yellow-dk:  #d97706;
  --yellow-soft:#fde68a;

  --cola:       #dc2626;
  --cola-dk:    #7f1d1d;
  --cola-hi:    #ef4444;

  --cyan:       #0284c7;
  --cyan-hi:    #38bdf8;
  --cyan-dk:    #075985;
  --cyan-soft:  #7dd3fc;

  --green:      #16a34a;
  --orange:     #f97316;

  /* === TEXT (dark for light bg) === */
  --text:       #0f172a;    /* near black */
  --text-dim:   #475569;    /* slate */
  --text-dark:  #1a1530;
  --text-mute:  #94a3b8;

  /* === PREMIUM GOLDS === */
  --gold:       #d97706;
  --gold-soft:  #f59e0b;
  --gold-light: #fde68a;
  --gold-dark:  #92400e;

  /* === WARM === */
  --purple:     #a78bfa;
  --red:        #dc2626;
  --green-dk:   #15803d;

  /* === BORDERS === */
  --border:     rgba(2, 132, 199, 0.2);
  --border-gold: rgba(217, 119, 6, 0.3);
  --border-hi:  rgba(14, 165, 233, 0.4);

  /* === SHADOWS === */
  --shadow-md:  0 4px 12px rgba(2, 132, 199, 0.1);
  --shadow-lg:  0 8px 24px rgba(2, 132, 199, 0.15);
  --shadow-glow:0 0 30px rgba(56, 189, 248, 0.4);
  --shadow-deep: 0 18px 50px rgba(2, 132, 199, 0.2);

  /* === GRADIENTS === */
  --grad-sky:   linear-gradient(135deg, #38bdf8 0%, #7dd3fc 50%, #fbbf24 100%);
  --grad-gold:  linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --grad-sea:   linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --grad-ocean: linear-gradient(180deg, #dbeafe 0%, #f0f9ff 50%, #ffffff 100%);
  --grad-hero:  linear-gradient(180deg, #bae6fd 0%, #dbeafe 40%, #f0f9ff 100%);

  /* === LAYOUT === */
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --container:  1180px;
  --header-h:   64px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Bungee', 'Impact', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* ===================== HEADER (Compact Nav with Dropdown) ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 2px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 4px 24px rgba(2, 132, 199, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  min-height: var(--header-h);
  flex-wrap: nowrap;
}
.nav > a {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cyan-dark);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
  background: transparent;
  border: 2px solid transparent;
}
.nav > a:hover {
  color: var(--gold-dark);
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-1px);
}
.nav > a.active {
  color: var(--gold-dark);
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.nav-admin,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 0.35rem;
  border-radius: 14px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  color: var(--cyan-dark);
  transition: all 0.2s ease;
}
.nav-admin:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(2, 132, 199, 0.22);
}
.nav-admin svg,
.theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  color: #fff;
  border-color: var(--cyan);
}
.theme-toggle:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: var(--gold-dark);
}

body.mode-dark {
  background: linear-gradient(180deg, #020812 0%, #081425 50%, #0f172a 100%);
  color: #e2e8f0;
}
body.mode-dark .site-header {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
body.mode-dark .info-bar,
body.mode-dark .hero,
body.mode-dark .welcome-banner,
body.mode-dark .season-reveal,
body.mode-dark .featured-product-card,
body.mode-dark .admin-card,
body.mode-dark .footer-col,
body.mode-dark .site-footer {
  background: var(--bg-card);
}
body.mode-dark {
  --bg-deep:    #0b1221;
  --bg-base:    #111827;
  --bg-elevated:#111827;
  --bg-card:    rgba(15, 23, 42, 0.92);
  --bg-glass:   rgba(15, 23, 42, 0.55);
  --bg-glass-hi:rgba(15, 23, 42, 0.82);
  --bg-dark:    #020617;
  --bg-banner:  #111827;
  --text:       #e2e8f0;
  --text-dim:   #94a3b8;
  --text-muted: #cbd5e1;
  --cyan:       #38bdf8;
  --cyan-dk:    #60a5fa;
  --gold:       #fbbf24;
  --gold-dark:  #d97706;
  --cola:       #f87171;
  --cola-dk:    #ef4444;
  --border:     rgba(56, 189, 248, 0.16);
}

/* === "More" Dropdown Button === */
.nav-more { position: relative; }
.nav-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  border: 2px solid var(--cyan);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}
.nav-more-btn:hover,
.nav-more.open .nav-more-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.nav-more-btn svg {
  width: 12px; height: 12px;
  transition: transform 0.3s;
}
.nav-more.open .nav-more-btn svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.2);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown,
.nav-more.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; right: 20px;
  width: 14px; height: 14px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
  transform: rotate(45deg);
}
.nav-dropdown a {
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.15s;
  text-decoration: none;
}
.nav-dropdown a:hover {
  background: rgba(2, 132, 199, 0.1);
  color: var(--cyan-dark);
  transform: translateX(4px);
}
.nav-dropdown a.active {
  background: rgba(217, 119, 6, 0.12);
  color: var(--gold-dark);
}
.nav-dropdown .nd-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.nav-toggle { display: none; }

/* ===================== HERO (Light Sky & Island Premium) ===================== */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, #bae6fd 0%, #dbeafe 30%, #e0f2fe 70%, #f0f9ff 100%);
  padding: 3rem 0 6rem;
  overflow: hidden;
  min-height: 540px;
}
/* Sky gradient overlay (light) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(125, 211, 252, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 60%, rgba(186, 230, 253, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(251, 191, 36, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
/* Subtle pixel grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.25;
}

/* Floating clouds */
.cloud {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
  filter: drop-shadow(0 4px 16px rgba(56, 189, 248, 0.4));
}
.cloud svg { display: block; }
.cloud.c1 { top: 8%; left: -8%; animation: cloud-drift 90s linear infinite; }
.cloud.c2 { top: 18%; left: -15%; animation: cloud-drift 120s linear infinite; animation-delay: -30s; }
.cloud.c3 { top: 5%; left: -20%; animation: cloud-drift 150s linear infinite; animation-delay: -60s; }
.cloud.c4 { top: 26%; left: -10%; animation: cloud-drift 110s linear infinite; animation-delay: -45s; }
@keyframes cloud-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(120vw); }
}

/* Island silhouette at bottom of hero (lighter tones) */
.island-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 2;
}
.island-line svg { width: 100%; height: 100%; display: block; }

/* Floating pixel art items */
.float-item {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(2, 132, 199, 0.4));
  animation: floaty 6s ease-in-out infinite;
}
.float-item.fi-1 { top: 8%; left: 6%; width: 90px; animation-delay: 0s; animation-duration: 7s; }
.float-item.fi-2 { top: 14%; right: 7%; width: 110px; animation-delay: -1.5s; animation-duration: 8s; }
.float-item.fi-3 { top: 60%; left: 3%; width: 130px; animation-delay: -3s; animation-duration: 9s; }
.float-item.fi-4 { top: 38%; right: 4%; width: 100px; animation-delay: -2s; animation-duration: 7.5s; }
.float-item.fi-5 { bottom: 8%; left: 14%; width: 90px; animation-delay: -4s; animation-duration: 6.5s; }
.float-item.fi-6 { bottom: 10%; right: 16%; width: 120px; animation-delay: -1s; animation-duration: 8.5s; }
.float-item.fi-7 { top: 30%; left: 14%; width: 80px; animation-delay: -3.5s; animation-duration: 7s; opacity: 0.9; }
.float-item.fi-8 { top: 22%; right: 22%; width: 70px; animation-delay: -2.5s; animation-duration: 6s; opacity: 0.9; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}

/* Hero layout — 3 columns */
.hero-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
}

/* Hero CTA boxes (Light theme) */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.18);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-cta:hover { transform: translateY(-3px); border-color: var(--cyan-dark); box-shadow: 0 10px 28px rgba(2, 132, 199, 0.3); }
.hero-cta .icon-bubble {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}
.hero-cta .icon-bubble svg { width: 20px; height: 20px; }
.hero-cta .text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-cta .label { font-weight: 800; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--cyan-dark); }
.hero-cta .sub { font-size: 0.78rem; color: var(--gold-dark); font-weight: 700; }

.hero-cta.discord .icon-bubble { background: linear-gradient(135deg, #5865F2, #6974f4); }
.hero-cta.discord .sub { color: #5865F2; }

/* Center logo (Light) */
.hero-logo {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.hero-logo .icon-wrap {
  display: inline-block;
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,0.25));
  animation: bob 4s ease-in-out infinite;
}
.hero-logo .icon-wrap svg { width: 90px; height: 90px; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-8px) rotate(5deg); }
}
.hero-logo .logo-text {
  font-family: 'Bungee', 'Impact', sans-serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--gold-dark);
  text-shadow:
    3px 3px 0 var(--yellow),
    5px 5px 0 rgba(0,0,0,0.18),
    0 0 30px rgba(251, 191, 36, 0.5);
  letter-spacing: 0.02em;
  line-height: 0.95;
  display: block;
}
.hero-logo .logo-sub {
  display: inline-block;
  font-family: 'Bungee', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--cola), var(--cola-hi));
  padding: 0.2rem 1rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: 3px solid var(--cola-dk);
  text-shadow: 2px 2px 0 var(--cola-dk);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
  transform: rotate(-3deg);
}

/* ===================== WELCOME BANNER (Light) ===================== */
.welcome-banner {
  position: relative;
  z-index: 4;
  margin-top: -1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 8px 28px rgba(2, 132, 199, 0.15);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.welcome-banner .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.welcome-banner .logo-mini {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--yellow);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.welcome-banner .logo-mini svg { width: 32px; height: 32px; color: var(--cola-dk); }
.welcome-banner .text-block .name {
  font-family: 'Bungee', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1;
}
.welcome-banner .text-block .sub {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 0.3rem;
}

.welcome-banner .actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* Angled action buttons in welcome banner (light) */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 2px solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s, box-shadow 0.15s;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
.action-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15); }
.action-btn:active { transform: translateY(2px); }
.action-btn .small { font-size: 0.7rem; opacity: 0.85; font-weight: 600; display: block; line-height: 1; }
.action-btn .big { font-size: 1rem; font-weight: 800; display: block; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.04em; }

.action-btn.cyan { background: linear-gradient(135deg, var(--cyan), var(--cyan-soft)); color: #fff; border-color: var(--cyan-dark); }
.action-btn.cyan:hover { background: linear-gradient(135deg, var(--cyan-dark), var(--cyan)); }
.action-btn.yellow { background: linear-gradient(135deg, var(--yellow), var(--yellow-hi)); color: var(--cola-dk); border-color: var(--yellow-dk); }
.action-btn.yellow:hover { background: linear-gradient(135deg, var(--yellow-dk), var(--yellow)); }
.action-btn .icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: inherit;
}
.action-btn .icon-circle svg { width: 22px; height: 22px; }

/* ===================== CATEGORY GRID ===================== */
.cat-section {
  padding: 2.5rem 0;
  background: var(--bg-deep);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.cat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.2rem;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  border: 4px solid rgba(0,0,0,0.15);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 180px;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cat-card:hover {
  transform: translateY(-6px);
  background: var(--yellow-hi);
  box-shadow: 0 16px 0 rgba(0,0,0,0.3);
}
.cat-card .text {
  position: relative;
  z-index: 2;
}
.cat-card .title {
  font-family: 'Bungee', sans-serif;
  font-size: 2.2rem;
  color: var(--text);
  text-shadow: 3px 3px 0 var(--cola-dk);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cat-card .sub {
  color: var(--cola-dk);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
}
.cat-card .art {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: grid; place-items: center;
  flex-shrink: 0;
  image-rendering: pixelated;
}
.cat-card .art svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.3));
  image-rendering: pixelated;
}

/* Variant: red card for SPECIAL */
.cat-card.red {
  background: var(--cola);
}
.cat-card.red .title { text-shadow: 3px 3px 0 var(--cola-dk); }
.cat-card.red:hover { background: var(--cola-hi); }
.cat-card.red .sub { color: rgba(255,255,255,0.85); }

/* ===================== BUTTONS (Light Theme) ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(2, 132, 199, 0.2); }
.btn:active { transform: translateY(2px); }
.btn-primary { background: linear-gradient(135deg, var(--yellow), var(--yellow-hi)); color: var(--cola-dk); border-color: var(--yellow-dk); }
.btn-primary:hover { background: linear-gradient(135deg, var(--yellow-hi), var(--yellow)); }
.btn-discord { background: #5865F2; color: #fff; border-color: #4752c4; }
.btn-discord:hover { background: #6974f4; }
.btn-ghost { background: rgba(255, 255, 255, 0.7); color: var(--cyan-dark); border-color: var(--cyan); }
.btn-ghost:hover { background: var(--cyan); color: #fff; border-color: var(--cyan-dark); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }

/* ===================== SECTIONS (Light) ===================== */
.section { padding: 3rem 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cyan-dark);
  margin-bottom: 0.6rem;
}
.section-head p { color: var(--text-dim); }

.eyebrow {
  display: inline-block;
  font-family: 'Bungee', sans-serif;
  font-size: 0.78rem;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(251, 191, 36, 0.15));
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 2px solid rgba(217, 119, 6, 0.3);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

/* ===================== FEATURE CARDS (Light) ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.feature {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(2, 132, 199, 0.15);
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}
.feature:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 8px 22px rgba(2, 132, 199, 0.15); }
.feature .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { font-family: 'Bungee', sans-serif; font-size: 1.1rem; color: var(--cyan-dark); margin-bottom: 0.4rem; }
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* ===================== STATS (Light) ===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.4rem 1.2rem;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(2, 132, 199, 0.15);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}
.stat .num {
  font-family: 'Bungee', sans-serif;
  font-size: 2rem;
  color: var(--cyan-dark);
  display: block;
}
.stat .label {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===================== RULES ===================== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.2rem;
}
.rule-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-banner);
  border: 2px solid rgba(91, 191, 238, 0.2);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, border-color 0.2s;
}
.rule-card:hover { transform: translateY(-3px); border-color: var(--yellow); }
.rule-card .num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.rule-card.warn .num { background: var(--cola); color: #fff; }
.rule-card h3 { font-family: 'Bungee', sans-serif; font-size: 1rem; color: var(--yellow); margin-bottom: 0.4rem; }
.rule-card p { color: var(--text-dim); font-size: 0.95rem; }

.callout {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(196, 30, 58, 0.18);
  border: 2px solid var(--cola);
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 1.5rem;
}
.callout svg { width: 28px; height: 28px; color: var(--cola); flex-shrink: 0; }
.callout h4 { color: var(--cola-hi); font-family: 'Bungee', sans-serif; font-size: 1rem; margin-bottom: 0.3rem; }
.callout p { color: var(--text-dim); font-size: 0.95rem; }

/* ===================== STAFF ===================== */
.staff-tier { margin-bottom: 2.5rem; }
.staff-tier-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed rgba(255,201,64,0.3);
}
.staff-tier-head .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--yellow);
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
}
.staff-tier-head h2 { font-family: 'Bungee', sans-serif; color: var(--yellow); text-shadow: 2px 2px 0 var(--cola-dk); font-size: 1.6rem; }
.staff-tier-head .sub { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.staff-card {
  padding: 1.6rem 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-banner);
  border: 2px solid rgba(91, 191, 238, 0.2);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.staff-card.featured {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-hi));
  border-color: var(--cola-dk);
  box-shadow: var(--shadow-lg);
}
.staff-card.featured .role { color: var(--cola-dk); }
.staff-card.featured h3 { color: var(--cola-dk); text-shadow: 2px 2px 0 rgba(0,0,0,0.2); }
.staff-card:hover { transform: translateY(-4px); border-color: var(--yellow); }

.avatar-lg {
  width: 80px; height: 80px;
  margin: 0 auto 0.8rem;
  border-radius: 16px;
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 1.7rem;
  background: var(--yellow);
  color: var(--cola-dk);
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(0,0,0,0.15);
}
.staff-card.featured .avatar-lg {
  background: var(--cola);
  color: var(--yellow);
}
.avatar-lg.cyan { background: var(--cyan); color: var(--cola-dk); }
.avatar-lg.purple { background: #a26dff; color: #fff; }
.avatar-lg.green { background: var(--green); color: #fff; }
.avatar-lg.pink { background: #ff6b9d; color: #fff; }

.staff-card h3 { font-family: 'Bungee', sans-serif; color: var(--yellow); font-size: 1.05rem; margin-bottom: 0.15rem; }
.staff-card .role { color: var(--cyan); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }
.staff-card .role.purple { color: #c79cff; }
.staff-card .role.green { color: var(--green); }
.staff-card .desc { color: var(--text-dim); font-size: 0.88rem; margin-top: 0.6rem; }

/* ===================== STORE ===================== */
.store-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.4rem;
  align-items: flex-start;
}
.store-cats {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.6rem;
  border-radius: var(--radius);
  background: var(--bg-banner);
  border: 2px solid rgba(91, 191, 238, 0.2);
}
.cat-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: transparent;
  border: 2px solid transparent;
  transition: all 0.15s;
}
.cat-btn:hover { color: var(--text); background: var(--bg-base); }
.cat-btn.active {
  color: var(--cola-dk);
  background: var(--yellow);
  border-color: var(--cola-dk);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.product {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-banner);
  border: 2px solid rgba(91, 191, 238, 0.2);
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}
.product:hover { transform: translateY(-3px); border-color: var(--yellow); }
.product.featured {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-hi) 100%);
  border-color: var(--cola-dk);
  color: var(--cola-dk);
  box-shadow: var(--shadow-lg);
}
.product.featured .badge { color: var(--cola-dk); background: rgba(0,0,0,0.15); }
.product.featured .price { background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.2); }
.product.featured .price .usd { color: var(--cola-dk); }
.product.featured .price .alt { color: var(--cola-dk); opacity: 0.7; }
.product.featured h3 { color: var(--cola-dk); }
.product.featured .desc { color: var(--cola-dk); opacity: 0.85; }
.product .badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: rgba(255,201,64,0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
}
.product h3 { font-family: 'Bungee', sans-serif; color: var(--yellow); font-size: 1.05rem; margin-bottom: 0.4rem; }
.product .desc { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1rem; flex: 1; }
.product .price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.7rem;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  border: 2px solid rgba(91,191,238,0.15);
}
.product .price .usd { font-family: 'Bungee', sans-serif; font-size: 1.4rem; color: var(--yellow); }
.product .price .alt { color: var(--text-muted); font-size: 0.78rem; }
.product .actions { display: flex; gap: 0.5rem; }
.product .actions .btn { flex: 1; justify-content: center; padding: 0.6rem 0.8rem; font-size: 0.82rem; }

/* Cart panel */
.cart-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--bg-banner);
  border: 2px solid rgba(91, 191, 238, 0.3);
}
.cart-panel h3 {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 1.1rem;
}
.cart-count {
  background: var(--yellow); color: var(--cola-dk);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
}
.cart-items {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }
.cart-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem;
  background: var(--bg-base);
  border-radius: 10px;
  border: 2px solid rgba(91,191,238,0.15);
}
.cart-item .ci-name { flex: 1; font-size: 0.85rem; font-weight: 600; }
.cart-item .ci-price { color: var(--yellow); font-size: 0.85rem; font-weight: 700; }
.cart-item .ci-remove {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: all 0.15s;
}
.cart-item .ci-remove:hover { color: var(--cola-hi); background: rgba(196,30,58,0.2); }
.cart-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 2px dashed rgba(91,191,238,0.3);
  border-radius: 10px;
}
.cart-summary {
  border-top: 2px dashed rgba(255,201,64,0.3);
  padding-top: 0.9rem;
  margin-bottom: 1rem;
}
.cart-summary .row { display: flex; justify-content: space-between; margin-bottom: 0.4rem; color: var(--text-dim); font-size: 0.9rem; }
.cart-summary .row.total { color: var(--text); font-size: 1.05rem; font-weight: 700; }
.cart-summary .row.total .v { color: var(--yellow); font-family: 'Bungee', sans-serif; }
.pay-methods { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.pay-method {
  flex: 1;
  padding: 0.55rem;
  border-radius: 10px;
  border: 2px solid rgba(91,191,238,0.3);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--bg-base);
}
.pay-method.esewa { color: var(--green); }
.pay-method.upi { color: var(--yellow); }

/* ===================== LOGIN ===================== */
.login-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.login-art {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.login-art .bottle {
  width: 120px; height: 160px;
  margin: 0 auto 1.4rem;
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(4px 8px 0 rgba(0,0,0,0.3));
}
.login-art h2 { color: var(--yellow); text-shadow: 3px 3px 0 var(--cola-dk); margin-bottom: 0.4rem; font-size: 2rem; }
.login-art p { color: var(--text-dim); max-width: 360px; margin: 0 auto; }

.login-form-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}
.login-form-card h2 { font-size: 2rem; color: var(--yellow); text-shadow: 3px 3px 0 var(--cola-dk); margin-bottom: 0.3rem; }
.login-form-card .sub { color: var(--text-dim); margin-bottom: 1.8rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.input {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--bg-base);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,201,64,0.2);
}
.input::placeholder { color: var(--text-muted); }
.input-hint { color: var(--text-muted); font-size: 0.82rem; margin-top: 0.4rem; }
.input-error {
  background: rgba(196,30,58,0.2);
  border: 2px solid var(--cola);
  color: var(--cola-hi);
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
  font-weight: 600;
}
.input-error.show { display: block; }

.checkbox-row {
  display: flex; align-items: center; gap: 0.55rem;
  margin: 0.8rem 0 1.4rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--yellow);
}

/* ===================== SERVER INFO BAR (Light) ===================== */
.info-bar {
  background: linear-gradient(180deg, #dbeafe 0%, #e0f2fe 100%);
  border-top: 2px solid rgba(56, 189, 248, 0.3);
  border-bottom: 2px solid rgba(56, 189, 248, 0.3);
  padding: 0.7rem 0;
  font-size: 0.88rem;
}
.info-bar .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.info-item { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-dim); }
.info-item strong { color: var(--text); font-weight: 700; }
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.25); }
}
.copy-ip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--cyan);
  border-radius: 999px;
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.15);
}
.copy-ip:hover { background: var(--cyan); color: #fff; border-color: var(--cyan-dark); }
.copy-ip.copied { background: var(--green); color: #fff; border-color: var(--green); }

/* ===================== FOOTER (Light) ===================== */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, #dbeafe 0%, #bae6fd 100%);
  border-top: 3px solid rgba(2, 132, 199, 0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .name {
  font-family: 'Bungee', sans-serif;
  font-size: 1.4rem;
  color: var(--cyan-dark);
  display: inline-block;
  margin-bottom: 0.6rem;
}
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--cyan-dark); }

.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(2, 132, 199, 0.25);
  color: var(--cyan-dark);
  transition: all 0.15s;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.1);
}
.social-btn:hover { transform: translateY(-3px); border-color: var(--cyan); color: var(--cyan-dark); box-shadow: 0 6px 14px rgba(2, 132, 199, 0.2); }
.social-btn.discord:hover { color: #5865F2; border-color: #5865F2; }
.social-btn.youtube:hover { color: #ff0000; border-color: #ff0000; }
.social-btn.instagram:hover { color: #e1306c; border-color: #e1306c; }
.social-btn.tiktok:hover { color: #000; border-color: #000; }
.social-btn svg { width: 20px; height: 20px; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(2, 132, 199, 0.2);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-bottom .legal strong { color: var(--cyan-dark); }
.footer-bottom .legal a { color: var(--cyan-dark); }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ===================== TOAST (Light) ===================== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--gold);
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.2);
  font-size: 0.92rem;
  font-weight: 700;
  z-index: 100;
  opacity: 0;
  color: var(--text);
  transition: all 0.3s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { color: var(--green-dk); border-color: var(--green); }
.toast.error { color: var(--cola-dk); border-color: var(--cola); }
.toast.info { color: var(--cyan-dark); border-color: var(--cyan); }

/* ===================== PAGE HEADER ===================== */
.page-header {
  padding: 3rem 0 1.5rem;
  text-align: center;
  background: var(--bg-deep);
  border-bottom: 2px solid rgba(255,201,64,0.15);
  position: relative;
}
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--cola-dk);
  margin-bottom: 0.6rem;
}
.page-header p { color: var(--text-dim); max-width: 640px; margin: 0 auto; }
.crumbs {
  display: inline-flex; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.crumbs a { color: var(--yellow); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-row { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .hero-logo { order: -1; }
  .hero-cta { max-width: 360px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .store-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .login-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-item.fi-3, .float-item.fi-4, .float-item.fi-6, .float-item.fi-7, .float-item.fi-8 { display: none; }
}
@media (max-width: 720px) {
  :root { --header-h: 56px; }
  .nav { justify-content: space-between; padding: 0; }
  .nav a { display: none; }
  .nav a.active { display: inline-block; }
  .nav-toggle {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--bg-banner);
    color: var(--yellow);
  }
  .nav.open { flex-wrap: wrap; justify-content: center; padding: 0.6rem 1rem; }
  .nav.open a { display: inline-block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .info-bar .row { gap: 0.8rem; font-size: 0.8rem; }
  .welcome-banner { flex-direction: column; text-align: center; }
  .welcome-banner .left { flex-direction: column; }
  .cat-card { padding: 1.6rem 1.4rem; min-height: 140px; }
  .cat-card .title { font-size: 1.6rem; }
  .cat-card .art { width: 90px; height: 90px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .login-form-card, .login-art { padding: 1.6rem; }
}

/* ===================== FOCUS ===================== */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--cyan-dk); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* ===================== VOTE PAGE ===================== */
.vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.vote-card {
  background: var(--bg-banner);
  border: 3px solid rgba(91, 191, 238, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.vote-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.vote-card .reward-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--green);
  color: #fff;
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.vote-card .icon-tile {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  border: 3px solid var(--cola-dk);
  box-shadow: var(--shadow-md);
}
.vote-card .icon-tile svg { width: 60px; height: 60px; }
.vote-card .name {
  font-family: 'Bungee', sans-serif;
  font-size: 1.05rem;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--cola-dk);
  margin: 0;
}
.vote-card .desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.4;
}
.vote-card .reward {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
}
.vote-card .vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.7rem 1.4rem;
  background: var(--green);
  color: #06241a;
  font-family: 'Bungee', sans-serif;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 3px solid #1a4a30;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.vote-card .vote-btn:hover {
  transform: translateY(-2px);
  background: #5ef9c8;
  box-shadow: 0 8px 0 rgba(0,0,0,0.3);
}
.vote-card .vote-btn:active { transform: translateY(2px); }

.reward-banner {
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(46, 229, 157, 0.15), rgba(255, 201, 64, 0.1));
  border: 3px solid var(--green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.reward-banner .reward-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--green);
  border-radius: 14px;
  border: 3px solid #1a4a30;
  box-shadow: var(--shadow-md);
}
.reward-banner .reward-icon svg { width: 100%; height: 100%; }
.reward-banner .reward-info { flex: 1; min-width: 220px; }
.reward-banner .reward-info h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.reward-banner .reward-info p { color: var(--text-dim); font-size: 0.92rem; }
.reward-banner .reward-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  width: 100%;
  margin-top: 0.5rem;
}
.reward-banner .reward-item {
  padding: 0.7rem;
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(91,191,238,0.3);
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}
.reward-banner .reward-item span { color: var(--yellow); font-family: 'Bungee', sans-serif; }

/* ===================== APPLY PAGE ===================== */
.apply-form-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}
.apply-form-card h2 {
  font-family: 'Bungee', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--cola-dk);
  margin-bottom: 0.4rem;
}
.apply-form-card .sub {
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.position-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
  margin-top: 0.6rem;
}
.position-option {
  padding: 1rem;
  border: 3px solid rgba(91, 191, 238, 0.3);
  border-radius: 12px;
  background: var(--bg-base);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  position: relative;
}
.position-option:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.position-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.position-option.selected {
  border-color: var(--yellow);
  background: rgba(255, 201, 64, 0.15);
  box-shadow: var(--shadow-md);
}
.position-option .pos-icon {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  display: block;
}
.position-option .pos-name {
  font-family: 'Bungee', sans-serif;
  font-size: 0.9rem;
  color: var(--yellow);
  display: block;
}
.position-option .pos-desc {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}
.requirement-item {
  padding: 1rem;
  background: var(--bg-banner);
  border: 2px solid rgba(91, 191, 238, 0.3);
  border-radius: 12px;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.requirement-item .req-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--yellow);
  display: grid; place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}
.requirement-item h4 {
  font-family: 'Bungee', sans-serif;
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 0.2rem;
}
.requirement-item p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ===================== IMPROVED STORE CARDS ===================== */
.product-card-v2 {
  background: var(--bg-banner);
  border: 3px solid rgba(91, 191, 238, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card-v2:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
}
.product-card-v2.featured {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-hi) 100%);
  border-color: var(--cola-dk);
}
.product-card-v2 .p-art {
  background: rgba(0,0,0,0.3);
  padding: 1.2rem;
  display: grid;
  place-items: center;
  min-height: 140px;
  position: relative;
}
.product-card-v2.featured .p-art { background: rgba(0,0,0,0.15); }
.product-card-v2 .p-art svg {
  width: 100px;
  height: 100px;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.3));
}
.product-card-v2 .p-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-card-v2.featured .p-body { color: var(--cola-dk); }
.product-card-v2 .p-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: rgba(255,201,64,0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
}
.product-card-v2.featured .p-tag {
  background: rgba(0,0,0,0.2);
  color: var(--cola-dk);
}
.product-card-v2 .p-name {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.product-card-v2.featured .p-name { color: var(--cola-dk); }
.product-card-v2 .p-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  flex: 1;
}
.product-card-v2.featured .p-desc { color: rgba(0,0,0,0.7); }
.product-card-v2 .p-price-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  border: 2px solid rgba(91,191,238,0.2);
  margin-bottom: 1rem;
}
.product-card-v2.featured .p-price-tag {
  background: rgba(0,0,0,0.18);
  border-color: rgba(0,0,0,0.25);
}
.product-card-v2 .p-price-tag .coin-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--yellow);
  border-radius: 8px;
  border: 2px solid var(--cola-dk);
}
.product-card-v2.featured .p-price-tag .coin-icon {
  background: var(--cola);
  border-color: var(--cola-dk);
}
.product-card-v2 .p-price-tag .coin-icon svg { width: 100%; height: 100%; }
.product-card-v2 .p-price-tag .p-usd {
  font-family: 'Bungee', sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  line-height: 1;
}
.product-card-v2.featured .p-price-tag .p-usd { color: var(--cola-dk); }
.product-card-v2 .p-price-tag .p-alt {
  color: var(--text-muted);
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-left: auto;
  text-align: right;
}
.product-card-v2 .p-price-tag .p-alt span { display: inline-flex; align-items: center; gap: 0.3rem; }
.product-card-v2 .p-price-tag .p-alt .mini-coin {
  width: 14px; height: 14px;
  display: inline-block;
}
.product-card-v2 .p-actions {
  display: flex;
  gap: 0.5rem;
}
.product-card-v2 .p-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.6rem 0.6rem;
  font-size: 0.82rem;
}

/* Quick-shop bar at top of store */
.quick-shop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius);
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}
.quick-shop .qs-label {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 0.85rem;
  margin-right: 0.4rem;
}
.quick-shop .qs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-base);
  border: 2px solid rgba(91,191,238,0.3);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.quick-shop .qs-btn:hover { color: var(--cyan); border-color: var(--cyan); }
.quick-shop .qs-btn.active {
  color: var(--cola-dk);
  background: var(--yellow);
  border-color: var(--cola-dk);
}

/* Product grid for v2 cards */
.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

@media (max-width: 720px) {
  .products-grid-v2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .vote-grid { grid-template-columns: 1fr; }
  .apply-form-card { padding: 1.6rem; }
  .product-card-v2 .p-art svg { width: 80px; height: 80px; }
}

/* ===================== PREMIUM STATS (Light) ===================== */
.stats-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.stat-premium {
  padding: 1.6rem 1.2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(2, 132, 199, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
}
.stat-premium:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 12px 28px rgba(2, 132, 199, 0.18); }
.stat-premium .stat-icon {
  width: 52px; height: 52px;
  margin: 0 auto 0.7rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.stat-premium .stat-icon svg { width: 26px; height: 26px; }
.stat-premium .stat-num {
  font-family: 'Bungee', sans-serif;
  font-size: 1.8rem;
  color: var(--cyan-dark);
  display: block;
  line-height: 1;
}
.stat-premium .stat-label {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ===================== LEADERBOARDS ===================== */
.lb-tabs {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: var(--bg-banner);
  border: 2px solid rgba(91,191,238,0.2);
  border-radius: var(--radius);
}
.lb-tab {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
}
.lb-tab:hover { color: var(--text); background: var(--bg-base); }
.lb-tab.active {
  color: var(--cola-dk);
  background: var(--yellow);
  border-color: var(--cola-dk);
}

.lb-search {
  position: relative;
  margin-bottom: 1.5rem;
}
.lb-search input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lb-search input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,201,64,0.2);
}
.lb-search svg {
  position: absolute;
  left: 0.9rem; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-muted);
}

.lb-podium {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.podium-step {
  text-align: center;
  padding: 1.4rem 1rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  position: relative;
  transition: transform 0.2s;
}
.podium-step:hover { transform: translateY(-4px); }
.podium-step.gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255,210,77,0.2), rgba(0,229,255,0.08));
  padding-top: 2rem;
  padding-bottom: 1.6rem;
  transform: scale(1.05);
  order: 2;
}
.podium-step.silver {
  border-color: #c0c0c0;
  background: linear-gradient(135deg, rgba(192,192,192,0.15), rgba(91,191,238,0.08));
  order: 1;
}
.podium-step.bronze {
  border-color: #cd7f32;
  background: linear-gradient(135deg, rgba(205,127,50,0.15), rgba(91,191,238,0.08));
  order: 3;
}
.podium-step .rank-badge {
  width: 70px; height: 70px;
  margin: 0 auto 0.7rem;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--cola-dk);
}
.podium-step.gold .rank-badge { background: var(--gold); color: #5a3a00; }
.podium-step.silver .rank-badge { background: #c0c0c0; color: #2a2a2a; }
.podium-step.bronze .rank-badge { background: #cd7f32; color: #fff; }
.podium-step .player-name {
  font-family: 'Bungee', sans-serif;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.3rem;
  word-break: break-all;
}
.podium-step .player-score {
  font-family: 'Bungee', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  display: block;
}
.podium-step .player-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.podium-step .trophy {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.lb-table {
  width: 100%;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: collapse;
}
.lb-table thead {
  background: var(--bg-deep);
}
.lb-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: 'Bungee', sans-serif;
  font-size: 0.8rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.lb-table td {
  padding: 0.85rem 1.2rem;
  border-top: 2px solid rgba(91,191,238,0.15);
  font-size: 0.95rem;
}
.lb-table tbody tr {
  transition: background 0.15s;
}
.lb-table tbody tr:hover { background: rgba(91,191,238,0.08); }
.lb-rank-num {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 0.95rem;
}
.lb-player-cell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.lb-player-cell .player-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.lb-player-cell .player-name { font-weight: 700; }
.lb-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.lb-trend.up { background: rgba(46,229,157,0.15); color: var(--green); }
.lb-trend.down { background: rgba(255,77,109,0.15); color: var(--cola-hi); }
.lb-trend.same { background: rgba(155,155,155,0.15); color: var(--text-muted); }

/* Leaderboard preview (Light) */
.lb-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.lb-preview-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(2, 132, 199, 0.18);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.06);
}
.lb-preview-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 8px 22px rgba(2, 132, 199, 0.18); }
.lb-preview-card .lb-cat {
  font-family: 'Bungee', sans-serif;
  color: var(--cyan-dark);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.lb-preview-list {
  display: flex; flex-direction: column;
  gap: 0.5rem;
}
.lb-preview-list .lb-row {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem;
  background: rgba(2, 132, 199, 0.06);
  border-radius: 10px;
  font-size: 0.85rem;
}
.lb-preview-list .lb-row .lb-rank {
  font-family: 'Bungee', sans-serif;
  color: var(--gold-dark);
  min-width: 28px;
}
.lb-preview-list .lb-row .lb-name { flex: 1; font-weight: 700; color: var(--text); }
.lb-preview-list .lb-row .lb-val { color: var(--cyan-dark); font-weight: 700; }

/* ===================== NEWS / CHANGELOG ===================== */
.news-tabs {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: var(--bg-banner);
  border: 2px solid rgba(91,191,238,0.2);
  border-radius: var(--radius);
}
.news-tab {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s;
}
.news-tab:hover { color: var(--text); background: var(--bg-base); }
.news-tab.active {
  color: var(--cola-dk);
  background: var(--yellow);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.news-card {
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.news-thumb {
  height: 140px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-base), var(--bg-deep));
  position: relative;
  overflow: hidden;
}
.news-thumb svg {
  width: 100px; height: 100px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.news-thumb .badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  padding: 0.3rem 0.7rem;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  border-radius: 999px;
  border: 2px solid var(--cola-dk);
  box-shadow: var(--shadow-md);
}
.news-thumb .badge.update { background: var(--cyan); color: var(--cola-dk); }
.news-thumb .badge.changelog { background: var(--cola); color: #fff; border-color: var(--cola-dk); }
.news-thumb .badge.event { background: var(--green); color: #06241a; border-color: #1a4a30; }
.news-thumb .badge.community { background: var(--purple); color: #fff; border-color: var(--purple); }
.news-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.news-body h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.news-body p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  flex: 1;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 2px solid rgba(91,191,238,0.15);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.news-meta .author {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700;
  color: var(--text-dim);
}
.news-meta .author-avatar {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  display: grid; place-items: center;
}
.news-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.news-read-more {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.78rem;
  border-radius: 999px;
  border: 2px solid var(--cola-dk);
  align-self: flex-start;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.news-read-more:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.news-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,210,77,0.15), rgba(0,229,255,0.06));
  border-color: var(--cola-dk);
}
.news-card.featured .news-thumb { height: 200px; }
.news-card.featured .news-thumb svg { width: 140px; height: 140px; }
.news-card.featured .news-body h3 { font-size: 1.3rem; }

/* ===================== EVENTS ===================== */
.event-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.event-featured .ef-art {
  background: linear-gradient(135deg, var(--cola), var(--cola-dk));
  display: grid; place-items: center;
  padding: 2rem;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.event-featured .ef-art svg {
  width: 140px; height: 140px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  animation: bob 4s ease-in-out infinite;
}
.event-featured .ef-body { padding: 2rem; display: flex; flex-direction: column; }
.event-featured .ef-body .ef-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.75rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 0.7rem;
  border: 2px solid var(--cola-dk);
}
.event-featured .ef-body h2 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--cola-dk);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.event-featured .ef-body p { color: var(--text-dim); margin-bottom: 1.2rem; }
.event-featured .ef-countdown {
  display: flex; gap: 0.6rem; margin-bottom: 1.2rem;
}
.event-featured .ef-countdown .cd-cell {
  padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(255,210,77,0.3);
  border-radius: 10px;
  text-align: center;
  min-width: 64px;
}
.event-featured .ef-countdown .cd-num {
  font-family: 'Bungee', sans-serif;
  font-size: 1.4rem;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.event-featured .ef-countdown .cd-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.event-card {
  padding: 1.4rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}
.event-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.event-card .ec-art {
  width: 80px; height: 80px;
  margin: 0 auto 0.7rem;
  display: grid; place-items: center;
  background: var(--bg-deep);
  border-radius: 14px;
  border: 2px solid rgba(91,191,238,0.3);
}
.event-card .ec-art svg { width: 60px; height: 60px; }
.event-card .ec-type {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.68rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 0.4rem;
}
.event-card .ec-type.pirate { background: var(--cola); color: #fff; }
.event-card .ec-type.boss { background: var(--cola-hi); color: #fff; }
.event-card .ec-type.pvp { background: var(--cyan); color: var(--cola-dk); }
.event-card .ec-type.hunt { background: var(--gold); color: var(--cola-dk); }
.event-card .ec-type.seasonal { background: var(--green); color: #06241a; }
.event-card h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.event-card .ec-desc { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1rem; flex: 1; }
.event-card .ec-meta {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
}
.event-card .ec-meta .meta-pill {
  padding: 0.25rem 0.6rem;
  background: rgba(0,0,0,0.3);
  border-radius: 999px;
  color: var(--text-dim);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.event-card .ec-meta .meta-pill.difficulty-easy { color: var(--green); }
.event-card .ec-meta .meta-pill.difficulty-medium { color: var(--gold); }
.event-card .ec-meta .meta-pill.difficulty-hard { color: var(--cola-hi); }
.event-card .ec-meta .meta-pill.difficulty-legendary { color: var(--purple); }
.event-card .ec-countdown {
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  color: var(--yellow);
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid rgba(255,210,77,0.2);
}

/* ===================== DAILY REWARDS ===================== */
.rewards-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.rewards-progress {
  padding: 1.6rem;
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.rewards-progress .rp-streak {
  font-family: 'Bungee', sans-serif;
  font-size: 3rem;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--cola-dk);
  line-height: 1;
}
.rewards-progress .rp-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.3rem 0 1rem;
}
.rewards-progress .rp-next {
  padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.rewards-progress .claim-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 3px solid var(--cola-dk);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.rewards-progress .claim-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,0.3); }
.rewards-progress .claim-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.rewards-stats {
  padding: 1.6rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.rewards-stats .rs-row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  font-size: 0.88rem;
}
.rewards-stats .rs-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--cola-dk);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.rewards-stats .rs-icon svg { width: 18px; height: 18px; }
.rewards-stats .rs-label { flex: 1; color: var(--text-dim); }
.rewards-stats .rs-value { color: var(--yellow); font-family: 'Bungee', sans-serif; }

.rewards-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.8rem;
}
.reward-day {
  padding: 1rem 0.7rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
}
.reward-day.claimed {
  background: linear-gradient(135deg, rgba(46,229,157,0.2), rgba(0,229,255,0.08));
  border-color: var(--green);
}
.reward-day.today {
  background: linear-gradient(135deg, rgba(255,210,77,0.2), rgba(196,30,58,0.1));
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(255,210,77,0.4);
  transform: scale(1.05);
}
.reward-day.milestone {
  background: linear-gradient(135deg, rgba(155,92,255,0.18), rgba(255,210,77,0.1));
  border-color: var(--purple);
}
.reward-day.locked { opacity: 0.55; }
.reward-day .rd-day {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.reward-day .rd-art {
  width: 48px; height: 48px;
  margin: 0 auto 0.4rem;
  display: grid; place-items: center;
}
.reward-day .rd-art svg { width: 100%; height: 100%; }
.reward-day .rd-name {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
}
.reward-day.milestone .rd-name { color: var(--purple); font-weight: 700; }
.reward-day .rd-check {
  position: absolute;
  top: 6px; right: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #06241a;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.rewards-milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.milestone-card {
  padding: 1.2rem;
  background: var(--bg-banner);
  border: 3px solid var(--purple);
  border-radius: var(--radius);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.milestone-card .ms-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--purple);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.milestone-card h4 { font-family: 'Bungee', sans-serif; color: var(--yellow); font-size: 0.9rem; }
.milestone-card p { color: var(--text-dim); font-size: 0.82rem; margin-top: 0.2rem; }

/* Daily rewards mini widget (homepage) */
.daily-widget {
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(255,210,77,0.2), rgba(196,30,58,0.1));
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.daily-widget .dw-icon {
  width: 70px; height: 70px;
  background: var(--yellow);
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--cola-dk);
  box-shadow: var(--shadow-md);
}
.daily-widget .dw-icon svg { width: 40px; height: 40px; }
.daily-widget .dw-info h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.daily-widget .dw-info p { color: var(--text-dim); font-size: 0.9rem; }
.daily-widget .dw-info .dw-streak { color: var(--cola-hi); font-weight: 700; }
.daily-widget .dw-claim {
  padding: 0.85rem 1.6rem;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 3px solid var(--cola-dk);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.daily-widget .dw-claim:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,0.3); }

/* ===================== REVIEWS CAROUSEL ===================== */
.reviews-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.review-card {
  flex: 0 0 calc(33.333% - 0.7rem);
  min-width: 280px;
  padding: 1.6rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card.featured {
  background: linear-gradient(135deg, rgba(255,210,77,0.15), rgba(0,229,255,0.05));
  border-color: var(--cola-dk);
}
.review-card .featured-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--green);
  color: #fff;
  font-family: 'Bungee', sans-serif;
  font-size: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.review-card .rv-head {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.review-card .rv-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--cola-dk);
  font-family: 'Bungee', sans-serif;
  font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.review-card .rv-meta { flex: 1; }
.review-card .rv-meta .rv-name {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
}
.review-card .rv-meta .rv-date {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.review-card .rv-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.review-card .rv-text {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.review-controls {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.review-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-banner);
  border: 2px solid rgba(91,191,238,0.3);
  color: var(--cyan);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.15s;
}
.review-btn:hover { background: var(--yellow); color: var(--cola-dk); border-color: var(--cola-dk); }
.review-dots {
  display: flex; gap: 0.4rem;
  align-items: center;
}
.review-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(91,191,238,0.3);
  cursor: pointer;
  transition: all 0.15s;
}
.review-dot.active { background: var(--yellow); width: 28px; border-radius: 5px; }

/* ===================== BACK TO TOP / FLOATING ===================== */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--cola-dk);
  border: 3px solid var(--cola-dk);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 0 rgba(0,0,0,0.3); }
.back-to-top svg { width: 20px; height: 20px; }

.floating-cart {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 0.8rem 1.2rem 0.8rem 0.9rem;
  background: var(--yellow);
  color: var(--cola-dk);
  border: 3px solid var(--cola-dk);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  z-index: 90;
  transition: transform 0.15s, box-shadow 0.15s;
}
.floating-cart:hover { transform: translateY(-3px); box-shadow: 0 10px 0 rgba(0,0,0,0.3); color: var(--cola-dk); }
.floating-cart .fc-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
}
.floating-cart .fc-icon svg { width: 16px; height: 16px; }
.floating-cart .fc-count {
  background: var(--cola);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-q {
  width: 100%;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(91,191,238,0.05); }
.faq-q .fq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--cola-dk);
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 1rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .fq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.3rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.3rem 1.1rem;
}

/* ===================== SUPPORT / CONTACT ===================== */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}
.support-info {
  padding: 1.6rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
}
.support-info h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.support-channels {
  display: flex; flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.support-channel {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}
.support-channel:hover { background: rgba(91,191,238,0.1); }
.support-channel .sc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.support-channel.discord .sc-icon { background: #5865F2; color: #fff; }
.support-channel.email .sc-icon { background: var(--cyan); color: var(--cola-dk); }
.support-channel.web .sc-icon { background: var(--yellow); color: var(--cola-dk); }
.support-channel .sc-label { font-weight: 700; font-size: 0.9rem; }
.support-channel .sc-value { color: var(--text-dim); font-size: 0.8rem; }

/* ===================== SKELETON SCREENS ===================== */
.skeleton {
  background: linear-gradient(90deg, rgba(91,191,238,0.05) 0%, rgba(91,191,238,0.15) 50%, rgba(91,191,238,0.05) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 8px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===================== PAGE TRANSITIONS ===================== */
body {
  opacity: 0;
  animation: pageFadeIn 0.4s ease-out forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== RESPONSIVE FOR NEW SECTIONS ===================== */
@media (max-width: 980px) {
  .lb-podium { grid-template-columns: 1fr 1fr; }
  .podium-step.gold { order: -1; grid-column: span 2; }
  .event-featured { grid-template-columns: 1fr; }
  .rewards-overview { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .review-card { flex: 0 0 calc(50% - 0.5rem); min-width: 240px; }
  .support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lb-podium { grid-template-columns: 1fr; }
  .podium-step.gold { order: -1; grid-column: span 1; transform: none; }
  .lb-table { font-size: 0.85rem; }
  .lb-table th, .lb-table td { padding: 0.6rem 0.7rem; }
  .stats-premium { grid-template-columns: repeat(2, 1fr); }
  .daily-widget { grid-template-columns: 1fr; text-align: center; }
  .daily-widget .dw-icon { margin: 0 auto; }
  .review-card { flex: 0 0 100%; }
  .review-controls { margin-top: 0.8rem; }
  .back-to-top { bottom: 90px; right: 16px; width: 42px; height: 42px; }
  .floating-cart { bottom: 16px; right: 16px; font-size: 0.78rem; padding: 0.7rem 1rem; }
  .nav-links { padding: 0; }
  .nav.open { gap: 0.2rem; padding: 0.4rem 0.6rem; }
  .nav.open a { font-size: 0.82rem; padding: 0.5rem 0.7rem; }
}

/* ===================== ADMIN PANEL ===================== */
.admin-body {
  background: var(--bg-deep);
  min-height: 100vh;
}
.admin-login-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 2rem 1rem;
}
.admin-login-card {
  width: 100%; max-width: 420px;
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.admin-login-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-cyan);
}
.admin-login-card .admin-logo {
  width: 80px; height: 80px;
  margin: 0 auto 1.2rem;
  border-radius: 20px;
  background: var(--grad-cyan);
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 1.8rem;
  color: #02121a;
  box-shadow: var(--shadow-md);
}
.admin-login-card h1 {
  font-family: 'Bungee', sans-serif;
  text-align: center;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--cola-dk);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.admin-login-card .sub {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.admin-login-card .input {
  background: var(--bg-base);
}
.admin-login-card .hint {
  margin-top: 1.4rem;
  padding: 0.7rem 0.9rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--cyan);
  text-align: center;
}
.admin-login-error {
  background: rgba(196, 30, 58, 0.2);
  border: 2px solid var(--cola);
  color: var(--cola-hi);
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
  font-weight: 700;
}
.admin-login-error.show { display: block; }

/* Admin Dashboard Layout */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--bg-dark);
  border-right: 2px solid var(--border);
  padding: 1.5rem 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar .sb-logo {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0 1.4rem 1.5rem;
  border-bottom: 2px solid var(--border);
}
.admin-sidebar .sb-logo .sb-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-cyan);
  display: grid; place-items: center;
  color: #02121a;
  font-family: 'Bungee', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
}
.admin-sidebar .sb-logo .sb-name {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--cola-dk);
  font-size: 1rem;
}
.admin-sidebar .sb-nav {
  display: flex; flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 0.7rem;
}
.admin-sidebar .sb-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none; background: none;
  text-align: left;
  width: 100%;
}
.admin-sidebar .sb-link:hover { color: var(--text); background: var(--bg-base); }
.admin-sidebar .sb-link.active {
  color: var(--cola-dk);
  background: var(--yellow);
  box-shadow: var(--shadow-md);
}
.admin-sidebar .sb-link .sb-icon-link { font-size: 1.1rem; }
.admin-sidebar .sb-footer {
  padding: 1rem 1.4rem;
  border-top: 2px solid var(--border);
  margin-top: auto;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.admin-sidebar .sb-footer .sb-btn {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid var(--border);
  background: var(--bg-base);
  color: var(--text);
  transition: all 0.15s;
}
.admin-sidebar .sb-footer .sb-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.admin-sidebar .sb-footer .sb-btn.danger:hover { border-color: var(--cola); color: var(--cola-hi); }

.admin-main {
  padding: 2rem 2.5rem;
  background: var(--bg-deep);
  overflow-y: auto;
}
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap; gap: 1rem;
}
.admin-header h1 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--cola-dk);
  font-size: 1.6rem;
}
.admin-header .ah-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.admin-header .ah-saved {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(46, 229, 157, 0.15);
  border: 2px solid rgba(46, 229, 157, 0.3);
  border-radius: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Admin stat tiles */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-stat {
  padding: 1.4rem 1.2rem;
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius);
  text-align: center;
}
.admin-stat .as-num {
  font-family: 'Bungee', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--cola-dk);
  display: block;
}
.admin-stat .as-label {
  display: block;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  font-weight: 700;
}

/* Section tabs */
.admin-section-tabs {
  display: flex; gap: 0.4rem;
  margin-bottom: 1.4rem;
  padding: 0.5rem;
  background: var(--bg-banner);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.admin-tab {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dim);
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
}
.admin-tab:hover { color: var(--text); background: var(--bg-base); }
.admin-tab.active {
  color: var(--cola-dk);
  background: var(--yellow);
}

/* Cards grid for editing */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.admin-card {
  background: var(--bg-banner);
  border: 3px solid rgba(91,191,238,0.3);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.15s;
}
.admin-card:hover { border-color: var(--cyan); }
.admin-card.featured {
  background: linear-gradient(135deg, rgba(255,210,77,0.15), rgba(0,229,255,0.05));
  border-color: var(--cola-dk);
}
.admin-card .ac-head {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.admin-card .ac-thumb {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: var(--bg-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 2px solid rgba(91,191,238,0.3);
  overflow: hidden;
}
.admin-card .ac-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.admin-card .ac-thumb svg {
  width: 60px; height: 60px;
}
.admin-card .ac-info h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 0.95rem;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.admin-card .ac-info .ac-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.admin-card .ac-row {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(91,191,238,0.2);
  font-size: 0.85rem;
}
.admin-card .ac-row label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 70px;
}
.admin-card .ac-row input,
.admin-card .ac-row select,
.admin-card .ac-row textarea {
  flex: 1;
  background: var(--bg-deep);
  border: 2px solid rgba(91,191,238,0.25);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.15s;
}
.admin-card .ac-row input:focus,
.admin-card .ac-row select:focus,
.admin-card .ac-row textarea:focus {
  outline: none; border-color: var(--yellow);
}
.admin-card .ac-row textarea {
  min-height: 60px; resize: vertical;
}
.admin-card .ac-actions {
  display: flex; gap: 0.5rem; margin-top: 0.8rem;
}
.admin-card .ac-btn {
  flex: 1;
  padding: 0.5rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--bg-deep);
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.admin-card .ac-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.admin-card .ac-btn.primary { background: var(--yellow); color: var(--cola-dk); border-color: var(--cola-dk); }
.admin-card .ac-btn.primary:hover { background: var(--yellow-hi); }
.admin-card .ac-btn.danger:hover { border-color: var(--cola); color: var(--cola-hi); }
.admin-card .ac-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

/* Image upload */
.image-upload {
  position: relative;
  border: 2px dashed rgba(91,191,238,0.4);
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--bg-deep);
  min-height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.image-upload:hover { border-color: var(--yellow); background: rgba(255,201,64,0.05); }
.image-upload input[type="file"] { display: none; }
.image-upload .iu-preview {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
}
.image-upload .iu-placeholder {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.image-upload .iu-clear {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cola);
  color: #fff;
  display: none; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  border: none;
}
.image-upload.has-image .iu-clear { display: flex; }

/* Modal */
.admin-modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.admin-modal-bg.show { display: flex; }
.admin-modal {
  background: var(--bg-banner);
  border: 3px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.admin-modal h2 {
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--cola-dk);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.admin-modal .modal-actions {
  display: flex; gap: 0.6rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 2px solid var(--border);
}

/* Add new card */
.add-new-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-banner);
  border: 3px dashed rgba(91,191,238,0.4);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  min-height: 180px;
  cursor: pointer;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.15s;
}
.add-new-card:hover { border-color: var(--yellow); background: rgba(255,201,64,0.08); color: var(--yellow); }
.add-new-card svg { width: 32px; height: 32px; margin: 0 auto 0.5rem; display: block; }

/* Quick edit modal fields */
.quick-field {
  display: flex; flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.quick-field label {
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quick-field input,
.quick-field select,
.quick-field textarea {
  background: var(--bg-deep);
  border: 2px solid rgba(91,191,238,0.3);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.15s;
  width: 100%;
}
.quick-field input:focus,
.quick-field select:focus,
.quick-field textarea:focus {
  outline: none; border-color: var(--yellow);
}
.quick-field textarea { min-height: 80px; resize: vertical; }

@media (max-width: 980px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
}
@media (max-width: 720px) {
  .admin-main { padding: 1.2rem; }
  .admin-card { padding: 1rem; }
}

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; }
  .nav > a { font-size: 0.8rem; padding: 0.4rem 0.7rem; }
  .nav-more-btn { font-size: 0.8rem; padding: 0.4rem 0.7rem; }
  .nav-dropdown { right: -8px; }
}

/* ===================== AVATAR BACKGROUND DECORATIONS ===================== */
.bg-deco {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  image-rendering: pixelated;
  user-select: none;
}
.bg-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.bg-deco-head {
  top: 80px;
  left: 24px;
  width: 90px;
  height: 90px;
  opacity: 0.07;
}
.bg-deco-body {
  bottom: 40px;
  right: 24px;
  width: 140px;
  height: 200px;
  opacity: 0.06;
}
@media (max-width: 980px) {
  .bg-deco-head { width: 70px; height: 70px; top: 70px; left: 16px; }
  .bg-deco-body { width: 110px; height: 160px; bottom: 30px; right: 16px; }
}
@media (max-width: 720px) {
  .bg-deco-head { width: 50px; height: 50px; top: 64px; left: 12px; }
  .bg-deco-body { display: none; }
}

/* ===================== CART PANEL FIX (Better sizing) ===================== */
.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.4rem;
  align-items: flex-start;
}
.cart-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(2, 132, 199, 0.25);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-panel::-webkit-scrollbar { width: 6px; }
.cart-panel::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }
.cart-panel h3 {
  flex-shrink: 0;
}
.cart-items {
  flex: 1;
  min-height: 100px;
}
.cart-summary, .pay-methods {
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .store-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

/* ===================== SEASON 1 REVEAL (Lifesteal-style) ===================== */
.season-reveal {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(217, 119, 6, 0.06) 100%);
  border: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 16px 50px rgba(217, 119, 6, 0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.season-reveal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cola), var(--gold), var(--cyan));
}
.season-reveal::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.season-pickaxe-wrap {
  position: relative;
  z-index: 2;
}
.season-pickaxe {
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
  animation: floaty 4s ease-in-out infinite;
}
.season-pickaxe img,
.season-pickaxe svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.season-text {
  position: relative;
  z-index: 2;
}
.season-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--cola), var(--cola-hi));
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-family: 'Bungee', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
  margin-bottom: 0.6rem;
}
.season-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--gold), var(--cola));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.2));
  line-height: 1;
  margin-bottom: 0.4rem;
}
.season-subtitle {
  font-family: 'Bungee', sans-serif;
  color: var(--cyan-dark);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.season-text > p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 560px;
}
.season-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.season-feat {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--cyan);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan-dark);
  backdrop-filter: blur(8px);
}
.season-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .season-reveal {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.8rem;
    gap: 1.5rem;
  }
  .season-pickaxe { width: 140px; height: 140px; margin: 0 auto; }
  .season-actions { justify-content: center; }
}

/* ===================== HERO FLOATING PICKAXE (no background) ===================== */
.float-item.hero-pickaxe {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  filter: drop-shadow(0 6px 14px rgba(2, 132, 199, 0.5));
}
.float-item.hero-pickaxe svg {
  width: 100%;
  height: 100%;
}
.float-item.hero-pickaxe img,
.float-item.hero-pickaxe svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ===================== HERO FLOATING ITEMS (Real Minecraft items + Avatar) ===================== */
.float-item {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(2, 132, 199, 0.35));
  animation: floaty 6s ease-in-out infinite;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.float-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}
.float-item.fi-1 { top: 8%; left: 6%; width: 90px; height: 90px; animation-delay: 0s; animation-duration: 7s; }
.float-item.fi-2 { top: 14%; right: 7%; width: 110px; height: 110px; animation-delay: -1.5s; animation-duration: 8s; }
.float-item.fi-3 { top: 60%; left: 3%; width: 130px; height: 130px; animation-delay: -3s; animation-duration: 9s; }
.float-item.fi-4 { top: 38%; right: 4%; width: 100px; height: 100px; animation-delay: -2s; animation-duration: 7.5s; }
.float-item.fi-5 { bottom: 8%; left: 14%; width: 90px; height: 90px; animation-delay: -4s; animation-duration: 6.5s; }
.float-item.fi-6 { bottom: 10%; right: 16%; width: 120px; height: 120px; animation-delay: -1s; animation-duration: 8.5s; }
.float-item.fi-7 { top: 30%; left: 14%; width: 80px; height: 80px; animation-delay: -3.5s; animation-duration: 7s; opacity: 0.95; }
.float-item.fi-8 { top: 22%; right: 22%; width: 70px; height: 70px; animation-delay: -2.5s; animation-duration: 6s; opacity: 0.95; }

/* Hero Avatar Head (special highlight) */
.float-item.hero-avatar {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(56, 189, 248, 0.1));
  border-radius: 18px;
  border: 3px solid rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 4px;
}
.float-item.hero-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  z-index: -1;
  opacity: 0.4;
  filter: blur(10px);
  animation: pulse 2.5s ease-in-out infinite;
}

/* Smaller floating item variants */
.float-item.fi-mini {
  width: 50px !important;
  height: 50px !important;
  border-radius: 8px;
  opacity: 0.7;
}

/* ===================== QUICK LINKS BAR (4 Essentials) ===================== */
.quick-links-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}
.quick-link-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(6, 16, 38, 0.7));
  border: 2px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  position: relative;
  overflow: hidden;
}
.quick-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(251, 191, 36, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.quick-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.2);
}
.quick-link-card:hover::before { opacity: 1; }
.quick-link-card .ql-icon {
  width: 60px; height: 60px;
  margin: 0 auto 0.7rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--yellow-hi));
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--cola-dk);
  position: relative;
  z-index: 1;
}
.quick-link-card .ql-label {
  font-family: 'Bungee', sans-serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-shadow: 2px 2px 0 var(--cola-dk);
  position: relative;
  z-index: 1;
}
.quick-link-card .ql-desc {
  color: var(--text-dim);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .quick-links-bar { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 0.2rem 0.3rem; }
  .nav a { font-size: 0.74rem; padding: 0.3rem 0.55rem; }
  .cloud.c1, .cloud.c2, .cloud.c3, .cloud.c4 { display: none; }
  .island-line { height: 60px; }
}

/* ===================== EXPANDABLE SECTION (Light Glass Card) ===================== */
.expand-section {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.expand-section:hover { border-color: var(--cyan); }
.expand-section.open {
  border-color: var(--gold);
  box-shadow: 0 10px 32px rgba(217, 119, 6, 0.2);
}
.expand-section-head {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.06), rgba(217, 119, 6, 0.04));
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.expand-section-head:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(217, 119, 6, 0.08));
}
.expand-section-head .es-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--yellow-hi));
  color: var(--cola-dk);
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  border: 2px solid var(--yellow-dk);
  flex-shrink: 0;
}
.expand-section-head .es-info { flex: 1; min-width: 0; }
.expand-section-head h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--cyan-dark);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}
.expand-section-head .es-meta {
  color: var(--text-dim);
  font-size: 0.85rem;
}
.expand-section-head .es-badge {
  background: rgba(2, 132, 199, 0.12);
  color: var(--cyan-dark);
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  border: 2px solid rgba(2, 132, 199, 0.25);
  font-weight: 700;
}
.expand-section-head .es-toggle {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.12);
  border: 2px solid rgba(2, 132, 199, 0.3);
  color: var(--cyan-dark);
  display: grid; place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}
.expand-section.open .es-toggle {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--gold), var(--yellow-hi));
  color: var(--cola-dk);
  border-color: var(--gold-dark);
}
.expand-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: rgba(248, 250, 252, 0.6);
}
.expand-section.open .expand-section-body {
  max-height: 4000px;
  border-top: 2px solid rgba(2, 132, 199, 0.18);
}
.expand-section-body-inner { padding: 1rem 1.6rem 1.4rem; }

/* ===================== COMPACT PRODUCT ROW (Light) ===================== */
.product-row {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.06);
}
.product-row:hover { border-color: var(--cyan); box-shadow: 0 4px 14px rgba(2, 132, 199, 0.12); }
.product-row.open {
  border-color: var(--gold);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.18);
}
.product-row.featured {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(2, 132, 199, 0.05));
  border-color: rgba(217, 119, 6, 0.3);
}
.pr-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: background 0.2s;
}
.pr-toggle:hover { background: rgba(2, 132, 199, 0.04); }
.pr-toggle .pr-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #f0f9ff, #dbeafe);
  border-radius: 14px;
  display: grid; place-items: center;
  border: 2px solid rgba(2, 132, 199, 0.25);
  flex-shrink: 0;
  overflow: hidden;
}
.pr-toggle .pr-icon img { width: 100%; height: 100%; object-fit: cover; }
.pr-info .pr-tag {
  font-size: 0.68rem;
  background: rgba(2, 132, 199, 0.12);
  color: var(--cyan-dark);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
}
.pr-info h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--cyan-dark);
  font-size: 1rem;
  margin-top: 0.3rem;
  line-height: 1.1;
}
.pr-toggle .pr-price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Bungee', sans-serif;
  font-size: 1.1rem;
  color: var(--gold-dark);
}
.pr-toggle .pr-price .coin-mini { width: 22px; height: 22px; }
.pr-toggle .pr-arrow {
  width: 36px; height: 36px;
  background: rgba(2, 132, 199, 0.12);
  border: 2px solid rgba(2, 132, 199, 0.3);
  border-radius: 10px;
  color: var(--cyan-dark);
  display: grid; place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}
.product-row.open .pr-arrow {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--gold), var(--yellow-hi));
  color: var(--cola-dk);
  border-color: var(--gold-dark);
}
.pr-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(248, 250, 252, 0.8);
}
.product-row.open .pr-details {
  max-height: 600px;
  padding: 1.2rem;
  border-top: 2px solid rgba(2, 132, 199, 0.15);
}
.pr-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.perks-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--cyan);
}
.perk-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.05);
}
.perk-item:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: var(--cyan);
  transform: translateX(2px);
}
.pr-currencies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.pr-currency {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 2px solid rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pr-currency .pr-cur-icon {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: rgba(2, 132, 199, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}
.pr-currency .pr-cur-icon svg { width: 14px; height: 14px; }
.pr-currency .pr-cur-label {
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.pr-currency .pr-cur-value {
  font-family: 'Bungee', sans-serif;
  color: var(--gold-dark);
  font-size: 0.92rem;
  margin-left: auto;
}
.pr-actions { display: flex; gap: 0.5rem; }
.pr-actions .btn {
  flex: 1; justify-content: center;
  padding: 0.65rem; font-size: 0.85rem;
}

/* ===================== FEATURED PRODUCTS CAROUSEL (Light) ===================== */
.featured-products {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.featured-products::-webkit-scrollbar { height: 8px; }
.featured-products::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }
.featured-product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-hi));
  border: 3px solid var(--yellow-dk);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.4);
}
.featured-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cola), var(--gold), var(--cola));
}
.featured-product-card .fpc-art {
  height: 110px;
  display: grid; place-items: center;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 0.9rem;
}
.featured-product-card .fpc-art svg,
.featured-product-card .fpc-art img {
  width: 90px; height: 90px;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.2));
}
.featured-product-card .fpc-tag {
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.2);
  color: var(--cola-dk);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1em;
  align-self: flex-start;
  margin-bottom: 0.3rem;
}
.featured-product-card h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--cola-dk);
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.featured-product-card .fpc-price {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Bungee', sans-serif;
  color: var(--cola-dk);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.featured-product-card .fpc-price .coin-mini { width: 22px; height: 22px; }
.featured-product-card .fpc-actions { display: flex; gap: 0.4rem; margin-top: auto; }
.featured-product-card .fpc-actions .btn {
  flex: 1; justify-content: center;
  padding: 0.55rem; font-size: 0.78rem;
  background: var(--cola-dk); color: var(--yellow); border-color: var(--cola-dk);
}

/* ===================== SEA GLASS CARDS (Generic premium card style) ===================== */
.sea-glass {
  background: var(--bg-card);
  border: 2px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.sea-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ===================== PREMIUM SECTION HEAD ===================== */
.premium-head {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.premium-head h2 {
  font-family: 'Bungee', sans-serif;
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--cola-dk);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.premium-head p { color: var(--text-dim); max-width: 580px; margin: 0 auto; }
.premium-head .ph-tag {
  display: inline-block;
  font-family: 'Bungee', sans-serif;
  font-size: 0.75rem;
  color: var(--cyan-hi);
  background: rgba(56, 189, 248, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

@media (max-width: 720px) {
  .pr-toggle { grid-template-columns: 60px 1fr auto auto; gap: 0.7rem; padding: 0.85rem 1rem; }
  .pr-toggle .pr-icon { width: 60px; height: 60px; }
  .pr-info h3 { font-size: 0.9rem; }
  .pr-toggle .pr-price { font-size: 0.95rem; }
  .featured-product-card { flex: 0 0 260px; }
  .expand-section-head { padding: 1rem 1.2rem; gap: 0.8rem; }
  .expand-section-head .es-icon { width: 48px; height: 48px; font-size: 1.4rem; }
}

/* ===================== OWNER PRESENCE (Avatar Head) ===================== */
.owner-presence {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 88;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--cyan);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(2, 132, 199, 0.25);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--text);
}
.owner-presence:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(217, 119, 6, 0.3);
}
.owner-presence .op-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-hi));
  display: grid;
  place-items: center;
  border: 2px solid var(--cola-dk);
}
.owner-presence .op-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}
.owner-presence .op-dot {
  position: absolute;
  bottom: 0; right: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
.owner-presence .op-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.owner-presence .op-info .op-name {
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  color: var(--cyan-dark);
}
.owner-presence .op-info .op-status {
  font-size: 0.7rem;
  color: var(--green-dk);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.owner-presence .op-info .op-status::before {
  content: '🟢 ';
}

@media (max-width: 720px) {
  .owner-presence {
    bottom: 16px;
    left: 16px;
    padding: 0.4rem 0.7rem 0.4rem 0.4rem;
  }
  .owner-presence .op-avatar { width: 36px; height: 36px; }
  .owner-presence .op-info .op-name { font-size: 0.75rem; }
  .owner-presence .op-info .op-status { font-size: 0.65rem; }
}

/* Welcome banner owner head replacement */
.welcome-banner .logo-mini.owner-head {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-hi));
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--cola-dk);
}
.welcome-banner .logo-mini.owner-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

/* Captain's desk section on homepage */
.captains-desk {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(2, 132, 199, 0.05));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.18);
  position: relative;
  overflow: hidden;
}
.captains-desk::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cola), var(--gold));
}
.captains-desk .cd-avatar {
  width: 110px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-hi));
  border: 3px solid var(--cola-dk);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.captains-desk .cd-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}
.captains-desk .cd-info h3 {
  font-family: 'Bungee', sans-serif;
  color: var(--gold-dark);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.captains-desk .cd-info .cd-tag {
  display: inline-block;
  background: var(--cola);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  margin-bottom: 0.6rem;
}
.captains-desk .cd-info p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.captains-desk .cd-info .cd-sig {
  margin-top: 0.8rem;
  font-family: 'Bungee', sans-serif;
  color: var(--cyan-dark);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .captains-desk {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }
  .captains-desk .cd-avatar { width: 90px; height: 115px; margin: 0 auto; }
}

/* ===================== ADMIN PANEL PREMIUM POLISH ===================== */
.admin-body {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  min-height: 100vh;
}
.admin-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}
.admin-layout { position: relative; z-index: 1; }

.admin-sidebar {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #051026 100%);
  border-right: 2px solid rgba(56, 189, 248, 0.2);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.admin-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(6, 16, 38, 0.7) 100%);
  border: 2px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  position: relative;
  overflow: hidden;
}
.admin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
  opacity: 0;
  transition: opacity 0.2s;
}
.admin-card:hover::before { opacity: 1; }
.admin-card:hover {
  border-color: rgba(125, 211, 252, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.1);
}
.admin-card.featured {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(56, 189, 248, 0.05) 100%);
  border-color: var(--gold);
}

.admin-stat {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(6, 16, 38, 0.7) 100%);
  border: 2px solid rgba(251, 191, 36, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.admin-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
}

.admin-section-tabs {
  background: linear-gradient(135deg, var(--bg-card), rgba(6, 16, 38, 0.6));
  border: 2px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Admin sidebar nav links — premium active state */
.admin-sidebar .sb-link.active {
  background: linear-gradient(135deg, var(--gold), var(--yellow-hi));
  color: var(--cola-dk);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.25);
}

/* Admin hero gradient text */
.admin-header h1 {
  background: linear-gradient(135deg, var(--cyan-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.4));
}

/* Toast for admin */
.admin-modal h2 {
  background: linear-gradient(135deg, var(--cyan-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* Image upload - more polished */
.image-upload {
  background: rgba(6, 16, 38, 0.6);
  border-style: solid;
  border-width: 2px;
  border-color: rgba(56, 189, 248, 0.3);
}
.image-upload:hover {
  background: rgba(56, 189, 248, 0.06);
  border-color: var(--gold);
}
