@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg: #060c0f;
  --surface: #0d1a1f;
  --surface2: #132028;
  --surface3: #192b35;
  --pink: #00e676;
  --pink-dim: #00b35a;
  --purple: #00b0e6;
  --cyan: #00e5ff;
  --text: #eef5f0;
  --muted: #6a9a88;
  --gold: #ffd700;
  --red: #ff3333;
  --green: #00e676;
  --grad-main: linear-gradient(135deg, #00e676, #00b0e6);
  --grad-hot: linear-gradient(135deg, #00b0e6, #00e676);
  --grad-cyan: linear-gradient(135deg, #00e5ff, #00b0e6);
  --glow-pink: 0 0 20px rgba(0,230,118,0.45);
  --glow-purple: 0 0 20px rgba(0,176,230,0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,230,118,0.2);
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-search {
  flex: 1;
  max-width: 460px;
  display: flex;
  gap: 8px;
}

.header-search input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 8px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header-search input::placeholder { color: var(--muted); }
.header-search input:focus { border-color: var(--pink); box-shadow: var(--glow-pink); }

.header-search button {
  background: var(--grad-main);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.1s;
}
.header-search button:hover { opacity: 0.85; transform: scale(1.03); }

.header-nav {
  display: flex;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.header-nav a:hover { color: var(--text); background: var(--surface2); }
.header-nav a.active { color: var(--pink); }

/* ─── MAIN ───────────────────────────────────────────── */
.main { padding-top: 60px; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--surface);
  border-bottom: 1px solid rgba(0,230,118,0.15);
  padding: 56px 20px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,230,118,0.15);
  border: 1px solid rgba(0,230,118,0.4);
  border-radius: var(--radius-pill);
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero h1 .highlight {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-inline: auto;
}

.hero-search {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto 28px;
}

.hero-search input {
  flex: 1;
  background: var(--surface2);
  border: 2px solid rgba(0,230,118,0.4);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 22px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search input::placeholder { color: var(--muted); }
.hero-search input:focus { border-color: var(--pink); box-shadow: var(--glow-pink); }

.hero-search button {
  background: var(--grad-main);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 28px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--glow-pink);
  transition: opacity 0.2s, transform 0.15s;
}
.hero-search button:hover { opacity: 0.85; transform: scale(1.04); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span { color: var(--muted); font-size: 0.8rem; }

/* ─── SECTIONS ───────────────────────────────────────── */
.section { padding: 40px 20px; max-width: 1300px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}

.section-badge {
  background: var(--grad-hot);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.see-all {
  margin-left: auto;
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(0,230,118,0.4);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  transition: background 0.2s, box-shadow 0.2s;
}
.see-all:hover { background: rgba(0,230,118,0.1); box-shadow: var(--glow-pink); }

/* ─── GRID ───────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

/* ─── CREATOR CARD ───────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  display: flex;
  animation: fadeUp 0.35s ease both;
  text-decoration: none;
  color: var(--text);
}
.card:hover {
  border-color: rgba(0,230,118,0.5);
  box-shadow: var(--glow-pink);
  background: rgba(0,230,118,0.04);
  color: var(--text);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* card-img removed — no profile photos */

.badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.badge-verified { background: var(--gold); color: #000; }
.badge-hot { background: var(--grad-hot); color: #fff; }
.badge-leaked { background: rgba(0,212,255,0.2); color: var(--cyan); border: 1px solid var(--cyan); }
.badge-top { background: var(--grad-main); color: #fff; }
.badge-premium { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.4); }

/* ─── CARD LAYOUT — text only, no image/avatar ───────── */
.card-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.card-meta {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-badges-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 1px 0;
}

.card-tagline {
  color: var(--muted);
  font-size: 0.74rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  flex: 1;
}

.card-btn {
  display: block;
  background: var(--grad-main);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 9px;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.1s;
}
.card-btn:hover { opacity: 0.85; transform: scale(1.02); }

/* ─── FILTERS BAR ────────────────────────────────────── */
.filters {
  background: var(--surface);
  border-bottom: 1px solid rgba(0,230,118,0.1);
  padding: 14px 20px;
  position: sticky;
  top: 60px;
  z-index: 50;
}

.filters-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-search {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 180px;
  max-width: 340px;
}

.filter-search input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 8px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.filter-search input:focus { border-color: var(--pink); }
.filter-search input::placeholder { color: var(--muted); }

/* Country select */
.filter-country {
  background: var(--surface2);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 8px 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  max-width: 160px;
}
.filter-country:focus { border-color: var(--pink); }
.filter-country option { background: var(--surface2); color: var(--text); }

.filter-search button {
  background: var(--grad-main);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.filter-search button:hover { opacity: 0.85; }

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.pill {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  user-select: none;
}
.pill:hover { border-color: var(--pink); color: var(--pink); }
.pill.active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-pink);
}

.filter-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}
.filter-count strong { color: var(--pink); }

/* ─── CHIPS BAR (replaces filters on /profiles) ──────────── */
/* ─── CHIPS BAR (mobile-first, NEVER sticky on mobile so it's always visible) ─ */
.chips-bar {
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid rgba(0,230,118,0.15);
  padding: 12px 12px;
}
.chips-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;            /* keep on one row on phones */
  justify-content: center;
  overflow-x: auto;             /* horizontal scroll if very narrow */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chips-inner::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 0;                  /* equal width, fills the row */
  min-width: 0;
  min-height: 48px;             /* WCAG touch target */
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--surface2);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.1s;
}
.chip:hover { border-color: var(--pink); color: var(--pink); background: rgba(0,230,118,0.05); }
.chip:active { transform: scale(0.97); }
.chip.active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 18px rgba(0,230,118,0.35);
}

/* Very narrow phones (< 360px) — slightly tighter chips */
@media (max-width: 360px) {
  .chip { font-size: 0.78rem; padding: 0 8px; gap: 4px; }
  .chips-bar { padding: 10px 8px; }
  .chips-inner { gap: 6px; }
}

/* ─── AD SLOT — mobile-first, always centred, never overflows ──────────── */
.ad-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 28px auto;
  padding: 26px 8px 16px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ad-slot::before {
  content: "Sponsored";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
  pointer-events: none;
}
.ad-banner {
  display: block;
  max-width: 100%;
}
.ad-banner-728 {
  width: 728px;
  max-width: 100%;
  min-height: 90px;
}
.ad-banner-728 iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
}

/* ─── INDEX PAGE ─────────────────────────────────────── */
.index-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* ─── PAGINATION ─────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 0 16px;
  flex-wrap: wrap;
}

.page-btn {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover { border-color: var(--pink); color: var(--pink); }
.page-btn.active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
}

/* ─── PROFILE PAGE ───────────────────────────────────── */
.profile-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* Profile avatar — shown only on the individual profile page */
.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 16px rgba(0,230,118,0.45);
  flex-shrink: 0;
  display: block;
}

@media (max-width: 480px) {
  .profile-avatar { width: 70px; height: 70px; }
}

/* Header: horizontal layout with avatar */
.profile-header {
  background: var(--surface);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.profile-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.profile-header-right {
  flex-shrink: 0;
}

.profile-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.profile-meta {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.profile-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* live-timer inside profile header */
.profile-header .live-timer {
  margin-bottom: 0;
  font-size: 0.72rem;
  white-space: nowrap;
}

/* ─── UNLOCK BANNER ──────────────────────────────────── */
.unlock-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0,230,118,0.12), rgba(0,176,230,0.12));
  border: 1px solid rgba(0,230,118,0.4);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.unlock-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(0,230,118,0.04) 8px,
    rgba(0,230,118,0.04) 16px
  );
}

@keyframes shake {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-8deg); }
  96% { transform: rotate(8deg); }
}
.unlock-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.unlock-banner-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.unlock-banner-text span {
  color: var(--muted);
  font-size: 0.82rem;
}
.unlock-banner-badge {
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-pink);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.cta-header {
  text-align: center;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--pink);
  margin-bottom: 6px;
}

.cta-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
}

.cta-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ─── PROVIDER BUTTONS — full-width list, always ─────── */
.provider-grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* The button: single horizontal row, always */
.pb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 44px;
}

.pb:hover {
  background: rgba(0,230,118,0.1);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

/* First button: gold accent (overridden by pb--featured below) */
.pb:first-child {
  border-color: rgba(255,215,0,0.45);
  background: rgba(255,215,0,0.04);
}
.pb:first-child:hover {
  border-color: var(--gold);
  background: rgba(255,215,0,0.09);
  box-shadow: 0 0 18px rgba(255,215,0,0.28);
}

/* ── FEATURED / RECOMMENDED BUTTON ──────────────────────── */
.pb--featured {
  border-color: var(--gold) !important;
  background: rgba(255,215,0,0.07) !important;
  box-shadow: 0 0 0 2px rgba(255,215,0,0.3), 0 0 18px rgba(255,215,0,0.12);
  animation: featured-pulse 2s ease-in-out infinite;
}

@keyframes featured-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255,215,0,0.3), 0 0 18px rgba(255,215,0,0.12); }
  50%       { box-shadow: 0 0 0 2px rgba(255,215,0,0.55), 0 0 26px rgba(255,215,0,0.25); }
}

.pb--featured:hover {
  border-color: var(--gold) !important;
  background: rgba(255,215,0,0.13) !important;
  box-shadow: 0 0 0 2px rgba(255,215,0,0.7), 0 0 30px rgba(255,215,0,0.35) !important;
}

/* "⚡ RECOMMENDED" pill on the right */
.pb-featured-badge {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* After clicked — stays gold but no pulse */
.pb--featured-done {
  border-color: rgba(255,215,0,0.5) !important;
  background: rgba(255,215,0,0.05) !important;
  box-shadow: none !important;
  animation: none !important;
}

/* Nudge subtitle highlight */
.cta-subtitle--nudge {
  color: var(--gold);
}


/* Icon */
.pb-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* Middle: name + label stacked */
.pb-mid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.pb-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pb-best {
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.52rem;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.pb-label {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FREE badge */
.pb-free {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--green);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

/* Spinner inside button */
.pb-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0,230,118,0.2);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.pb-spinner-msg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--pink);
  flex: 1;
}

.cta-icon { font-size: 1.6rem; line-height: 1; }
.cta-text { font-size: 0.75rem; }

/* ─── LIVE TIMER ─────────────────────────────────────── */
.live-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 600;
}
.live-timer #live-timer { color: var(--green); }

/* ─── BREADCRUMB REPORT LINK ─────────────────────────── */
.breadcrumb-report {
  margin-left: auto;
}
.breadcrumb-report a {
  color: var(--muted);
  font-size: 0.78rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  transition: color 0.2s, border-color 0.2s;
}
.breadcrumb-report a:hover { color: var(--pink); border-color: var(--pink); }

/* ─── PROGRESS BAR ───────────────────────────────────── */
.progress-section {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 16px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
}

.progress-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--pink);
  min-width: 36px;
  text-align: right;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--surface2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--grad-main);
  border-radius: var(--radius-pill);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(0,230,118,0.5);
}

.progress-status {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 10px;
  min-height: 20px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.progress-status--gold  { color: var(--gold); }
.progress-status--error {
  color: var(--pink);
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PROVIDER SPINNER MSG ───────────────────────────── */
.provider-msg {
  color: var(--gold) !important;
}

/* ─── PROVIDER SPINNER ───────────────────────────────── */
.provider-spinner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.provider-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0,230,118,0.2);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.provider-spinner-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--pink);
  text-align: center;
  line-height: 1.3;
}

/* ─── SPA APP CONTAINER ──────────────────────────────── */
#app {
  min-height: 60vh;
  transition: opacity 0.18s ease;
}

/* On mobile: sidebanner inline, full-width centered */
@media (max-width: 768px) {
  
}

/* On very small screens, scale banners to fit */
@media (max-width: 480px) {
  
  
}

/* ─── HOW IT WORKS PAGE ──────────────────────────────── */
.hiw-card { padding: 32px; }

.hiw-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hiw-section:last-child { border-bottom: none; margin-bottom: 0; }

.hiw-section p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.hiw-section p:last-child { margin-bottom: 0; }
.hiw-section p strong { color: var(--text); }
.hiw-section p em { color: var(--cyan); font-style: normal; }

.hiw-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pink);
  margin-bottom: 12px;
}

.hiw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 4px;
}
.hiw-list li {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.5;
}
.hiw-list li strong { color: var(--text); }

.hiw-disclaimer {
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.hiw-disclaimer p {
  font-size: 0.8rem !important;
  color: var(--muted) !important;
}

@media (max-width: 480px) {
  .hiw-card { padding: 18px; }
  .hiw-h { font-size: 0.92rem; }
  .hiw-section p { font-size: 0.83rem; }
  .hiw-list li { font-size: 0.8rem; }
}

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: var(--pink); }

/* ─── FORM ───────────────────────────────────────────── */
.form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.form-card {
  background: var(--surface);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--radius);
  padding: 32px;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.15);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  background: var(--grad-main);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  cursor: pointer;
  box-shadow: var(--glow-pink);
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.85; transform: scale(1.01); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(0,230,118,0.15);
  padding: 32px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: var(--muted); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }

.footer-copy { color: var(--muted); font-size: 0.75rem; }

/* Trending searches strip — small, low-key, but real visible internal links for SEO */
.footer-trending {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-trending-title {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 4px;
  opacity: 0.7;
}
.footer-trending a {
  color: var(--muted);
  font-size: 0.68rem;
  opacity: 0.55;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.footer-trending a:hover {
  color: var(--pink);
  opacity: 1;
  border-color: rgba(0,230,118,0.4);
}

/* ─── EMPTY STATE ────────────────────────────────────── */
.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty strong { display: block; font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }


/* ─── RESPONSIVE ─────────────────────────────────────── */

/* Prevent overflow at any size — global safety */
html, body { max-width: 100%; overflow-x: hidden; }
img, iframe, video, embed, object {
  max-width: 100% !important;
  height: auto;
}

/* Prevent iOS/Android font zoom on input focus */
@media (max-width: 1024px) {
  input, textarea, select { font-size: 16px !important; }
}

/* ════════ TABLET / LARGE MOBILE (≤ 1024px) ══════════ */
@media (max-width: 1024px) {
  .section { padding: 32px 16px; }
  .index-wrap { padding: 24px 16px; }
  .profile-outer { padding: 0 16px; }
}

/* ════════ MEDIUM MOBILE (≤ 768px) ═══════════════════ */
@media (max-width: 768px) {

  /* Header — static so content always starts right under it (mobile-first) */
  .header { gap: 8px; padding: 8px 10px; height: auto; position: static; }
  .header-logo { font-size: 1.05rem; }
  .header-search { max-width: 160px; }
  .header-search input { padding: 7px 12px; }
  .header-search button { padding: 7px 12px; font-size: 0.75rem; }
  .header-nav { gap: 2px; }
  .header-nav a { font-size: 0.7rem; padding: 5px 7px; }
  .main { padding-top: 0; }

  /* Hero */
  .hero { padding: 32px 14px 24px; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .hero-sub { font-size: 0.88rem; }
  .hero-badge { font-size: 0.7rem; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.15rem; }
  .hero-stat span { font-size: 0.7rem; }

  /* Cards grid */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .section { padding: 24px 14px; }
  .section-title { font-size: 1.1rem; }

  /* Chips bar (replaces old filters) — mobile-first */
  .chips-bar { padding: 10px 8px; }
  .chips-inner { gap: 6px; }
  .chip { font-size: 0.82rem; padding: 0 12px; }

  /* Index page wrap */
  .index-wrap { padding: 16px 8px; }

  /* Ad slot */
  .ad-slot { margin: 18px auto; padding: 14px 6px; }

  /* Profile */
  .profile-wrap { padding: 20px 14px; max-width: 100%; }
  .profile-outer { flex-direction: column; padding: 0 14px; }
  .profile-outer .profile-wrap { padding: 20px 0; max-width: 100%; }
  
  .profile-header { padding: 18px; }
  .profile-header-top { flex-direction: column; gap: 10px; }
  .profile-header-right { align-self: flex-start; }
  .profile-name { font-size: 1.35rem; }
  .profile-meta { font-size: 0.78rem; white-space: normal; }

  /* Unlock banner */
  .unlock-banner { padding: 14px; gap: 12px; }
  .unlock-banner-text strong { font-size: 0.92rem; }
  .unlock-banner-text span { font-size: 0.78rem; }
  .unlock-banner-badge { font-size: 1rem; padding: 7px 14px; }

  /* CTA section */
  .cta-section { padding: 16px 14px; }
  .cta-title { font-size: 0.95rem; }
  .cta-subtitle { font-size: 0.76rem; }

  /* Progress */
  .progress-section { padding: 14px; }

  /* Forms */
  .form-wrap { padding: 24px 14px; }
  .form-card { padding: 22px; }

}

/* ════════ SMALL MOBILE (≤ 480px) ════════════════════ */
@media (max-width: 480px) {

  /* Header: stack nav below + scrolls away with content (mobile-first, no fixed height guesswork) */
  .header { flex-wrap: wrap; height: auto; padding: 8px 10px; position: static; }
  .header-logo { font-size: 0.9rem; }
  .header-search { max-width: 110px; flex: 1; }
  .header-search button { display: none; }
  .header-search input { font-size: 0.78rem !important; padding: 6px 10px; }
  .header-nav {
    width: 100%;
    order: 3;
    justify-content: flex-start;
    border-top: 1px solid rgba(0,230,118,0.1);
    padding-top: 6px;
    margin-top: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 2px;
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .header-nav a { font-size: 0.68rem; padding: 5px 8px; white-space: nowrap; flex-shrink: 0; }
  /* Header is static on phones — main content starts immediately under it */
  .main { padding-top: 0; }
  .filters { position: static; top: auto; }

  /* Hero */
  .hero { padding: 24px 12px 22px; }
  .hero h1 { font-size: 1.5rem; line-height: 1.18; }
  .hero-sub { font-size: 0.82rem; margin-bottom: 16px; }
  .hero-search { flex-direction: column; gap: 6px; max-width: 100%; }
  .hero-search input { padding: 10px 14px; }
  .hero-search button { width: 100%; padding: 10px; font-size: 0.88rem; }
  .hero-stats { gap: 12px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1rem; }
  .hero-stat span { font-size: 0.68rem; }

  /* Cards */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .card-body { padding: 8px; gap: 3px; }
  .card-name { font-size: 0.8rem; gap: 3px; }
  
  .card-tagline { font-size: 0.68rem; -webkit-line-clamp: 2; }
  .card-btn { font-size: 0.68rem; padding: 7px; margin-top: 4px; }
  
  
  

  /* Sections */
  .section { padding: 22px 10px; }
  .section-title { font-size: 0.98rem; }
  .section-header { gap: 8px; margin-bottom: 18px; }
  .see-all { font-size: 0.75rem; padding: 5px 12px; }
  .index-wrap { padding: 16px 10px; }

  /* Profile */
  .profile-wrap { padding: 16px 10px; }
  .profile-outer { padding: 0 10px; }
  .profile-header { padding: 16px; gap: 8px; }
  .profile-header-top { flex-direction: column; gap: 8px; }
  .profile-name { font-size: 1.2rem; }
  .profile-meta { font-size: 0.74rem; white-space: normal; }
  .profile-tagline { font-size: 0.76rem; }
  .breadcrumb-report { display: none; }
  .breadcrumb { font-size: 0.74rem; gap: 5px; }

  /* Unlock banner — vertical */
  .unlock-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px 12px;
    gap: 8px;
  }
  
  .unlock-banner-text strong { font-size: 0.88rem; }
  .unlock-banner-text span { font-size: 0.72rem; }
  .unlock-banner-badge { font-size: 0.95rem; padding: 7px 14px; align-self: center; }

  /* Provider buttons */
  .pb { padding: 7px 10px; gap: 9px; min-height: 40px; }
  .pb-icon { font-size: 1.05rem; width: 20px; }
  .pb-name { font-size: 0.78rem; }
  .pb-label { font-size: 0.66rem; }
  .pb-free { font-size: 0.78rem; }
  .pb-best { font-size: 0.52rem; padding: 1px 5px; }
  .pb-spinner-msg { font-size: 0.74rem; }

  /* CTA */
  .cta-section { padding: 10px 10px; }
  .cta-title { font-size: 0.85rem; }
  .cta-subtitle { font-size: 0.7rem; }
  .cta-footnote { font-size: 0.66rem; padding-top: 10px; margin-top: 12px; }
  .cta-header { margin-bottom: 14px; }

  /* ─── PROFILE MOBILE: fit all 9 buttons above the fold ─── */
  .profile-mobile { padding: 8px 10px 10px; }
  .profile-mobile .breadcrumb { display: none; }
  .profile-mobile .profile-header { padding: 8px 10px; margin-bottom: 8px; gap: 4px; }
  .profile-mobile .profile-header-top { flex-direction: row; gap: 8px; align-items: center; }
  .profile-mobile .profile-avatar { width: 36px; height: 36px; }
  .profile-mobile .profile-name { font-size: 1rem; line-height: 1.15; }
  .profile-mobile .profile-meta { font-size: 0.66rem; }
  .profile-mobile .profile-badges { display: none; }
  .profile-mobile .profile-header-right { display: none; }
  .profile-mobile .progress-section { padding: 8px 10px; margin-bottom: 8px; }
  .profile-mobile .progress-label { font-size: 0.66rem; }
  .profile-mobile .progress-pct { font-size: 0.72rem; }
  .profile-mobile .progress-status { font-size: 0.66rem; }
  .profile-mobile .progress-track { height: 5px; }
  .profile-mobile .cta-section { padding: 8px; margin-bottom: 0; }
  .profile-mobile .provider-grid { gap: 4px; }
  .profile-mobile .pb { padding: 5px 9px; min-height: 36px; gap: 7px; }
  .profile-mobile .pb-icon { font-size: 0.95rem; width: 18px; }
  .profile-mobile .pb-name { font-size: 0.72rem; }
  .profile-mobile .pb-label { font-size: 0.6rem; }
  .profile-mobile .pb-free { font-size: 0.72rem; }
  .profile-mobile .pb-best { font-size: 0.5rem; padding: 1px 4px; }
  .profile-mobile .pb-featured-badge { font-size: 0.55rem; padding: 2px 6px; }

  /* Progress */
  .progress-section { padding: 12px; }
  .progress-label { font-size: 0.72rem; }
  .progress-pct { font-size: 0.78rem; }
  .progress-status { font-size: 0.72rem; }
  .progress-track { height: 6px; }

  /* Filters */
  .filter-pills { gap: 5px; }
  .pill { font-size: 0.7rem; padding: 5px 10px; }
  .filter-search input,
  .filter-country { font-size: 0.82rem !important; padding: 7px 12px; }
  .filter-search button { padding: 7px 14px; }
  .filter-count { font-size: 0.74rem; }

  /* Live timer */
  .live-timer { font-size: 0.72rem; }

  /* Forms */
  .form-wrap { padding: 20px 10px; }
  .form-card { padding: 16px; }
  .form-title { font-size: 1.15rem; }
  .form-sub { font-size: 0.8rem; }
  .form-label { font-size: 0.74rem; }
  .form-input, .form-textarea { padding: 10px 12px; }
  .form-submit { font-size: 0.92rem; padding: 12px; }

  /* Pagination */
  .pagination { gap: 4px; padding: 20px 0 12px; }
  .page-btn { font-size: 0.78rem; padding: 6px 10px; }

  /* Footer */
  .footer { padding: 22px 12px; }
  .footer-links { gap: 12px; }
  .footer-links a { font-size: 0.74rem; }
  .footer-copy { font-size: 0.68rem; }
  .footer-trending { gap: 5px 6px; padding: 8px 0; }
  .footer-trending-title { font-size: 0.62rem; width: 100%; text-align: center; margin-bottom: 2px; }
  .footer-trending a { font-size: 0.6rem; padding: 1px 5px; }

  /* Badges */
  .badge { font-size: 0.55rem; padding: 2px 5px; }

  /* HIW page */
  .hiw-card { padding: 18px 14px; }
  .hiw-h { font-size: 0.92rem; }
  .hiw-section p { font-size: 0.82rem; line-height: 1.65; }
  .hiw-list li { font-size: 0.78rem; }
}

/* ════════ TINY (≤ 360px — Honor 10 Lite, Galaxy A) ══ */
@media (max-width: 360px) {

  .header-logo { font-size: 0.82rem; }
  .header-search { max-width: 90px; }

  .hero { padding: 20px 10px 18px; }
  .hero h1 { font-size: 1.32rem; }
  .hero-badge { font-size: 0.62rem; padding: 3px 8px; }
  .hero-stat strong { font-size: 0.92rem; }

  .section { padding: 18px 8px; }
  .grid { gap: 6px; }
  .card-body { padding: 7px; }
  .card-name { font-size: 0.74rem; }
  .card-tagline { font-size: 0.64rem; }
  .card-btn { font-size: 0.65rem; padding: 6px; }

  .profile-wrap { padding: 12px 8px; }
  .profile-header { padding: 14px; gap: 6px; }
  .profile-name { font-size: 1.1rem; }
  .profile-meta { font-size: 0.7rem; }

  .pb { padding: 6px 8px; gap: 7px; min-height: 36px; }
  .pb-icon { font-size: 0.95rem; width: 16px; }
  .pb-name { font-size: 0.72rem; }
  .pb-label { font-size: 0.62rem; }
  .pb-free { font-size: 0.72rem; }

  /* Profile mobile tiny — squeeze further so all 9 buttons fit */
  .profile-mobile { padding: 6px 8px 8px; }
  .profile-mobile .profile-header { padding: 6px 8px; margin-bottom: 6px; }
  .profile-mobile .profile-avatar { width: 32px; height: 32px; }
  .profile-mobile .profile-name { font-size: 0.9rem; }
  .profile-mobile .profile-meta { font-size: 0.6rem; }
  .profile-mobile .progress-section { padding: 6px 8px; margin-bottom: 6px; }
  .profile-mobile .cta-section { padding: 6px; }
  .profile-mobile .provider-grid { gap: 3px; }
  .profile-mobile .pb { padding: 4px 7px; min-height: 32px; gap: 6px; }
  .profile-mobile .pb-icon { font-size: 0.88rem; width: 16px; }
  .profile-mobile .pb-name { font-size: 0.68rem; }
  .profile-mobile .pb-label { font-size: 0.56rem; }

  .unlock-banner { padding: 12px 10px; }
  .unlock-banner-text strong { font-size: 0.82rem; }
  .unlock-banner-text span { font-size: 0.68rem; }

  .cta-section { padding: 12px 8px; }
  .cta-title { font-size: 0.78rem; }

  .progress-section { padding: 10px; }

  .form-wrap { padding: 16px 8px; }
  .form-card { padding: 14px; }
  .form-title { font-size: 1.05rem; }

  .filters { padding: 8px 10px; }
  .pill { font-size: 0.66rem; padding: 4px 8px; }

  .footer-links a { font-size: 0.7rem; }
  .footer-copy { font-size: 0.64rem; }
}

/* Touch targets: min 44px on phones for all interactive */
@media (max-width: 768px) and (pointer: coarse) {
  .pb, .card-btn, .pill, .form-submit,
  .hero-search button, .filter-search button,
  .header-nav a, .page-btn,
  .filter-country { min-height: 40px; }
}

/* SEO keyword block — visually hidden, indexable by crawlers */
.seo-kw {
  font-size: 1px;
  line-height: 1px;
  color: transparent;
  height: 1px;
  overflow: hidden;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* ─── ACCESSIBILITY · TOUCH TARGETS (≥48×48dp) ───────────
   WCAG 2.1 SC 2.5.5 / Material Design touch target.
   All interactive elements (button, a, input, select, textarea, [role=button|tab])
   get a 48px minimum hit area. Visual size can stay smaller via padding tricks
   when needed, but the default is full hit area. */
button,
a[href],
[role="button"],
[role="tab"],
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
select,
textarea {
  min-height: 48px;
}

/* Focus ring — keyboard users should always see where they are */
button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
[role="tab"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* Inline links (breadcrumb, footer trending, see-all) are by nature
   smaller than 48px tall; we ensure adequate spacing instead so they
   don't overlap one another. */
.breadcrumb a,
.footer-links a,
.footer-trending a,
.see-all,
.card-btn,
.pb-best,
.pb-featured-badge,
.pb-free,
.disclaimer-bar a {
  min-height: 0;
}

/* Spacing between adjacent interactive items so taps don't conflict */
.header-nav { gap: 8px; }
.footer-links { gap: 16px 20px; }
.filter-pills { gap: 8px; row-gap: 8px; }
.pagination { gap: 6px; }
.provider-grid { gap: 8px; }

