/* ============================================
   IBIT GLOBAL EXCHANGE — LIGHT FINTECH THEME
   ============================================ */

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

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --bg-gray: #f0f1f3;
  --surface: #ffffff;
  --border: #ececee;
  --border-2: #e0e2e6;
  --text: #0a0a0a;
  --text-2: #6b7280;
  --text-3: #9ca3af;
  --orange: #ff7a1a;
  --orange-2: #ff8c33;
  --orange-soft: #fff1e6;
  --black: #000000;
  --green: #00b377;
  --red: #f6465d;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ============================================
   PHONE FRAME (Desktop wrapper)
   ============================================ */
.phone-frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.phone-notch { display: none; }

.app-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .phone-frame {
    padding: 40px 20px;
    background: #f0f1f3;
    background-image:
      linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
  }
  .app-container {
    width: 390px;
    max-width: 390px;
    height: 844px;
    min-height: 844px;
    max-height: calc(100vh - 80px);
    border-radius: 44px;
    box-shadow:
      0 0 0 10px #1a1a1a,
      0 0 0 12px #2a2a2a,
      0 30px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .phone-notch {
    display: block;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(calc(-50% + 0px));
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 1000;
  }
}

/* ============================================
   STATUS BAR
   ============================================ */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.status-icons { display: flex; gap: 6px; align-items: center; font-size: 12px; }
.battery {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #1a1a1a;
  color: #fff;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  position: relative;
}
.battery .b-pct { line-height: 1; }
.battery::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 0 1px 1px 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 12px;
  background: var(--bg);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.top-bar.scrolled { border-bottom-color: var(--border); }

.logo-btn { flex-shrink: 0; }
.heart-logo { width: 28px; height: 28px; }
.heart-logo.small { width: 32px; height: 32px; }
.heart-logo.big { width: 44px; height: 44px; }

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-gray);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-2);
}
.search-box i { font-size: 13px; }

.top-actions { display: flex; gap: 6px; flex-shrink: 0; }
.icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text);
  position: relative;
  transition: 0.2s;
}
.icon-btn:active { transform: scale(0.92); background: var(--bg-gray); }
.icon-btn .dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ============================================
   MAIN SCROLL
   ============================================ */
.app-main {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 90px;
  scroll-behavior: smooth;
  background: var(--bg);
}
.app-main::-webkit-scrollbar { width: 0; }

/* ============================================
   HERO
   ============================================ */
.hero {
  text-align: center;
  padding: 14px 24px 26px;
  position: relative;
}

.hero-illustration {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Confetti */
.confetti {
  position: absolute;
  width: 10px;
  height: 4px;
  border-radius: 1px;
}
.confetti.c1 { background: #ff5e3a; top: 30px; left: 30px; transform: rotate(40deg); }
.confetti.c2 { background: #4a90e2; top: 20px; left: 80px; transform: rotate(-15deg); width: 8px; height: 8px; border-radius: 50%; }
.confetti.c3 { background: #5cb85c; top: 50px; right: 30px; transform: rotate(60deg); }
.confetti.c4 { background: #ff7a1a; bottom: 50px; left: 20px; transform: rotate(-30deg); width: 12px; }
.confetti.c5 { background: #9b59b6; top: 80px; right: 50px; transform: rotate(45deg); }
.confetti.c6 { background: #f1c40f; bottom: 30px; right: 20px; transform: rotate(-45deg); width: 6px; height: 6px; border-radius: 50%; }

/* Hands */
.hand {
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 80px;
}
.hand-left {
  left: 30px;
  border-right: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  border-radius: 0 0 30px 0;
  transform: rotate(15deg);
}
.hand-right {
  right: 30px;
  border-left: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  border-radius: 0 0 0 30px;
  transform: rotate(-15deg);
}

/* Gift box */
.gift-box {
  position: relative;
  width: 120px;
  height: 100px;
  margin-top: 30px;
  animation: boxBounce 3s ease-in-out infinite;
}
@keyframes boxBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.box-lid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 18px;
  background: #1a1a1a;
  border-radius: 4px;
  z-index: 2;
}
.box-lid::before, .box-lid::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 16px;
  height: 14px;
  background: #ff7a1a;
  border-radius: 3px 3px 0 0;
}
.box-lid::before { left: 35%; transform: skewX(-15deg); }
.box-lid::after  { right: 35%; transform: skewX(15deg); }

.box-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-front {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mini-heart { width: 18px; height: 18px; }
.ibit-text {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text);
}

/* Floating coins */
.coin {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 2px solid white;
}
.coin-usdt {
  background: #26a17b;
  top: -10px;
  left: -12px;
  animation: coinFloat 3s ease-in-out infinite;
}
.coin-eth {
  background: #627eea;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  animation: coinFloat 3s ease-in-out infinite 0.5s;
}
.coin-btc {
  background: #f7931a;
  top: -10px;
  right: -12px;
  animation: coinFloat 3s ease-in-out infinite 1s;
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}
.coin-eth { transform: translateX(-50%); }
.coin-eth.animated { animation-name: coinFloatCenter; }
@keyframes coinFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text);
}

.deposit-btn {
  width: 100%;
  padding: 16px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.2s;
  box-shadow: var(--shadow-md);
}
.deposit-btn:active { transform: scale(0.97); }
.deposit-btn.big-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: var(--orange);
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
}

/* ============================================
   QUICK ACTIONS GRID
   ============================================ */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 8px;
  padding: 14px 12px 22px;
}
.qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.2s;
}
.qa-item:active { transform: scale(0.95); }
.qa-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  position: relative;
}
.qa-icon-special {
  background: linear-gradient(135deg, #fff1e6 0%, #ffe0c2 100%);
}
.qa-icon-special i { color: var(--orange); }
.fire-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.qa-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  padding: 0 16px 16px;
}
.promo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px 14px;
  transition: 0.2s;
}
.promo-card:active { transform: scale(0.98); }
.promo-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-card > i {
  color: var(--text-3);
  font-size: 11px;
}
.promo-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
}
.promo-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-2);
  transition: 0.3s;
}
.promo-dots .dot.active {
  width: 14px;
  border-radius: 3px;
  background: var(--orange);
}

/* ============================================
   RANKINGS
   ============================================ */
.rankings { padding: 8px 16px 22px; }
.rankings-head { margin-bottom: 14px; }
.rank-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rank-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rankings h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.rank-tabs {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  overflow-x: auto;
  margin-bottom: 12px;
}
.rank-tabs::-webkit-scrollbar { display: none; }
.rank-tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
  flex-shrink: 0;
  transition: color 0.2s;
}
.rank-tab.active {
  color: var(--text);
  font-weight: 700;
}
.rank-tab.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
.rank-tab.tab-more { margin-left: auto; flex-shrink: 0; }

.rank-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-2);
  padding: 8px 4px;
  margin-bottom: 10px;
}
.meta-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.meta-right { display: flex; gap: 18px; }

.coins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.coin-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 16px 14px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.coin-card:active { transform: scale(0.98); }
.coin-sym {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.coin-pr {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.coin-ch {
  font-size: 11px;
  font-weight: 600;
}
.coin-ch.up { color: var(--green); }
.coin-ch.down { color: var(--red); }
.coin-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
}

/* ============================================
   EARN SECTIONS (Bots, Packages, Income)
   ============================================ */
.earn-section {
  padding: 14px 16px 22px;
  border-top: 8px solid var(--bg-soft);
  margin-top: 8px;
}
.earn-section:first-of-type { border-top: 0; margin-top: 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.section-head h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 14px;
}
.see-all {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Bots */
.bots-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bots-row::-webkit-scrollbar { display: none; }
.bot-card {
  flex: 0 0 140px;
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 14px;
  scroll-snap-align: start;
  transition: 0.2s;
  border: 1px solid transparent;
}
.bot-card:active { transform: scale(0.97); }
.bot-card-gold {
  background: linear-gradient(135deg, #fff1e6 0%, #ffe0c2 100%);
  border-color: rgba(255, 122, 26, 0.2);
}
.bot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.bot-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  background: white;
  border-radius: 6px;
  color: var(--text-2);
}
.bot-tag-pop { background: #e6f7ff; color: #1890ff; }
.bot-tag-elite { background: var(--orange); color: white; }
.bot-i { font-size: 14px; color: var(--text-2); }
.bot-card-gold .bot-i { color: var(--orange); }
.bot-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.bot-roi {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 14px;
}
.bot-roi strong {
  font-size: 16px;
  color: var(--text);
  font-weight: 800;
}
.bot-card-gold .bot-roi strong { color: var(--orange); }
.bot-start {
  width: 100%;
  padding: 9px;
  background: #1a1a1a;
  color: white;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s;
}
.bot-start-gold { background: var(--orange); box-shadow: 0 4px 12px rgba(255, 122, 26, 0.3); }
.bot-start:active { transform: scale(0.96); }

/* Packages */
.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 14px 16px;
  transition: 0.2s;
}
.pkg-row:active { transform: scale(0.98); }
.pkg-row-vip {
  background: linear-gradient(135deg, #fff1e6 0%, #ffe0c2 100%);
  border: 1px solid rgba(255, 122, 26, 0.2);
}
.pkg-emoji {
  font-size: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.pkg-info { flex: 1; }
.pkg-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.vip-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 700;
  letter-spacing: 0.3px;
  vertical-align: middle;
}
.pkg-range {
  font-size: 12px;
  color: var(--text-2);
}
.pkg-cta {
  padding: 8px 18px;
  background: #1a1a1a;
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}
.pkg-cta-vip { background: var(--orange); }
.pkg-cta:active { transform: scale(0.95); }

/* Income */
.income-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.income-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 12px 14px;
  transition: 0.2s;
}
.income-tile:active { transform: scale(0.97); }
.i-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.i-cyan { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
.i-purple { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.i-pink { background: linear-gradient(135deg, #f472b6, #ec4899); }
.i-green { background: linear-gradient(135deg, #34d399, #10b981); }
.i-orange { background: linear-gradient(135deg, #fbbf24, var(--orange)); }
.i-red { background: linear-gradient(135deg, #fb7185, #ef4444); }
.i-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.i-text span {
  font-size: 11px;
  color: var(--text-2);
}

/* ============================================
   REWARDS HIGHLIGHT
   ============================================ */
.rewards-section {
  padding: 14px 16px 22px;
  border-top: 8px solid var(--bg-soft);
}
.rewards-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.rewards-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,122,26,0.3), transparent 60%);
  top: -50px;
  right: -50px;
}
.rewards-left { flex: 1; position: relative; }
.rewards-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,122,26,0.15);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.rewards-left h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.rewards-left p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 14px;
}
.rewards-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.rewards-right {
  position: relative;
  z-index: 1;
}
.trophy {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffa500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.4);
  animation: trophyShine 4s ease-in-out infinite;
}
@keyframes trophyShine {
  0%, 100% { transform: scale(1) rotate(-5deg); }
  50% { transform: scale(1.05) rotate(5deg); }
}

/* ============================================
   NEWS
   ============================================ */
.news-section {
  padding: 14px 16px 22px;
  border-top: 8px solid var(--bg-soft);
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.news-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--orange);
}
.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: 12px;
  transition: 0.2s;
}
.news-item:active { transform: scale(0.98); }
.news-tag {
  flex-shrink: 0;
  width: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}
.news-tag-new { color: var(--green); }
.news-content { flex: 1; }
.news-title-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 4px;
}
.news-meta {
  font-size: 11px;
  color: var(--text-3);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 26px 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--orange-soft) 0%, transparent 100%);
  border-top: 8px solid var(--bg-soft);
}
.final-cta h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  color: var(--text);
}
.final-cta p {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 18px;
}
.trust-row {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  color: var(--text-2);
  flex-wrap: wrap;
}
.trust-row i { color: var(--green); margin-right: 3px; }

/* ============================================
   FOOTER
   ============================================ */
.app-footer {
  padding: 22px 20px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.fb-name { font-size: 14px; font-weight: 700; }
.fb-tag { font-size: 11px; color: var(--text-2); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-2);
  padding: 4px 0;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 14px;
  transition: 0.2s;
}
.footer-social a:active { transform: scale(0.92); color: var(--orange); }
.footer-bottom {
  font-size: 11px;
  color: var(--text-3);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ============================================
   BOTTOM NAV
   ============================================ */
.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 8px 16px;
  background: white;
  border-top: 1px solid var(--border);
  z-index: 100;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px;
  color: var(--text-2);
  font-size: 10px;
  font-weight: 500;
  flex: 1;
  transition: 0.2s;
}
.nav-item i { font-size: 18px; }
.nav-item.active { color: var(--text); }
.nav-item.active i { color: var(--text); }
.nav-center { padding: 0; gap: 2px; }
.nav-center span { color: var(--text-2); }
.nav-center-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -8px;
  margin-bottom: 0;
  transition: 0.2s;
}
.nav-center-btn svg { width: 24px; height: 24px; }
.nav-center-btn:active { transform: scale(0.93); }

/* ============================================
   DESKTOP SIDE INFO
   ============================================ */
.desktop-info { display: none; }
@media (min-width: 1024px) {
  .desktop-info {
    display: block;
    position: fixed;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 360px;
    color: var(--text);
  }
  .desktop-info h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 18px 0 12px;
    line-height: 1.1;
  }
  .desktop-info p {
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 22px;
    font-size: 14px;
  }
  .qr-mock {
    width: 140px;
    height: 140px;
    background: white;
    border: 2px solid var(--text);
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 18px;
  }
  .qr-inner {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 0 0 / 14px 14px;
    border-radius: 8px;
  }
  .d-stores { display: flex; gap: 8px; margin-bottom: 18px; }
  .d-store {
    flex: 1;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
  }
  .d-store:hover { background: #2a2a2a; }
  .d-foot { font-size: 12px; color: var(--text-3); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.earn-section, .rewards-section, .news-section, .final-cta, .quick-actions, .promo-banner, .rankings {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
