/* ========== Reset & base ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f4f6fb;
  color: #1a1d29;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== Side decorative banners ========== */
.side-banner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  background: linear-gradient(180deg, #ffd24a 0%, #ff9a1a 50%, #d62828 100%);
  border: 3px solid #ffe27a;
  border-radius: 8px;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: #5a0d0d;
  font-size: 18px;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
  box-shadow: 0 8px 26px rgba(0,0,0,.25), inset 0 0 0 2px rgba(255,255,255,.3);
  z-index: 30;
}
.side-banner--left { left: 14px; }
.side-banner--right { right: 14px; }
.side-banner .sep {
  width: 30px;
  height: 2px;
  background: rgba(90,13,13,.4);
  margin: 4px 0;
}
@media (max-width: 1280px) { .side-banner { display: none; } }

/* ========== Header ========== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e7e9f3;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(20,24,60,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}
.logo-mark {
  background: linear-gradient(135deg, #1a1d29 0%, #2d1b3d 100%);
  color: #ffd24a;
  font-weight: 800;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  letter-spacing: -.5px;
  box-shadow: 0 4px 12px rgba(26,29,41,.25), inset 0 1px 0 rgba(255,210,74,.2);
  font-family: "Consolas", "Monaco", monospace;
  line-height: 1;
}
.logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  background: linear-gradient(90deg, #ff2d8a, #b026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.logo-dot { font-weight: 700; }
.logo-bracket {
  background: #1a1d29;
  color: #ffd24a;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 4px;
  -webkit-text-fill-color: #ffd24a;
}

.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4a5070;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: all .2s ease;
}
.nav-link i { color: #8a90b0; transition: color .2s; }
.nav-link:hover { background: #f1f3fb; color: #1a1d29; }
.nav-link:hover i { color: #b026ff; }
.nav-link.active {
  background: linear-gradient(135deg, #fff3fb, #f3e8ff);
  color: #b026ff;
}
.nav-link.active i { color: #b026ff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff7ed;
  color: #f97316;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.icon-btn:hover { transform: translateY(-2px); }
.icon-btn .badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #ef4444;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
}
.btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s, box-shadow .2s;
}
.btn-login {
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  box-shadow: 0 6px 14px rgba(176,38,255,.35);
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(176,38,255,.45); }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  padding: 0;
  border-radius: 10px;
  background: #f1f3fb;
  color: #1a1d29;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* ========== Main ========== */
.main-content { padding: 24px 20px 60px; }

/* ========== Hero ========== */
.hero { margin-bottom: 24px; }
.hero-bg {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(176,38,255,.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,45,138,.4), transparent 50%),
    linear-gradient(135deg, #0a0a1f 0%, #1a0b2e 50%, #2d0a3e 100%);
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 50px;
  min-height: 280px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(20,5,40,.4);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,210,74,.15), transparent 60%);
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 2;
  flex: 1;
}
.hero-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hero-logo-bracket {
  background: linear-gradient(135deg, #ffd24a, #ff9a1a);
  color: #1a1d29;
  font-weight: 800;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(255,154,26,.4);
}
.hero-text h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.5px;
  background: linear-gradient(180deg, #ffe27a 0%, #ffb84a 50%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 20px rgba(255,184,74,.3);
}
.hero-dot { background: linear-gradient(180deg, #ffe27a, #ffb84a); -webkit-background-clip: text; background-clip: text; }
.hero-tagline {
  color: #fff;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-pills i { color: #22c55e; font-size: 11px; }
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-btn-primary,
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.hero-btn-primary {
  background: linear-gradient(135deg, #ffd24a, #f59e0b);
  color: #1a1d29;
  box-shadow: 0 8px 18px rgba(245,158,11,.4);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(245,158,11,.55); }
.hero-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ----- Hero visual (code window) ----- */
.hero-visual {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 460px;
  z-index: 1;
}
.code-window {
  background: rgba(13, 17, 28, .85);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  transform: rotate(-2deg);
  animation: code-float 4s ease-in-out infinite;
}
@keyframes code-float {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}
.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.code-bar .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.code-bar .dot-r { background: #ff5f57; }
.code-bar .dot-y { background: #febc2e; }
.code-bar .dot-g { background: #28c840; }
.code-bar .code-file {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-family: "Consolas", monospace;
}
.code-body {
  margin: 0;
  padding: 16px 18px;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 12.5px;
  line-height: 1.7;
  color: #e0e0e0;
  white-space: pre;
  overflow-x: auto;
}
.c-key { color: #c792ea; }
.c-var { color: #82aaff; }
.c-fn { color: #ffcb6b; }
.c-prop { color: #f07178; }
.c-str { color: #c3e88d; }
.c-num { color: #f78c6c; }

.float-deco {
  position: absolute;
  color: rgba(255,210,74,.6);
  filter: drop-shadow(0 4px 12px rgba(255,210,74,.4));
  animation: float-deco-anim 5s ease-in-out infinite;
}
.float-deco-1 { font-size: 36px; top: -20px; right: -10px; }
.float-deco-2 { font-size: 28px; bottom: -10px; left: -20px; animation-delay: -1.5s; color: rgba(255,45,138,.7); }
.float-deco-3 { font-size: 32px; top: 40%; right: -40px; animation-delay: -3s; color: rgba(14,165,233,.7); }
@keyframes float-deco-anim {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-text { flex: none; width: 100%; }
}
@media (max-width: 768px) {
  .hero-bg { padding: 36px 22px; min-height: auto; }
}

/* ========== Promo grid ========== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.promo-card {
  position: relative;
  border-radius: 16px;
  padding: 18px 20px 16px;
  min-height: 160px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 10px 24px rgba(20,24,60,.15);
  text-decoration: none;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.22), transparent 55%);
  pointer-events: none;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(20,24,60,.25); }

.promo-red { background: linear-gradient(135deg, #c2185b 0%, #8b0000 100%); }
.promo-green { background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); }
.promo-blue { background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%); }
.promo-gold { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }

.promo-card .promo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.promo-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
  flex: 1;
  min-width: 0;
}
.promo-title strong { display: block; font-size: 19px; font-weight: 800; margin-top: 2px; }
.promo-subtitle {
  font-size: 11.5px;
  font-weight: 600;
  opacity: .92;
  margin: 6px 0 0;
  letter-spacing: .3px;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
  position: relative;
  z-index: 2;
}
.promo-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.promo-tag {
  display: inline-block;
  background: rgba(0,0,0,.4);
  color: #ffd24a;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  align-self: flex-start;
  letter-spacing: .4px;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}
.promo-badge {
  position: absolute;
  top: 12px;
  right: -28px;
  background: #ffd24a;
  color: #1a1d29;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
  padding: 4px 30px;
  letter-spacing: .5px;
  transform: rotate(35deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .promo-grid { grid-template-columns: 1fr; }
}

/* ========== Ticker ========== */
.ticker {
  background: #fff;
  border: 1px solid #e7e9f3;
  border-radius: 14px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(20, 24, 60, .04);
  height: 48px;
}
.ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
}
.ticker-label i {
  font-size: 13px;
  animation: bell 1.6s ease-in-out infinite;
}
@keyframes bell {
  0%,100% { transform: rotate(0); }
  20%,60% { transform: rotate(-12deg); }
  40%,80% { transform: rotate(12deg); }
}
.ticker-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 18px;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.ticker-item { font-size: 14px; color: #4a5070; font-weight: 500; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== Content row (video + deposits) ========== */
.content-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  margin-bottom: 32px;
}
/* ----- Service banner (replaces video) ----- */
.service-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,45,138,.5), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(14,165,233,.45), transparent 45%),
    linear-gradient(135deg, #1a0b2e 0%, #2d0a3e 50%, #0a0a1f 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(20,5,40,.35);
  min-height: 320px;
  display: flex;
  align-items: center;
}
.service-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .5;
  animation: float-orb 8s ease-in-out infinite;
}
.orb-1 { width: 200px; height: 200px; background: #ff2d8a; top: -60px; right: -40px; }
.orb-2 { width: 160px; height: 160px; background: #0ea5e9; bottom: -50px; left: 40%; animation-delay: -2s; }
.orb-3 { width: 140px; height: 140px; background: #b026ff; top: 30%; left: -30px; animation-delay: -4s; }
@keyframes float-orb {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}
.float-icon {
  position: absolute;
  color: rgba(255,255,255,.12);
  font-size: 26px;
  animation: float-icon 6s ease-in-out infinite;
}
.float-icon-1 { top: 18%; right: 12%; animation-delay: 0s; }
.float-icon-2 { top: 65%; right: 22%; font-size: 32px; animation-delay: -1.5s; }
.float-icon-3 { top: 75%; right: 8%; animation-delay: -3s; }
.float-icon-4 { top: 12%; right: 30%; font-size: 22px; animation-delay: -4.5s; }
@keyframes float-icon {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(10deg); }
}

.service-banner-content {
  position: relative;
  z-index: 2;
  padding: 36px 38px;
  max-width: 100%;
}
.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,210,74,.18);
  color: #ffd24a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,210,74,.3);
}
.service-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
}
.service-title span {
  background: linear-gradient(90deg, #ffd24a, #ff9a1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
  max-width: 560px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.service-features i {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.service-btn-primary,
.service-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s, box-shadow .2s;
  text-decoration: none;
}
.service-btn-primary {
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  box-shadow: 0 8px 18px rgba(176,38,255,.4);
}
.service-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(176,38,255,.55); }
.service-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.service-btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

@media (max-width: 560px) {
  .service-banner-content { padding: 26px 22px; }
  .service-features { grid-template-columns: 1fr; }
}
.top-deposits {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(20,24,60,.08);
}
.top-deposits-header {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 12px;
  letter-spacing: 1px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.top-deposits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 420px;
  position: relative;
}
.top-deposits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f3fb;
  transition: background .25s, opacity .4s ease, max-height .4s ease, padding .4s ease;
  position: relative;
  overflow: hidden;
  max-height: 80px;
  opacity: 1;
}
.top-deposits-list li:hover { background: #fafbff; }
.top-deposits-list li:last-child { border-bottom: none; }

/* Item collapse out: fade + shrink height */
.top-deposits-list li.leaving {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}

/* Item slide in: fade + slight rise */
.top-deposits-list li.entering {
  opacity: 0;
  transform: translateY(8px);
}
.top-deposits-list li.entered {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s ease, transform .4s cubic-bezier(.4, 0, .2, 1);
}

/* Subtle highlight on fresh items: just a thin left bar that fades */
.top-deposits-list li.fresh::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4ade80, #16a34a);
  animation: fresh-bar 2.2s ease-out forwards;
}
@keyframes fresh-bar {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

/* Avatar */
.activity-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}
.activity-avatar::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid #fff;
}

.user { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.username {
  font-weight: 700;
  color: #1a1d29;
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.method {
  font-size: 11px;
  color: #8a90b0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 4px;
}
.method i { font-size: 9px; opacity: .7; }
.amount {
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  letter-spacing: .2px;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.amount.act-buy      { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #b91c1c; }
.amount.act-join     { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.amount.act-deposit  { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }
.amount.act-download { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.amount.act-quote    { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #7c3aed; }

/* Per-type avatar colors via CSS var */
.activity-avatar.av-buy      { background: linear-gradient(135deg, #ef4444, #b91c1c); --act-color: #ef4444; }
.activity-avatar.av-join     { background: linear-gradient(135deg, #0ea5e9, #0369a1); --act-color: #0ea5e9; }
.activity-avatar.av-deposit  { background: linear-gradient(135deg, #f59e0b, #d97706); --act-color: #f59e0b; }
.activity-avatar.av-download { background: linear-gradient(135deg, #22c55e, #15803d); --act-color: #22c55e; }
.activity-avatar.av-quote    { background: linear-gradient(135deg, #a855f7, #7c3aed); --act-color: #a855f7; }

@media (max-width: 880px) {
  .content-row { grid-template-columns: 1fr; }
}

/* ========== Featured products ========== */
.featured { margin-bottom: 32px; }
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.featured-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #1a1d29;
}
/* ----- Search bar (premium) ----- */
.search-bar-wrap {
  flex: 1;
  min-width: 320px;
  max-width: 720px;
}
.search-bar {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  border: 1.5px solid #e7e9f3;
  transition: border-color .2s, box-shadow .25s;
  box-shadow: 0 2px 8px rgba(20, 24, 60, .04);
}
.search-bar::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ff2d8a, #b026ff, #0ea5e9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.search-bar.focused {
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(176, 38, 255, .18);
}
.search-bar.focused::before { opacity: 1; }

/* Category selector */
.search-cat-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #f8f9fc;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1d29;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background .2s;
  min-width: 100px;
}
.search-cat-select:hover { background: #f1f3fb; }
.search-cat-select > i:first-child { color: #b026ff; font-size: 13px; }
.search-cat-arrow { font-size: 9px; color: #8a90b0; transition: transform .2s; margin-left: 2px; }
.search-cat-select.open .search-cat-arrow { transform: rotate(180deg); }

.search-cat-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e7e9f3;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 14px 36px rgba(20, 24, 60, .15);
  z-index: 20;
}
.search-cat-menu .cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #1a1d29;
  cursor: pointer;
  transition: background .15s;
}
.search-cat-menu .cat-item:hover { background: #f1f3fb; }
.search-cat-menu .cat-item.active { background: linear-gradient(135deg, #fff3fb, #f3e8ff); color: #b026ff; font-weight: 700; }
.search-cat-menu .cat-item small { color: #8a90b0; font-size: 11.5px; font-weight: 500; }
.search-cat-menu .cat-item.active small { color: #b026ff; }

.search-divider {
  width: 1px;
  background: #e7e9f3;
  margin: 6px 4px;
}

/* Input */
.search-input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.search-input-wrap input {
  width: 100%;
  padding: 0 14px 0 38px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: #1a1d29;
  outline: none;
  height: 40px;
}
.search-input-wrap input::placeholder { color: #8a90b0; }
.search-icon {
  position: absolute;
  left: 12px;
  color: #8a90b0;
  font-size: 13px;
  pointer-events: none;
  transition: color .2s;
}
.search-bar.focused .search-icon { color: #b026ff; }

.search-kbd {
  position: absolute;
  right: 8px;
  padding: 3px 8px;
  background: #f1f3fb;
  border: 1px solid #e7e9f3;
  border-radius: 5px;
  font-family: "Consolas", monospace;
  font-size: 11px;
  color: #4a5070;
  font-weight: 600;
}
.search-bar.focused .search-kbd { display: none; }

.search-clear {
  position: absolute;
  right: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #f1f3fb;
  color: #4a5070;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.search-clear:hover { background: #ef4444; color: #fff; transform: rotate(90deg); }

/* Submit button */
.search-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(176, 38, 255, .35);
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.search-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(176, 38, 255, .5); }
.search-submit i { font-size: 13px; }

/* Suggestions dropdown */
.search-suggest {
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e7e9f3;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(20, 24, 60, .15);
  padding: 8px;
  max-height: 420px;
  overflow-y: auto;
  z-index: 15;
}
.suggest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 8px;
  font-size: 11.5px;
  color: #8a90b0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
  color: inherit;
}
.suggest-item:hover { background: #f8f9fc; }
.suggest-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #f1f3fb;
  overflow: hidden;
  flex-shrink: 0;
}
.suggest-thumb img { width: 100%; height: 100%; object-fit: cover; }
.suggest-info { flex: 1; min-width: 0; }
.suggest-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1d29;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.suggest-meta {
  font-size: 11px;
  color: #8a90b0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.suggest-price {
  color: #ef4444;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.suggest-empty {
  padding: 30px 20px;
  text-align: center;
  color: #8a90b0;
  font-size: 13px;
}

/* Hot tag chips */
.search-hot-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding: 0 4px;
}
.search-hot-label {
  font-size: 12px;
  font-weight: 700;
  color: #4a5070;
  margin-right: 2px;
}
.search-hot-tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e9f3;
  color: #4a5070;
  font-size: 12px;
  font-weight: 500;
  transition: all .15s;
  cursor: pointer;
}
.search-hot-tag:hover {
  border-color: #b026ff;
  color: #b026ff;
  background: #fff3fb;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .search-cat-select { display: none; }
  .search-divider { display: none; }
  .search-submit span { display: none; }
  .search-submit { padding: 0 14px; }
  .search-kbd { display: none; }
}

.search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fff3fb, #f3e8ff);
  border-radius: 10px;
  border: 1px dashed rgba(176, 38, 255, .3);
  font-size: 13px;
  color: #4a5070;
}
.search-meta b { color: #b026ff; font-weight: 800; }
.search-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #b026ff;
  color: #b026ff;
  font-size: 12px;
  font-weight: 700;
  transition: all .15s;
}
.search-reset:hover { background: #b026ff; color: #fff; }

/* ----- Filter tabs ----- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tab {
  padding: 9px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e9f3;
  font-weight: 600;
  font-size: 13.5px;
  color: #4a5070;
  transition: all .2s;
}
.tab:hover { border-color: #b026ff; color: #b026ff; }
.tab.active {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(245,158,11,.35);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.load-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(176, 38, 255, .35);
  transition: transform .15s, box-shadow .2s;
}
.load-more-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(176, 38, 255, .5); }
.load-more-btn i { transition: transform .2s; }
.load-more-btn:hover i { transform: translateY(3px); }
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(20,24,60,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(20,24,60,.14);
}
.product-thumb-link { display: block; }
.product-thumb-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f3fb, #e7e9f3);
}
/* Shimmer skeleton placeholder while image loads */
.product-thumb-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  animation: shimmer 1.4s linear infinite;
  z-index: 1;
}
.product-thumb-img.loaded::before { display: none; }
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.product-thumb-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  position: relative;
  z-index: 2;
}
.product-thumb-img.loaded img { opacity: 1; }
.product-card:hover .product-thumb-img img { transform: scale(1.06); }
.product-pin {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  letter-spacing: .3px;
  box-shadow: 0 4px 10px rgba(239,68,68,.4);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 6px;
  letter-spacing: .5px;
  box-shadow: 0 4px 10px rgba(245,158,11,.4);
}
.product-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  transition: transform .15s, background .2s;
}
.product-fav:hover { transform: scale(1.1); }
.product-fav.liked { background: #ef4444; color: #fff; }

.product-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.product-cat {
  background: linear-gradient(135deg, #fff3fb, #f3e8ff);
  color: #b026ff;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
}
.product-views {
  color: #8a90b0;
  font-weight: 600;
}
.product-views i { margin-right: 3px; }
.product-title {
  font-weight: 700;
  color: #1a1d29;
  font-size: 14.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.product-title a { color: inherit; transition: color .2s; }
.product-title a:hover { color: #b026ff; }
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px dashed #e7e9f3;
  margin-top: auto;
}
.product-date {
  font-size: 11.5px;
  color: #8a90b0;
  font-weight: 500;
}
.product-date i { margin-right: 3px; }
.product-price {
  font-weight: 800;
  color: #ef4444;
  font-size: 15px;
}

/* ========== Stats section ========== */
.stats-section {
  position: relative;
  padding: 60px 0 50px;
  margin: 40px 0 30px;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.stats-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.stats-bg-orb-1 { width: 320px; height: 320px; background: #ff2d8a; top: -100px; left: -80px; }
.stats-bg-orb-2 { width: 280px; height: 280px; background: #b026ff; bottom: -80px; right: 10%; }
.stats-bg-orb-3 { width: 220px; height: 220px; background: #0ea5e9; top: 40%; right: -60px; }

.stats-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(176, 38, 255, .08);
  border: 1px solid rgba(176, 38, 255, .2);
  color: #b026ff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.stats-header h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #1a1d29;
  line-height: 1.3;
}
.stats-header h2 span {
  background: linear-gradient(90deg, #ff2d8a, #b026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-header p {
  margin: 0;
  font-size: 14.5px;
  color: #4a5070;
  line-height: 1.6;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 6px 18px rgba(20, 24, 60, .06);
  border: 1px solid rgba(255, 255, 255, .8);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--stat-tint, linear-gradient(135deg, transparent, transparent));
  opacity: .04;
  pointer-events: none;
  transition: opacity .25s;
}
.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(20, 24, 60, .1);
}
.stat:hover::before { opacity: .08; }
.stat:hover .stat-glow { opacity: 1; transform: scale(1.4); }

.stat-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--stat-color, #b026ff);
  filter: blur(40px);
  opacity: .15;
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}

.stat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--stat-bg, linear-gradient(135deg, #fff3fb, #f3e8ff));
  color: var(--stat-color, #b026ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px var(--stat-shadow, rgba(176, 38, 255, .25));
  position: relative;
  z-index: 1;
}
.stat-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid var(--stat-color, #b026ff);
  opacity: 0;
  animation: stat-pulse 2.5s ease-out infinite;
}
@keyframes stat-pulse {
  0% { opacity: .5; transform: scale(.95); }
  100% { opacity: 0; transform: scale(1.25); }
}

.stat-body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.stat-value-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #1a1d29;
  letter-spacing: -.5px;
  line-height: 1;
}
.stat-suffix {
  font-size: 18px;
  font-weight: 800;
  color: var(--stat-color, #b026ff);
}
.stat-label {
  font-size: 13.5px;
  color: #1a1d29;
  font-weight: 600;
  margin-top: 6px;
}
.stat-trend {
  font-size: 11.5px;
  color: #8a90b0;
  font-weight: 500;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-trend i { color: var(--stat-color, #b026ff); font-size: 10px; }

/* Per-color theming */
.stat-purple { --stat-color: #b026ff; --stat-bg: linear-gradient(135deg, #fff3fb, #f3e8ff); --stat-shadow: rgba(176, 38, 255, .25); --stat-tint: linear-gradient(135deg, #b026ff, transparent); }
.stat-pink   { --stat-color: #ff2d8a; --stat-bg: linear-gradient(135deg, #fff1f7, #ffe1ed); --stat-shadow: rgba(255, 45, 138, .28); --stat-tint: linear-gradient(135deg, #ff2d8a, transparent); }
.stat-blue   { --stat-color: #0ea5e9; --stat-bg: linear-gradient(135deg, #ecf6ff, #dbedff); --stat-shadow: rgba(14, 165, 233, .25); --stat-tint: linear-gradient(135deg, #0ea5e9, transparent); }
.stat-amber  { --stat-color: #f59e0b; --stat-bg: linear-gradient(135deg, #fff8e6, #ffefcd); --stat-shadow: rgba(245, 158, 11, .28); --stat-tint: linear-gradient(135deg, #f59e0b, transparent); }
.stat-green  { --stat-color: #10b981; --stat-bg: linear-gradient(135deg, #e8fbf3, #d4f4e3); --stat-shadow: rgba(16, 185, 129, .25); --stat-tint: linear-gradient(135deg, #10b981, transparent); }
.stat-teal   { --stat-color: #06b6d4; --stat-bg: linear-gradient(135deg, #e6fafd, #cdf1f7); --stat-shadow: rgba(6, 182, 212, .25); --stat-tint: linear-gradient(135deg, #06b6d4, transparent); }

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stats-section { padding: 40px 0 30px; }
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(176, 38, 255, .15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 45, 138, .12), transparent 50%),
    linear-gradient(180deg, #0a0d1f 0%, #07091a 100%);
  color: #b8bcd6;
  margin-top: 60px;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b026ff, #ff2d8a, #b026ff, transparent);
  opacity: .5;
}

/* ----- CTA Banner ----- */
.footer-cta {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(135deg, rgba(176, 38, 255, .12), rgba(255, 45, 138, .08));
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-left { flex: 1; min-width: 280px; }
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 210, 74, .15);
  border: 1px solid rgba(255, 210, 74, .35);
  color: #ffd24a;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-cta-left h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.footer-cta-left h3 span {
  background: linear-gradient(90deg, #ffd24a, #ff9a1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-cta-left p { margin: 0; font-size: 14px; color: #b8bcd6; }
.footer-cta-right { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.footer-cta-btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 165, 233, .4);
}
.footer-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(14, 165, 233, .55); }
.footer-cta-btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
}
.footer-cta-btn-ghost:hover { background: rgba(255, 255, 255, .18); transform: translateY(-2px); }

/* ----- Main columns ----- */
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 36px;
}
.footer-col h4 {
  color: #fff;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #ff2d8a, #b026ff);
  border-radius: 2px;
}
.footer-col h4 i {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 45, 138, .15), rgba(176, 38, 255, .15));
  color: #ff2d8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: #b8bcd6;
  font-size: 13.5px;
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.footer-col a > i {
  font-size: 8px;
  color: #b026ff;
  opacity: .6;
  transition: transform .2s, opacity .2s;
}
.footer-col a:hover { color: #ffd24a; transform: translateX(4px); }
.footer-col a:hover > i { opacity: 1; color: #ffd24a; }

/* Brand column */
.footer-brand .footer-logo {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-brand .footer-logo .logo-bracket {
  background: linear-gradient(135deg, #ffd24a, #ff9a1a);
  color: #1a1d29;
  -webkit-text-fill-color: #1a1d29;
}
.footer-brand .footer-logo .logo-dot {
  background: linear-gradient(90deg, #ff2d8a, #b026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.7;
  color: #b8bcd6;
  margin: 0 0 20px;
  max-width: 380px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #b8bcd6;
}
.footer-contact li i {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(176, 38, 255, .15), rgba(255, 45, 138, .15));
  color: #ff2d8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: inline;
  padding: 0;
}
.footer-contact li a:hover { color: #ffd24a; transform: none; }

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0;
  transition: all .2s;
  text-decoration: none;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(176, 38, 255, .4);
}

/* ----- Trust strip ----- */
.footer-trust {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 26px 0;
}
.footer-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-trust-item > i {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, .15), rgba(14, 165, 233, .15));
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.footer-trust-item div { display: flex; flex-direction: column; line-height: 1.3; }
.footer-trust-item b { font-size: 13.5px; color: #fff; font-weight: 700; }
.footer-trust-item small { font-size: 11.5px; color: #8a90b0; margin-top: 2px; }

/* ----- Bottom ----- */
.footer-bottom {
  padding: 18px 0;
  font-size: 13px;
  background: rgba(0, 0, 0, .2);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { color: #8a90b0; }
.footer-copyright strong { color: #fff; font-weight: 700; }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-links a {
  color: #8a90b0;
  font-size: 12.5px;
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: #ffd24a; }
.footer-bottom-links .dot { color: #4a5070; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(15, 18, 36, .85);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(176, 38, 255, .4);
}

@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-trust-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-trust-inner { grid-template-columns: 1fr; }
  .footer-cta-inner { text-align: center; }
  .footer-cta-right { justify-content: center; }
  .footer-cta-btn { flex: 1; justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ========== Floating support button ========== */
.support-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #1976d2, #0ea5e9);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(14,165,233,.45);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2s ease-in-out infinite;
}
.support-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(14,165,233,.55); }
@keyframes pulse {
  0%,100% { box-shadow: 0 10px 24px rgba(14,165,233,.45); }
  50% { box-shadow: 0 10px 24px rgba(14,165,233,.45), 0 0 0 12px rgba(14,165,233,.0); }
}

/* ========== Modal ========== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,18,36,.6);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: #fff;
  width: min(420px, 92vw);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(20,24,60,.3);
  animation: pop .25s ease;
}
@keyframes pop {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 24px;
  color: #8a90b0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: #f1f3fb; }
.modal-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, #ff2d8a, #b026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal-card label {
  display: block;
  margin-bottom: 14px;
}
.modal-card label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4a5070;
  margin-bottom: 6px;
}
.modal-card input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #e7e9f3;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.modal-card input:focus {
  outline: none;
  border-color: #b026ff;
  box-shadow: 0 0 0 3px rgba(176,38,255,.15);
}
.btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-top: 6px;
  transition: transform .15s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(176,38,255,.4); }
.modal-foot {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: #8a90b0;
}
.modal-foot a { color: #b026ff; font-weight: 700; }

/* ========== Product detail modal ========== */
.product-modal-card {
  width: min(1020px, 96vw);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  position: relative;
}
.pm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: #1a1d29;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .15s, background .2s;
}
.pm-close:hover { background: #fff; transform: rotate(90deg); }

.pm-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  max-height: 92vh;
}

/* ----- Gallery (left) ----- */
.pm-gallery {
  background: linear-gradient(135deg, #f5f7fb, #e2e8f0);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.pm-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20,24,60,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pm-image-frame:hover img { transform: scale(1.05); }
.pm-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.pm-badge-pin { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.pm-badge-tag { background: linear-gradient(135deg, #f59e0b, #d97706); }

.pm-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pm-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #fff;
  position: relative;
  transition: border-color .2s;
}
.pm-thumb.active { border-color: #b026ff; }
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .2s; }
.pm-thumb.active img { opacity: 1; }
.pm-thumb:hover img { opacity: 1; }

/* ----- Info (right) ----- */
.pm-info {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.pm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8a90b0;
}
.pm-breadcrumb a { color: #4a5070; transition: color .2s; }
.pm-breadcrumb a:hover { color: #b026ff; }
.pm-breadcrumb i { font-size: 8px; color: #c0c4d8; }

.pm-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  color: #1a1d29;
}

.pm-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #4a5070;
}
.pm-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}
.pm-rating-text { font-size: 13px; }
.pm-rating-text b { color: #1a1d29; font-weight: 700; }
.pm-rating-text i { color: #b026ff; margin-right: 2px; }
.pm-dot { color: #c0c4d8; }

.pm-price-box {
  padding: 14px 16px;
  background: linear-gradient(135deg, #fff3fb, #f3e8ff);
  border-radius: 12px;
  border: 1px dashed rgba(176, 38, 255, .35);
}
.pm-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pm-price-value {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff2d8a, #b026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pm-price-old {
  font-size: 16px;
  color: #8a90b0;
  text-decoration: line-through;
  font-weight: 500;
}
.pm-discount {
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}
.pm-price-note {
  margin-top: 6px;
  font-size: 12px;
  color: #4a5070;
}
.pm-price-note i { color: #b026ff; margin-right: 4px; }

.pm-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pm-stack-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: #f1f3fb;
  color: #4a5070;
  font-size: 11.5px;
  font-weight: 600;
}
.pm-stack-tag i { color: #b026ff; }

.pm-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5070;
  padding: 12px 14px;
  background: #f8f9fc;
  border-radius: 8px;
  border-left: 3px solid #b026ff;
}

.pm-includes h4 {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1d29;
}
.pm-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}
.pm-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #1a1d29;
}
.pm-features i {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 1px dashed #e7e9f3;
  border-bottom: 1px dashed #e7e9f3;
}
.pm-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.pm-stat i {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff3fb, #f3e8ff);
  color: #b026ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pm-stat span { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.pm-stat b { font-size: 12px; font-weight: 700; color: #1a1d29; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-stat small { font-size: 10.5px; color: #8a90b0; }

.pm-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.pm-btn-primary, .pm-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.pm-btn-primary {
  flex: 2;
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  box-shadow: 0 8px 20px rgba(176, 38, 255, .4);
}
.pm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(176, 38, 255, .55); }
.pm-btn-secondary {
  flex: 1;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14, 165, 233, .35);
}
.pm-btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(14, 165, 233, .5); }
.pm-btn-icon {
  width: 44px;
  border: 1px solid #e7e9f3;
  border-radius: 10px;
  background: #fff;
  color: #4a5070;
  font-size: 15px;
  transition: all .15s;
}
.pm-btn-icon:hover { border-color: #b026ff; color: #b026ff; transform: translateY(-2px); }
.pm-btn-icon.liked { background: #ef4444; color: #fff; border-color: #ef4444; }

.pm-seller {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f8f9fc;
  border-radius: 10px;
  border: 1px solid #e7e9f3;
}
.pm-seller-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d8a, #b026ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pm-seller-info { flex: 1; min-width: 0; }
.pm-seller-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1d29;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pm-seller-name i { color: #0ea5e9; font-size: 12px; }
.pm-seller-meta { font-size: 11.5px; color: #8a90b0; margin-top: 2px; }
.pm-seller-btn {
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #b026ff;
  color: #b026ff;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.pm-seller-btn:hover { background: #b026ff; color: #fff; }

.product-card { cursor: pointer; }

@media (max-width: 820px) {
  .pm-grid { grid-template-columns: 1fr; max-height: none; }
  .pm-gallery { padding: 16px; }
  .pm-image-frame { aspect-ratio: 16 / 10; }
  .pm-info { padding: 20px; }
  .pm-stats { grid-template-columns: repeat(2, 1fr); }
  .pm-features { grid-template-columns: 1fr; }
  .pm-actions { flex-wrap: wrap; }
  .pm-btn-primary, .pm-btn-secondary { flex: 1 1 100%; }
}

/* ========== Responsive nav ========== */
@media (max-width: 1024px) {
  /* When nav is removed from flow (fixed), push hamburger to the right */
  .header-inner { justify-content: space-between; }
  .header-actions { margin-left: auto; }

  .hamburger { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 14px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    transform: translateY(-110%);
    transition: transform .25s;
    z-index: 49;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 16px; }
}

/* ========================================================
   MOBILE LAYOUT FIXES (consolidated)
   ======================================================== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .hero-bg { padding: 44px 32px; }
  .service-banner-content { padding: 30px 28px; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Base spacing */
  .container { padding: 0 16px; }
  .main-content { padding: 18px 16px 44px; }

  /* Header — original white look, with a small gap above */
  body { padding-top: 18px; }
  .site-header { top: 0; }
  .site-header .header-inner { height: 60px; gap: 10px; }
  .logo { min-width: 0; }
  .logo-mark { font-size: 14px; padding: 6px 10px; border-radius: 8px; }
  .logo-text { font-size: 18px; }
  .header-actions { gap: 8px; }
  .btn-login { display: none; }
  .hamburger { width: 38px; height: 38px; font-size: 17px; }
  .main-nav { top: 60px; max-height: calc(100vh - 60px); }

  /* Hero */
  .hero { margin-bottom: 16px; }
  .hero-bg {
    padding: 26px 18px;
    min-height: auto;
    min-width: 0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(20,5,40,.35);
  }
  .hero-text { min-width: 0; width: 100%; }
  .hero-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
  }
  .hero-logo-bracket {
    font-size: 22px;
    padding: 8px 14px;
    border-radius: 12px;
  }
  .hero-text h1 { font-size: clamp(26px, 8vw, 34px); word-wrap: break-word; }
  .hero-tagline {
    font-size: 11.5px;
    letter-spacing: .8px;
    margin-bottom: 14px;
    line-height: 1.5;
    word-wrap: break-word;
  }
  .hero-pills {
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .hero-pills span {
    font-size: 10.5px;
    padding: 4px 9px;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .hero-pills span i { font-size: 10px; }
  .hero-cta { gap: 8px; flex-wrap: wrap; }
  .hero-btn-primary, .hero-btn-ghost {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
    padding: 11px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  /* Promo grid */
  .promo-grid { gap: 12px; margin-bottom: 18px; }
  .promo-card { min-height: 138px; padding: 16px 16px 14px; border-radius: 14px; }
  .promo-title { font-size: 12px; }
  .promo-title strong { font-size: 17px; }
  .promo-subtitle { font-size: 11px; }
  .promo-icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
  .promo-tag { font-size: 9.5px; padding: 4px 9px; }
  .promo-badge { font-size: 8.5px; padding: 3px 26px; top: 10px; right: -26px; }

  /* Ticker */
  .ticker { height: 44px; border-radius: 12px; margin-bottom: 18px; }
  .ticker-label { padding: 0 12px; font-size: 11.5px; }
  .ticker-label i { font-size: 12px; }
  .ticker-track-wrap { padding-left: 12px; }
  .ticker-item { font-size: 12.5px; }

  /* Content row */
  .content-row { gap: 16px; margin-bottom: 24px; }
  .service-banner { min-height: auto; min-width: 0; border-radius: 14px; }
  .service-banner-content { padding: 22px 18px; min-width: 0; width: 100%; }
  .service-eyebrow { font-size: 11px; padding: 5px 12px; }
  .service-title { font-size: 22px; margin-bottom: 10px; }
  .service-desc { font-size: 13px; margin-bottom: 14px; }
  .service-features { margin-bottom: 18px; gap: 6px 16px; }
  .service-features li { font-size: 12.5px; }
  .service-cta { gap: 8px; flex-wrap: wrap; }
  .service-btn-primary, .service-btn-ghost {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
    padding: 11px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }
  .top-deposits { border-radius: 14px; }
  .top-deposits-header { font-size: 13px; padding: 11px; }
  .top-deposits-list { min-height: 320px; }
  .top-deposits-list li { padding: 10px 14px; gap: 10px; }

  /* Featured header & search */
  .featured { margin-bottom: 26px; }
  .featured-header { gap: 12px; margin-bottom: 14px; }
  .featured-header h2 { font-size: 19px; width: 100%; text-align: center; }
  .search-bar-wrap { min-width: 0; max-width: none; width: 100%; }
  .search-bar { padding: 5px; border-radius: 12px; }
  .search-input-wrap input { height: 40px; font-size: 13.5px; padding-left: 36px; }
  .search-icon { left: 12px; font-size: 12px; }
  .search-submit { padding: 0 14px; border-radius: 9px; }

  /* Filter tabs — horizontal scroll on mobile */
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -16px 14px;
    padding: 2px 16px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .tab { flex-shrink: 0; padding: 8px 18px; font-size: 13px; }

  /* Product grid — keep 2 columns on phone */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 10px 12px 12px; gap: 6px; }
  .product-meta { font-size: 11px; }
  .product-cat { font-size: 10px; padding: 2px 7px; }
  .product-views { font-size: 11px; }
  .product-title { font-size: 13px; min-height: 36px; line-height: 1.35; }
  .product-date { font-size: 10.5px; }
  .product-price { font-size: 13.5px; }
  .product-fav { width: 30px; height: 30px; font-size: 12px; top: 8px; right: 8px; }
  .product-pin, .product-tag { font-size: 9.5px; padding: 4px 7px; top: 8px; left: 8px; }
  .load-more-btn { padding: 11px 26px; font-size: 13px; }

  /* Stats */
  .stats-section { padding: 30px 0 22px; margin: 24px 0 18px; }
  .stats-header { margin-bottom: 22px; }
  .stats-eyebrow { font-size: 10.5px; padding: 5px 12px; }
  .stats-header p { font-size: 13px; }
  .stats { gap: 12px; }
  .stat { padding: 18px 16px; gap: 14px; border-radius: 14px; }
  .stat-icon { width: 46px; height: 46px; font-size: 18px; border-radius: 12px; }
  .stat-value { font-size: 26px; }
  .stat-suffix { font-size: 15px; }
  .stat-label { font-size: 12.5px; margin-top: 4px; }
  .stat-trend { font-size: 10.5px; }

  /* Footer */
  .site-footer { margin-top: 40px; }
  .footer-cta { padding: 24px 0; }
  .footer-cta-inner { gap: 16px; }
  .footer-cta-left h3 { font-size: 19px; }
  .footer-cta-left p { font-size: 13px; }
  .footer-cta-btn { padding: 11px 18px; font-size: 13px; }
  .footer-inner { padding: 34px 0 22px; gap: 26px; }
  .footer-col h4 { margin-bottom: 14px; font-size: 14px; }
  .footer-col a { font-size: 13px; padding: 5px 0; }
  .footer-tagline { font-size: 13px; margin-bottom: 16px; }
  .footer-contact li { font-size: 12.5px; }
  .footer-contact li i { width: 30px; height: 30px; font-size: 12px; }
  .footer-socials a { width: 36px; height: 36px; font-size: 13px; }
  .footer-trust { padding: 20px 0; }
  .footer-trust-item > i { width: 38px; height: 38px; font-size: 15px; }
  .footer-trust-item b { font-size: 13px; }
  .footer-trust-item small { font-size: 11px; }
  .footer-bottom { padding: 14px 0; font-size: 12px; }
  .footer-copyright { font-size: 12px; }

  /* Floating action buttons */
  .support-btn {
    padding: 10px 16px;
    font-size: 12.5px;
    bottom: 14px;
    right: 14px;
    gap: 6px;
  }
  .back-to-top {
    width: 38px; height: 38px;
    font-size: 12px;
    bottom: 70px;
    right: 14px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .main-content { padding: 14px 12px 40px; }

  /* Hero: smaller again */
  .hero-bg { padding: 26px 18px; border-radius: 14px; }
  .hero-text h1 { font-size: 26px; }
  .hero-tagline { font-size: 10.5px; letter-spacing: .8px; }
  .hero-pills span { font-size: 10.5px; padding: 4px 9px; }
  .hero-btn-primary, .hero-btn-ghost { padding: 10px 12px; font-size: 12.5px; }

  /* Promo */
  .promo-card { min-height: 128px; padding: 14px 14px 12px; }
  .promo-title { font-size: 11.5px; }
  .promo-title strong { font-size: 16px; }
  .promo-icon { width: 36px; height: 36px; font-size: 16px; }

  /* Service banner */
  .service-banner-content { padding: 22px 18px; }
  .service-title { font-size: 20px; }
  .service-btn-primary, .service-btn-ghost { padding: 10px 12px; font-size: 12.5px; }

  /* Product grid */
  .product-grid { gap: 10px; }
  .product-body { padding: 9px 10px 11px; }
  .product-title { font-size: 12.5px; min-height: 34px; }
  .product-price { font-size: 13px; }
  .product-cat { font-size: 9.5px; }
  .product-date { font-size: 10px; }
  .product-meta { font-size: 10.5px; }

  /* Stats */
  .stat { padding: 16px 14px; gap: 12px; }
  .stat-icon { width: 42px; height: 42px; font-size: 16px; }
  .stat-value { font-size: 24px; }
  .stat-suffix { font-size: 14px; }

  /* Footer CTA buttons full width */
  .footer-cta-right { flex-direction: column; align-items: stretch; }
  .footer-cta-btn { justify-content: center; }

  /* Featured title smaller */
  .featured-header h2 { font-size: 17.5px; }
}

/* Tiny phones (≤ 360px) */
@media (max-width: 360px) {
  .hero-text h1 { font-size: 24px; }
  .hero-logo-bracket { font-size: 20px; padding: 7px 12px; }
  .hero-btn-primary, .hero-btn-ghost {
    flex: 1 1 100%;
  }
  .service-btn-primary, .service-btn-ghost {
    flex: 1 1 100%;
  }
  .promo-title strong { font-size: 15px; }
}
