/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #22c55e;
  --accent-glow: rgba(34, 197, 94, 0.15);
  --accent-hover: #16a34a;
  --bg-0: #0a0a0a;
  --bg-1: #111113;
  --bg-2: #18181b;
  --bg-3: #232326;
  --bg-4: #2e2e33;
  --border: #27272a;
  --border-hover: #3f3f46;
  --text-0: #fafafa;
  --text-1: #d4d4d8;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-0);
  color: var(--text-0);
  min-height: 100dvh;
  padding-bottom: 68px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #000; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 48px 20px 32px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(34,197,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 520px; margin: 0 auto; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo h1 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text-0), var(--text-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero { position: relative; }
.lang-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-2);
  color: var(--text-2);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  margin-bottom: 20px;
}
.counter-number {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
}
.counter-number.bump {
  transform: scale(1.15);
}
.counter-label {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.hero-search {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.hero-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-2);
  color: var(--text-0);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.hero-search input::placeholder { color: var(--text-3); }

/* ========== CATEGORIES ========== */
.categories {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.categories-inner {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  cursor: grab;
}
.categories-inner::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .categories-inner { justify-content: center; }
}

.cat-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-2);
  color: var(--text-2);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--border-hover); color: var(--text-1); }
.cat-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 12px var(--accent-glow);
}
.cat-icon { font-size: 1rem; line-height: 1; }
.cat-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cat-svg svg {
  width: 100%;
  height: 100%;
}
.cat-pill.active .cat-svg svg { stroke: #000; }

/* ========== TOOLBAR ========== */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
}
.sort-tabs { display: flex; gap: 4px; }
.sort-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-3);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.sort-tab:hover { color: var(--text-1); background: var(--bg-2); }
.sort-tab.active {
  color: var(--accent);
  background: var(--accent-glow);
}
.result-count {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
}

/* ========== STICKER GRID ========== */
.sticker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 420px) {
  .sticker-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) {
  .sticker-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}
@media (min-width: 900px) {
  .sticker-grid { grid-template-columns: repeat(6, 1fr); }
}

.sticker-card {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}
.sticker-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.sticker-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sticker-card:hover::before { opacity: 1; }
.sticker-card:active { transform: translateY(0) scale(0.97); }

.sticker-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform var(--transition);
  image-rendering: auto;
}
.sticker-card:hover img { transform: scale(1.08); }

.sticker-card .dl-count {
  position: absolute;
  bottom: 5px;
  right: 7px;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-3);
  opacity: 0;
  transition: opacity var(--transition);
}
.sticker-card:hover .dl-count { opacity: 1; }

/* ========== HOME SECTIONS (Netflix style) ========== */
#home-sections {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0 20px;
}

.section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 14px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.3px;
}
.section-title .section-emoji {
  font-size: 1.3rem;
  line-height: 1;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.section-link:hover {
  background: var(--accent-glow);
}
.section-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.section-link:hover svg {
  transform: translateX(3px);
}

.section-row {
  display: flex;
  gap: 14px;
  padding: 4px 20px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  cursor: grab;
}
.section-row::-webkit-scrollbar { display: none; }
.section-row.grabbing { cursor: grabbing; }

.section-card {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition);
}
.section-card:hover { transform: translateY(-4px); }
.section-card:active { transform: scale(0.95); }

.section-card-img {
  width: 120px;
  height: 120px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition);
}
.section-card:hover .section-card-img {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}
.section-card-img img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.section-card-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
  text-align: center;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Larger cards for "trending" */
.section-row.featured .section-card { width: 140px; }
.section-row.featured .section-card-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
}
.section-row.featured .section-card-img img {
  width: 76%;
  height: 76%;
}

/* Category cards for browsing */
.section-row.cat-row { gap: 12px; }
.cat-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 160px;
}
.cat-card:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
}
.cat-card-icon { font-size: 1.6rem; line-height: 1; }
.cat-card-info { display: flex; flex-direction: column; gap: 2px; }
.cat-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-0);
}
.cat-card-count {
  font-size: 0.7rem;
  color: var(--text-3);
}

/* Separator between sections */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 20px 24px;
  opacity: 0.5;
}

/* Ad between sections */
.section-ad {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.section-ad-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  position: relative;
}
.section-ad-inner::after {
  content: 'Ad';
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.5;
}

@media (min-width: 640px) {
  .section-card { width: 130px; }
  .section-card-img { width: 130px; height: 130px; }
  .section-row.featured .section-card { width: 155px; }
  .section-row.featured .section-card-img { width: 155px; height: 155px; }
  .section-header { padding: 0 28px; }
  .section-row { padding: 4px 28px 8px; }
}

@media (min-width: 1024px) {
  .section-card { width: 140px; }
  .section-card-img { width: 140px; height: 140px; }
  .section-row.featured .section-card { width: 165px; }
  .section-row.featured .section-card-img { width: 165px; height: 165px; }
}

/* ========== STATES ========== */
.state-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-3);
  font-size: 0.9rem;
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--bg-3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  color: var(--text-1);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.load-more-btn:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: scaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90dvh;
  overflow-y: auto;
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
}
.modal-x:hover { background: rgba(0,0,0,0.8); color: var(--text-0); }

.modal-sticker-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 24px;
  min-height: 220px;
}
.modal-sticker-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
}
#modal-img {
  position: relative;
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.modal-body { padding: 0 24px 24px; }
.modal-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
}
.pill-cat {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(34,197,94,0.2);
}
.pill-info {
  background: var(--bg-3);
  color: var(--text-2);
}

.modal-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.btn-primary, .btn-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 0 20px var(--accent-glow); }
.btn-secondary {
  background: var(--bg-3);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg-4); }

.modal-btns-social {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.btn-wa, .btn-tg {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1da851; }
.btn-tg {
  background: #2AABEE;
  color: #fff;
}
.btn-tg:hover { background: #229ED9; }

.modal-swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-3);
  margin-bottom: 8px;
  opacity: 0.6;
}
@media (max-width: 639px) {
  .modal-swipe-hint { display: block; }
}

.btn-report {
  display: block;
  width: 100%;
  padding: 8px;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-family: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  transition: color var(--transition);
}
.btn-report:hover { color: #ef4444; }

/* ========== FAB ========== */
.fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
  z-index: 50;
  transition: all var(--transition);
}
.fab:hover { transform: scale(1.1) rotate(90deg); box-shadow: 0 6px 28px rgba(34,197,94,0.45); }
.fab:active { transform: scale(0.95); }

/* ========== UPLOAD MODAL ========== */
.upload-card { padding: 28px 24px; }
.upload-header {
  text-align: center;
  margin-bottom: 20px;
}
.upload-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0 4px;
}
.upload-hint {
  font-size: 0.78rem;
  color: var(--text-3);
}

.drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 16px;
}
.drop-zone:hover, .drop-zone.dragover {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.drop-zone p {
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 500;
}
.drop-zone span {
  font-size: 0.75rem;
  color: var(--text-3);
}

.upload-preview {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  padding: 8px;
}

.upload-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 5px;
}
.field .optional { font-weight: 400; color: var(--text-3); }
.field input, .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  color: var(--text-0);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.btn-full { width: 100%; }
.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.upload-status {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 500;
}
.upload-status.error { color: #ef4444; }

/* ========== AD SLOTS ========== */
.ad-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}
.ad-banner span {
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* In-feed ad between sticker rows */
.ad-inline {
  grid-column: 1 / -1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  position: relative;
}
.ad-inline::after {
  content: 'Ad';
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Top leaderboard ad under categories */
.ad-top {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 16px;
}
.ad-top-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  position: relative;
}
.ad-top-inner::after {
  content: 'Ad';
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ========== PAGE TRANSITIONS ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
