/* ===== ALL RUMMY INDIA - Styles ===== */

:root {
  --green-900: #062412;
  --green-800: #0b3a20;
  --green-700: #0f5030;
  --green-600: #157a44;
  --green-500: #1fa159;
  --green-400: #34d478;
  --gold-100: #fff7d1;
  --gold-200: #ffe999;
  --gold-300: #ffd766;
  --gold-400: #f5c542;
  --gold-500: #e0a91b;
  --gold-600: #b6820b;
  --bg-dark: #0a1a10;
  --bg-card: #0f2b1a;
  --bg-card-2: #133a24;
  --text-primary: #f5f9f6;
  --text-muted: #a9c1b3;
  --border: rgba(245, 197, 66, 0.22);
  --border-2: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 10px 30px rgba(224, 169, 27, 0.15);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.55;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===== Announcement Bar ===== */
.announce-bar {
  background: linear-gradient(90deg, #0b3a20 0%, #157a44 50%, #0b3a20 100%);
  border-bottom: 1px solid var(--border);
  color: var(--gold-200);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 60;
}
.announce-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.announce-inner marquee { flex: 1; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,77,77,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
.announce-close {
  color: var(--gold-200);
  font-size: 20px;
  padding: 0 6px;
  transition: color .2s;
}
.announce-close:hover { color: var(--gold-400); }

/* ===== Header ===== */
.header {
  background: rgba(6, 36, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 55;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold-400), 0 0 20px rgba(245, 197, 66, 0.35);
}
.brand-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.2px;
  color: var(--gold-300);
  line-height: 1;
}
.brand-text h1 span { color: var(--green-400); }
.brand-text p {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-400);
  transition: width .25s ease;
}
.nav-menu a:hover { color: var(--gold-300); }
.nav-menu a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-select select {
  background: rgba(15, 80, 48, 0.6);
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.lang-select select:hover { border-color: var(--gold-400); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--gold-300);
  transition: transform .25s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 20%, rgba(31, 161, 89, 0.25) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 60%, rgba(245, 197, 66, 0.12) 0%, transparent 55%),
              linear-gradient(180deg, #062412 0%, #0a1a10 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 66, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(31, 161, 89, 0.15);
  border: 1px solid rgba(52, 212, 120, 0.35);
  color: var(--green-400);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-400);
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.gold-text {
  background: linear-gradient(180deg, #fff7d1 0%, #f5c542 55%, #b6820b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(245, 197, 66, 0.25));
}
.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, #ffd766 0%, #f5c542 50%, #e0a91b 100%);
  color: #1a0f00;
  box-shadow: 0 8px 20px rgba(245, 197, 66, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 197, 66, 0.45);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-300);
}
.btn-outline:hover {
  background: rgba(245, 197, 66, 0.1);
  color: var(--gold-200);
}
.btn-download {
  background: linear-gradient(180deg, #34d478 0%, #1fa159 50%, #157a44 100%);
  color: white;
  padding: 10px 22px;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(31, 161, 89, 0.3);
  width: 100%;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(31, 161, 89, 0.45);
}

.trust-strip {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-strip > div {
  display: flex;
  flex-direction: column;
}
.trust-strip strong {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold-300);
  font-size: 22px;
  letter-spacing: 0.5px;
}
.trust-strip span {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.hero-logo-ring {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.2) 0%, transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero-logo-ring::before,
.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(245, 197, 66, 0.25);
  animation: rotate 30s linear infinite;
}
.hero-logo-ring::after {
  inset: -22px;
  border-color: rgba(52, 212, 120, 0.25);
  animation-duration: 40s;
  animation-direction: reverse;
}
.hero-logo-ring img {
  width: 78%;
  height: 78%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.3), 0 0 0 4px rgba(245, 197, 66, 0.15);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.floating-coin {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd766, #b6820b);
  color: #1a0f00;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35), inset 0 2px 4px rgba(255,255,255,0.4);
  animation: coinFloat 3.5s ease-in-out infinite;
}
.coin-1 { top: 18%; left: 5%; animation-delay: 0s; }
.coin-2 { bottom: 20%; right: 8%; animation-delay: 1s; width: 56px; height: 56px; font-size: 24px; }
.coin-3 { top: 60%; left: 12%; animation-delay: 2s; width: 34px; height: 34px; font-size: 16px; }
@keyframes coinFloat {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* ===== Stats ===== */
.stats-section {
  padding: 40px 0;
  background: linear-gradient(180deg, transparent, rgba(15, 80, 48, 0.25));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .25s ease, border-color .25s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
}
.stat-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon.green { background: rgba(31, 161, 89, 0.15); color: var(--green-400); }
.stat-icon.gold { background: rgba(245, 197, 66, 0.15); color: var(--gold-300); }
.stat-icon.red { background: rgba(255, 90, 90, 0.15); color: #ff8080; }
.stat-icon.blue { background: rgba(90, 160, 255, 0.15); color: #7ab5ff; }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 2px 0;
}
.stat-sub { font-size: 11px; color: var(--text-muted); }

/* ===== Sections ===== */
.section { padding: 70px 0 40px; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; gap: 20px; flex-wrap: wrap; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .fire { font-size: 26px; }
.section-sub { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ===== Top 3 ===== */
.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.top3-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.top3-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.top3-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.top3-card .rank {
  position: absolute;
  top: 14px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #1a0f00;
}
.gold-rank .rank { background: linear-gradient(180deg, #ffd766, #b6820b); }
.silver-rank .rank { background: linear-gradient(180deg, #e6e8ee, #8b95a1); color: #1a1a1a; }
.bronze-rank .rank { background: linear-gradient(180deg, #e29d5e, #8a4a1f); color: #fff; }

.top3-card img {
  width: 96px; height: 96px;
  border-radius: 20px;
  margin: 0 auto 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.chip.vip { background: linear-gradient(90deg, #f5c542, #b6820b); color: #1a0f00; }
.chip.top { background: linear-gradient(90deg, #ff5f5f, #c72929); color: white; }
.chip.new { background: linear-gradient(90deg, #34d478, #1fa159); color: white; }
.chip.hot { background: linear-gradient(90deg, #ff9142, #d64f13); color: white; }
.chip.hb { background: linear-gradient(90deg, #7ab5ff, #3778d6); color: white; }
.chip.verified { background: linear-gradient(90deg, #a37cff, #6a3fd6); color: white; }

.top3-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 700;
}
.top3-card .bonus {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold-300);
  font-size: 24px;
  letter-spacing: 0.5px;
  margin: 4px 0 2px;
}
.top3-card .min {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 16px;
}

/* ===== Ticker ===== */
.ticker-section { padding: 20px 0; }
.ticker {
  background: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-card-2) 50%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.ticker-icon { font-size: 22px; animation: bounce 1.6s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.ticker-content { color: var(--text-primary); }
.ticker-content em { color: var(--gold-300); font-style: normal; margin-left: 4px; }

/* ===== Apps Section ===== */
.apps-section { padding-bottom: 80px; }
.apps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tabs {
  display: flex;
  gap: 6px;
  background: var(--bg-card);
  padding: 5px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.tab {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background-color .2s, color .2s;
}
.tab:hover { color: var(--gold-200); }
.tab.active {
  background: linear-gradient(180deg, #ffd766, #e0a91b);
  color: #1a0f00;
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.25);
}

.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; }
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 9px 14px;
  border-radius: var(--radius-md);
  min-width: 240px;
  transition: border-color .2s;
}
.search-box:focus-within { border-color: var(--gold-400); }
.search-box svg { color: var(--text-muted); flex-shrink: 0; }
.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
  font-family: inherit;
}
.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
.sort-select:hover { border-color: var(--gold-400); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.app-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.app-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}
.app-card .num {
  position: absolute;
  top: 10px; left: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(0,0,0,0.35);
  padding: 2px 8px;
  border-radius: 999px;
}
.app-card .heart {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s, transform .2s;
  z-index: 2;
}
.app-card .heart.active { color: #ff5f5f; }
.app-card .heart:hover { transform: scale(1.15); }
.app-card img {
  width: 80px; height: 80px;
  border-radius: 18px;
  margin: 8px auto 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.app-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.app-card .bonus-row {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.app-card .bonus-val {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold-300);
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.app-card .min-row {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.app-card .min-row strong { color: var(--green-400); font-weight: 600; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-emoji { font-size: 44px; margin-bottom: 12px; }

/* ===== Community ===== */
.community-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(15, 80, 48, 0.45) 0%, rgba(6, 36, 18, 0.9) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.community-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.community-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.community-text p { color: var(--text-muted); font-size: 15px; max-width: 480px; }
.community-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.comm-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  color: white;
  font-size: 14px;
  min-width: 200px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.comm-btn:hover { transform: translateY(-3px); }
.comm-btn.telegram {
  background: linear-gradient(135deg, #229ED9 0%, #1a7ba6 100%);
}
.comm-btn.telegram:hover { box-shadow: 0 14px 28px rgba(34, 158, 217, 0.4); }
.comm-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.comm-btn.whatsapp:hover { box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4); }
.comm-btn div { display: flex; flex-direction: column; text-align: left; }
.comm-btn span { font-size: 11px; opacity: 0.85; letter-spacing: 0.5px; }
.comm-btn strong { font-size: 18px; font-weight: 700; }

/* ===== SEO ===== */
.seo-section { background: rgba(15, 80, 48, 0.08); }
.seo-title {
  font-size: 26px;
  color: var(--gold-300);
  margin-bottom: 14px;
  font-weight: 700;
}
.seo-lead { color: var(--text-muted); margin-bottom: 34px; max-width: 900px; }
.seo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.seo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color .25s ease;
}
.seo-card:hover { border-color: var(--gold-400); }
.seo-card h4 {
  font-size: 17px;
  color: var(--gold-200);
  margin-bottom: 10px;
  font-weight: 700;
}
.seo-card p { color: var(--text-muted); font-size: 14px; }

.notice {
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.notice h4 { color: #ff8080; margin-bottom: 10px; font-size: 16px; }
.notice p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
.notice strong { color: var(--text-primary); }

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #062412 0%, #030d07 100%);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 2px var(--gold-400); }
.footer-brand h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--gold-300);
  letter-spacing: 1px;
}
.footer-brand p { color: var(--text-muted); font-size: 11px; }
.footer-desc { color: var(--text-muted); font-size: 13px; max-width: 340px; }
.footer-col h5 {
  font-size: 13px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--gold-300); padding-left: 4px; }
.social-row { display: flex; gap: 10px; margin-bottom: 14px; }
.social {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform .2s, box-shadow .2s;
}
.social.telegram { background: #229ED9; }
.social.whatsapp { background: #25D366; }
.social:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.35); }
.footer-note { color: var(--text-muted); font-size: 12px; }

.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}
.footer-bottom strong { color: var(--gold-300); }

/* ===== Floating buttons ===== */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  transition: transform .25s;
  position: relative;
}
.float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: ripple 2s infinite;
}
.float-btn.wa { background: #25D366; }
.float-btn.wa::after { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
.float-btn.tg { background: #229ED9; }
.float-btn.tg::after { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.6); }
.float-btn:hover { transform: scale(1.08); }
@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--gold-400);
  color: var(--text-primary);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 340px; }
  .hero-logo-ring { width: 260px; height: 260px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .top3-grid { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; }
  .seo-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-menu {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: rgba(6, 36, 18, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 14px 0; border-bottom: 1px solid var(--border-2); width: 100%; }
  .menu-toggle { display: flex; }
  .brand-text h1 { font-size: 18px; }
  .brand-text p { font-size: 10px; }
  .brand-logo { width: 44px; height: 44px; }
  .apps-header { flex-direction: column; align-items: stretch; }
  .filter-bar { flex-direction: column; }
  .search-box { min-width: unset; width: 100%; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .app-card { padding: 14px 10px; }
  .app-card img { width: 64px; height: 64px; }
  .section { padding: 50px 0 20px; }
  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: 34px; }
  .lang-select select { padding: 6px 8px; font-size: 12px; }
  .comm-btn { min-width: unset; width: 100%; }
  .seo-title { font-size: 20px; }
}

/* ===== Admin & Auth pages ===== */
#toast, .toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: #1a1a1a; color: #fff; padding: 12px 20px; border-radius: 8px; z-index: 9999; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#0a3d1f,#062e14); padding: 20px; }
.auth-card { background: #fff; border-radius: 16px; padding: 32px; max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.auth-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.auth-brand img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; }
.auth-brand h1 { font-size: 20px; margin: 0; color: #0a3d1f; }
.auth-brand h1 span { color: #d4af37; }
.auth-brand p { margin: 2px 0 0; color: #666; font-size: 13px; }
.auth-title { margin: 0 0 8px; font-size: 22px; color: #111; }
.auth-note { color: #666; font-size: 14px; margin-bottom: 16px; }
.auth-card form label { display: block; font-size: 13px; font-weight: 600; color: #333; margin: 12px 0 6px; }
.auth-card form input { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; box-sizing: border-box; }
.auth-error { background: #fee; color: #b00; padding: 10px; border-radius: 8px; margin-top: 12px; font-size: 14px; }
.auth-success { background: #d4edda; color: #155724; padding: 10px; border-radius: 8px; margin-top: 12px; font-size: 14px; }
.auth-card .btn { width: 100%; margin-top: 20px; padding: 12px; font-size: 15px; }
.auth-back { display: block; text-align: center; margin-top: 16px; color: #666; font-size: 13px; text-decoration: none; }

.admin-shell { min-height: 100vh; background: #f5f7fa; }
.admin-header { background: #0a3d1f; color: #fff; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.admin-brand { display: flex; align-items: center; gap: 12px; }
.admin-brand img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.admin-brand h1 { font-size: 18px; margin: 0; }
.admin-brand p { margin: 2px 0 0; font-size: 12px; opacity: .7; }
.admin-actions { display: flex; gap: 12px; align-items: center; }
.admin-link { color: #d4af37; text-decoration: none; font-weight: 600; font-size: 14px; }
.btn.btn-sm { padding: 8px 14px; font-size: 13px; }
.admin-tabs { display: flex; gap: 4px; background: #fff; padding: 0 24px; border-bottom: 1px solid #e5e7eb; overflow-x: auto; }
.admin-tabs button { background: none; border: none; padding: 14px 20px; font-weight: 600; color: #666; cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; }
.admin-tabs button.active { color: #0a3d1f; border-bottom-color: #d4af37; }
.admin-main { padding: 24px; max-width: 1400px; margin: 0 auto; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.admin-toolbar h2 { margin: 0; font-size: 22px; color: #0a3d1f; }
.admin-total { color: #666; font-size: 14px; }
.admin-table-wrap { background: #fff; border-radius: 12px; overflow: auto; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th, .admin-table td { padding: 12px; text-align: left; border-bottom: 1px solid #eee; font-size: 14px; }
.admin-table th { background: #fafafa; font-weight: 600; color: #666; font-size: 12px; text-transform: uppercase; }
.admin-app-name { display: flex; align-items: center; gap: 10px; }
.admin-app-name img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; }
.admin-row-actions { display: flex; gap: 8px; }
.admin-row-actions button { background: #f0f0f0; border: none; padding: 6px 12px; border-radius: 6px; font-size: 12px; cursor: pointer; font-weight: 600; }
.admin-row-actions button.danger { background: #fee; color: #c00; }
.admin-modal { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.admin-form { background: #fff; border-radius: 12px; padding: 24px; max-width: 640px; width: 100%; max-height: 90vh; overflow: auto; }
.admin-form h3 { margin: 0 0 16px; color: #0a3d1f; }
.admin-form.admin-form-inline { max-width: 640px; }
.admin-form.admin-form-inline h2 { margin: 0 0 16px; color: #0a3d1f; }
.admin-form label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 12px; }
.admin-form input, .admin-form select, .admin-form textarea { width: 100%; padding: 8px 10px; border: 1px solid #ddd; border-radius: 6px; margin-top: 4px; font-size: 14px; font-family: inherit; box-sizing: border-box; }
.admin-form label.cb { display: flex; align-items: center; gap: 8px; }
.admin-form label.cb input { width: auto; margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.admin-form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 20px; }

/* --- Admin extras --- */
.admin-form label.full { grid-column: 1 / -1; }
.admin-form textarea { font-family: ui-monospace, monospace; font-size: 13px; }

/* --- Rich SEO description section --- */
.seo-section { padding: 40px 0 20px; }
.seo-card { background: #fff; border-radius: 14px; padding: 22px; margin-bottom: 18px; border: 1px solid #e5eefc; box-shadow: 0 4px 24px -12px rgba(20,50,120,.15); }
.seo-card.intro-card { border-left: 4px solid #0f7a3d; }
.seo-card.highlight-card { border-left: 4px solid #d4af37; }
.seo-card.list-card { border-left: 4px solid #16a34a; }
.seo-card-title { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.seo-card-title .seo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #0f7a3d, #0a5c2c); color: #fff; border-radius: 10px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.seo-card.highlight-card .seo-icon { background: linear-gradient(135deg, #d4af37, #a37a00); }
.seo-card.list-card .seo-icon { background: linear-gradient(135deg, #16a34a, #065f46); }
.seo-card-title h2, .seo-card-title h3 { margin: 0; font-size: 18px; color: #0a2540; line-height: 1.35; }
.seo-info { background: #eefaf1; border-left: 3px solid #0f7a3d; padding: 12px 14px; border-radius: 8px; color: #08411f; font-size: 14px; margin-bottom: 14px; }
.seo-body p, .seo-card p { font-size: 15px; line-height: 1.7; color: #334155; margin: 0 0 10px; }
.notice.notice-card { background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid #f59e0b; padding: 20px; border-radius: 14px; margin-bottom: 18px; }
.notice.notice-card h4 { margin: 0 0 10px; color: #92400e; font-size: 17px; }
.notice.notice-card a { color: #7c3aed; text-decoration: underline; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 14px 18px; background: linear-gradient(90deg, #f0f9ff, #fff); border-radius: 12px; margin-bottom: 18px; border: 1px dashed #93c5fd; }
.seo-tags .tag-label { background: #0f7a3d; color: #fff; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.seo-tags .seo-tag { background: #fff; border: 1px solid #dbeafe; color: #0a5c2c; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.seo-card.list-card a { color: #0a5c2c; text-decoration: none; }
.seo-card.list-card a:hover { text-decoration: underline; }
.seo-telegram { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(90deg, #dbeafe, #eff6ff); border: 1px solid #93c5fd; border-radius: 14px; padding: 18px 20px; text-decoration: none; color: #0a2540; margin-top: 12px; }
.seo-telegram > div { display: flex; flex-direction: column; }
.seo-telegram span { font-size: 13px; color: #475569; }
.seo-telegram strong { font-size: 16px; color: #0a5c2c; }

/* --- App detail page --- */
.detail-hero { padding: 20px 0 10px; background: linear-gradient(180deg, #f8fafc, #fff); }
.detail-back { background: transparent; border: none; color: #0f7a3d; font-weight: 600; cursor: pointer; padding: 6px 0; margin-bottom: 10px; }
.detail-card { display: flex; gap: 20px; align-items: center; background: #fff; border-radius: 16px; padding: 22px; box-shadow: 0 8px 30px -10px rgba(20,50,120,.15); border: 1px solid #eef2ff; }
.detail-icon img { width: 130px; height: 130px; border-radius: 20px; object-fit: cover; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.detail-head h1 { margin: 0 0 6px; font-size: 30px; color: #0a2540; }
.detail-subtitle { color: #0f7a3d; text-decoration: underline; font-size: 15px; }
.detail-stats { display: flex; gap: 22px; margin-top: 14px; flex-wrap: wrap; color: #334155; font-weight: 600; }
.detail-cta { display: grid; gap: 12px; margin-top: 18px; }
.btn.btn-pink { background: linear-gradient(90deg, #ec4899, #db2777); color: #fff; padding: 16px 20px; border: none; border-radius: 40px; font-weight: 700; font-size: 15px; letter-spacing: .5px; cursor: pointer; box-shadow: 0 8px 20px -6px rgba(236,72,153,.6); }
.btn.btn-outline-blue { background: #fff; border: 2px solid #1fa159; color: #0a5c2c; padding: 14px 20px; border-radius: 40px; font-weight: 700; text-align: center; text-decoration: none; }
.detail-body { padding: 30px 0 60px; }
.detail-title { font-size: 28px; color: #0a2540; margin: 20px 0 6px; line-height: 1.3; }
.detail-updated { color: #64748b; font-size: 13px; margin-bottom: 20px; }
.detail-content { background: #fff; padding: 24px; border-radius: 14px; border: 1px solid #eef2ff; box-shadow: 0 4px 20px -10px rgba(20,50,120,.1); }
.detail-content p { font-size: 15.5px; line-height: 1.75; color: #334155; margin: 0 0 14px; }
.detail-content h3 { font-size: 20px; color: #0a2540; margin: 22px 0 10px; }
.detail-content ul, .detail-content ol { padding-left: 22px; margin: 0 0 14px; }
.detail-content li { font-size: 15px; line-height: 1.7; color: #334155; margin-bottom: 6px; }
.related-banner { margin: 30px 0 14px; background: linear-gradient(90deg, #16a34a, #22c55e); color: #fff; padding: 14px; border-radius: 10px; text-align: center; font-weight: 700; font-size: 16px; }
.related-list { display: grid; gap: 12px; }
.related-item { display: grid; grid-template-columns: auto 90px 1fr auto; gap: 14px; align-items: center; background: #fff; padding: 14px; border-radius: 14px; border: 1px solid #eef2ff; }
.related-num { color: #64748b; font-weight: 700; }
.related-img img { width: 84px; height: 84px; border-radius: 14px; object-fit: cover; }
.related-body h4 { margin: 0 0 6px; color: #0a2540; }
.related-body h4 a { color: inherit; text-decoration: none; }
.related-body p { margin: 2px 0; font-size: 13px; color: #0a5c2c; }
@media (max-width: 640px) {
  .detail-card { flex-direction: column; text-align: center; }
  .detail-stats { justify-content: center; }
  .related-item { grid-template-columns: auto 72px 1fr; }
  .related-item .btn { grid-column: 1 / -1; }
}

/* ===== Blue & White premium refresh ===== */
:root {
  --green-900: #0b3b7a;
  --green-800: #0f4f9f;
  --green-700: #1769c2;
  --green-600: #1d7ee8;
  --green-500: #2f8fff;
  --green-400: #58aaff;
  --gold-100: #eff7ff;
  --gold-200: #d8ecff;
  --gold-300: #2f8fff;
  --gold-400: #1677ff;
  --gold-500: #0f5fc9;
  --gold-600: #0a4294;
  --bg-dark: #f4f8ff;
  --bg-card: #ffffff;
  --bg-card-2: #f7fbff;
  --text-primary: #0b2545;
  --text-muted: #58708f;
  --border: rgba(22, 119, 255, 0.2);
  --border-2: rgba(22, 119, 255, 0.14);
  --shadow-gold: 0 18px 45px rgba(22, 119, 255, 0.16);
  --shadow-lg: 0 20px 50px rgba(23, 72, 137, 0.18);
}

body { background: #f4f8ff; color: var(--text-primary); }
.announce-bar { background: linear-gradient(90deg, #0d5fc4, #1685ff, #0d5fc4); color: #ffffff; border-bottom-color: rgba(255,255,255,.22); }
.announce-close { color: #ffffff; }
.header { background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid #dbeafe; box-shadow: 0 8px 24px rgba(15, 89, 183, 0.08); }
.brand-text h1, .footer-brand h4, .section-title, .hero-title, .stat-value { color: #0b2545; letter-spacing: 0; }
.brand-text h1 span, .gold-text, .trust-strip strong, .footer-bottom strong { color: #1677ff; background: none; -webkit-text-fill-color: initial; filter: none; }
.brand-logo { box-shadow: 0 0 0 2px #1677ff, 0 12px 28px rgba(22,119,255,.22); }
.nav-menu a { color: #173b63; }
.nav-menu a::after, .top3-card::before { background: #1677ff; }
.nav-menu a:hover { color: #0f5fc9; }
.menu-toggle span { background: #1677ff; }
.hero { background: linear-gradient(180deg, #eaf5ff 0%, #ffffff 58%, #f4f8ff 100%); padding-bottom: 56px; }
.hero-bg { background-image: linear-gradient(rgba(22,119,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(22,119,255,.07) 1px, transparent 1px); }
.hero-badge { background: #e8f3ff; border-color: #b8dbff; color: #0f5fc9; }
.hero-badge .dot { background: #1677ff; }
.hero-logo-ring { background: radial-gradient(circle, rgba(22,119,255,.18) 0%, transparent 65%); }
.hero-logo-ring::before { border-color: rgba(22,119,255,.22); }
.hero-logo-ring::after { border-color: rgba(46,151,255,.2); }
.floating-coin { background: linear-gradient(180deg, #ffffff, #b8dbff); color: #0f5fc9; }
.btn-gold, .btn-download, .btn.btn-pink { background: linear-gradient(180deg, #42a5ff 0%, #1677ff 55%, #0f5fc9 100%); color: #ffffff; box-shadow: 0 12px 24px rgba(22,119,255,.24); }
.btn-gold:hover, .btn-download:hover, .btn.btn-pink:hover { box-shadow: 0 16px 34px rgba(22,119,255,.32); }
.btn-outline, .btn.btn-outline-blue { border-color: #1677ff; color: #0f5fc9; background: #ffffff; }
.btn-outline:hover { background: #e8f3ff; color: #0b4fa8; }
.stats-section, .community-section, .seo-section { background: #f4f8ff; border-color: #dbeafe; }
.stat-card, .ticker, .top3-card, .app-card { background: #ffffff; border: 1px solid #dbeafe; box-shadow: 0 12px 34px rgba(15, 89, 183, 0.08); }
.stat-card:hover, .top3-card:hover, .app-card:hover { border-color: #93c5fd; box-shadow: 0 16px 40px rgba(22,119,255,.14); }
.tabs, .search-box, .sort-select { background: #ffffff; border-color: #dbeafe; color: #0b2545; }
.tab.active { background: #1677ff; color: #ffffff; }
.chip.vip, .chip.top, .chip.new, .chip.hot, .chip.hb, .chip.verified { background: #e8f3ff; color: #0f5fc9; border: 1px solid #b8dbff; }

.top3-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.top3-card { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 10px; padding: 14px; text-align: left; border-radius: 12px; min-width: 0; }
.top3-card .rank { top: 8px; left: 8px; width: 24px; height: 24px; font-size: 13px; color: #ffffff; background: #1677ff !important; z-index: 2; }
.top3-img-link { display: block; }
.top3-card img { width: 58px; height: 58px; border-radius: 14px; margin: 0; box-shadow: 0 8px 18px rgba(15, 89, 183, 0.16); }
.top3-info { min-width: 0; }
.top3-card .chip { margin: 0 0 4px; padding: 2px 7px; font-size: 9px; }
.top3-card h4 { font-size: 14px; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top3-card .bonus { color: #0f5fc9; font-size: 17px; margin: 0; }
.top3-card .min { font-size: 11px; margin: 0; color: #58708f; }
.top3-card .btn-download { grid-column: 1 / -1; padding: 8px 10px; border-radius: 999px; font-size: 12px; }

.apps-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.app-card { display: grid; grid-template-columns: 34px 92px minmax(0, 1fr) auto; align-items: center; gap: 16px; padding: 16px 20px; text-align: left; border-radius: 18px; min-height: 126px; }
.app-card .num { position: static; background: transparent; color: #9db4d0; padding: 0; font-family: inherit; font-size: 18px; font-weight: 800; }
.app-img-link { display: block; }
.app-card img { width: 92px; height: 92px; margin: 0; border-radius: 22px; box-shadow: 0 12px 26px rgba(15, 89, 183, 0.16); }
.app-info { min-width: 0; }
.app-card .chip { margin: 0 0 6px; }
.app-card h5 { font-size: 24px; margin: 0 0 8px; color: #091f3b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bonus-row, .bonus-val, .min-row { display: none; }
.bonus-line, .min-line { color: #173b63; font-size: 18px; font-weight: 800; line-height: 1.35; }
.min-line { color: #1d4ed8; }
.app-actions { display: flex; align-items: center; gap: 14px; }
.app-actions .btn-download { width: 210px; min-height: 62px; border-radius: 999px; font-size: 18px; font-weight: 900; }
.mini-actions { display: flex; gap: 10px; }
.app-card .heart, .share-btn { position: static; width: 58px; height: 58px; border-radius: 18px; border: 1px solid #dbeafe; background: #ffffff; color: #1d4ed8; display: grid; place-items: center; font-size: 27px; box-shadow: 0 8px 18px rgba(15, 89, 183, 0.08); }
.app-card .heart.active { color: #ef4444; }

.community-inner, .community-text p { color: #0b2545; }
.community-text h3 { color: #0b2545; letter-spacing: 0; }
.footer { background: #ffffff; border-top: 1px solid #dbeafe; }
.footer-col h5 { color: #0f5fc9; }
.footer-col a, .footer-desc, .footer-bottom, .footer-brand p { color: #58708f; }
.footer-col a:hover { color: #0f5fc9; }
.footer-bottom { border-top-color: #dbeafe; }

.auth-wrap { background: linear-gradient(135deg, #eaf5ff, #ffffff); }
.auth-brand h1, .auth-title, .admin-toolbar h2, .admin-form h3, .admin-form.admin-form-inline h2 { color: #0b2545; }
.auth-brand h1 span, .admin-link { color: #1677ff; }
.admin-shell { background: #f4f8ff; color: #0b2545; }
.admin-header { background: #ffffff; color: #0b2545; border-bottom: 1px solid #dbeafe; box-shadow: 0 8px 24px rgba(15, 89, 183, 0.08); }
.admin-tabs { border-bottom-color: #dbeafe; }
.admin-tabs button.active { color: #0f5fc9; border-bottom-color: #1677ff; }
.admin-table-wrap, .admin-form, .auth-card { border: 1px solid #dbeafe; box-shadow: 0 16px 42px rgba(15, 89, 183, 0.1); }
.admin-table th { background: #eef7ff; color: #44617f; }
.admin-row-actions button { background: #e8f3ff; color: #0f5fc9; }
.admin-row-actions button.danger { background: #fee2e2; color: #b91c1c; }
.admin-url-cell { color: #0f5fc9; font-weight: 700; }
.admin-empty { background: #ffffff; border: 1px dashed #93c5fd; border-radius: 16px; padding: 34px; text-align: center; color: #58708f; }
.admin-empty h3 { color: #0b2545; margin-bottom: 8px; }
.admin-editor-preview { display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: 14px; background: #eef7ff; border: 1px solid #dbeafe; margin-bottom: 16px; }
.admin-editor-preview img { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; }
.admin-editor-preview div { display: flex; flex-direction: column; gap: 2px; color: #0b2545; }
.admin-editor-preview span, .admin-editor-preview small { color: #58708f; }

@media (max-width: 960px) {
  .top3-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav-menu { background: rgba(255,255,255,.98); border-bottom-color: #dbeafe; }
  .app-card { grid-template-columns: 28px 76px minmax(0, 1fr); gap: 12px; padding: 14px; }
  .app-actions { grid-column: 2 / -1; justify-content: space-between; width: 100%; }
  .app-actions .btn-download { width: min(230px, 62vw); min-height: 52px; font-size: 16px; }
  .bonus-line, .min-line { font-size: 15px; }
  .app-card h5 { font-size: 20px; }
}

@media (max-width: 560px) {
  .top3-grid { gap: 8px; }
  .top3-card { grid-template-columns: 44px 1fr; padding: 10px; gap: 8px; }
  .top3-card img { width: 44px; height: 44px; border-radius: 12px; }
  .top3-card h4 { font-size: 12px; }
  .top3-card .bonus { font-size: 13px; }
  .top3-card .min { display: none; }
  .top3-card .btn-download { font-size: 10px; padding: 7px 6px; }
  .apps-grid { grid-template-columns: 1fr; gap: 12px; }
  .app-card { grid-template-columns: 24px 72px minmax(0, 1fr); min-height: 116px; padding: 12px; }
  .app-card img { width: 72px; height: 72px; border-radius: 18px; }
  .app-card h5 { font-size: 18px; }
  .bonus-line, .min-line { font-size: 13px; }
  .mini-actions { gap: 8px; }
  .app-card .heart, .share-btn { width: 50px; height: 50px; border-radius: 15px; }
}

/* ============================================
   PREMIUM 3D — WHITE / BLUE / GREEN OVERRIDE
   ============================================ */
:root {
  --pri-blue-50:  #eef4ff;
  --pri-blue-100: #dbeafe;
  --pri-blue-300: #93c5fd;
  --pri-blue-500: #1fa159;
  --pri-blue-600: #0f7a3d;
  --pri-blue-700: #1d4ed8;
  --pri-blue-900: #0b1f52;
  --pri-green-400: #34d399;
  --pri-green-500: #10b981;
  --pri-green-600: #059669;
  --pri-green-700: #047857;
  --surface: #ffffff;
  --surface-2: #f6f9ff;
  --surface-3: #eaf1ff;
  --ink: #0b1f52;
  --ink-2: #23324f;
  --ink-muted: #56668a;
  --stroke: rgba(15, 122, 61, 0.15);
  --stroke-2: rgba(15, 23, 42, 0.08);
  --shadow-3d: 0 20px 45px -15px rgba(15, 122, 61, 0.35), 0 8px 20px -8px rgba(16, 185, 129, 0.25);
  --shadow-3d-hover: 0 30px 60px -18px rgba(15, 122, 61, 0.5), 0 14px 26px -10px rgba(16, 185, 129, 0.35);
  --grad-brand: linear-gradient(135deg, #0f7a3d 0%, #10b981 100%);
  --grad-soft: linear-gradient(135deg, #eaf1ff 0%, #e6fbf3 100%);
}

body {
  background:
    radial-gradient(1200px 600px at 10% -10%, #dbeafe 0%, transparent 60%),
    radial-gradient(1000px 500px at 110% 10%, #d1fae5 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%) !important;
  color: var(--ink) !important;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Kill dark card backgrounds everywhere */
.header, .header-premium { background: rgba(255,255,255,0.85) !important; backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--stroke) !important; box-shadow: 0 8px 30px -12px rgba(15,122,61,0.15); }
.header-inner { padding: 14px 20px !important; }

.brand-text h1 { color: var(--ink) !important; letter-spacing: -0.02em; }
.brand-text h1 span { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand-text p { color: var(--ink-muted) !important; }

.nav-menu a { color: var(--ink-2) !important; font-weight: 600; }
.nav-menu a:hover { color: var(--pri-blue-600) !important; }

/* ===== Floating logo + orbiting apps ===== */
.brand-logo-wrap { position: relative; width: 96px; height: 96px; display: inline-block; }
.brand-logo-float {
  width: 68px; height: 68px; border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-3d), inset 0 0 0 2px rgba(15,122,61,0.3);
  position: absolute; top: 14px; left: 14px;
  animation: floatY 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}
.orbit-ring {
  position: absolute; inset: 0;
  animation: orbitSpin 14s linear infinite;
  pointer-events: none;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit-app {
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 14px -4px rgba(15,122,61,0.35), 0 2px 6px rgba(16,185,129,0.25);
  border: 2px solid #fff;
  overflow: hidden;
  animation: orbitCounter 14s linear infinite;
}
.orbit-app img { width: 100%; height: 100%; object-fit: cover; }
@keyframes orbitCounter { to { transform: rotate(-360deg); } }
.orbit-app-1 { transform: rotate(0deg) translateX(50px); }
.orbit-app-2 { transform: rotate(90deg) translateX(50px); }
.orbit-app-3 { transform: rotate(180deg) translateX(50px); }
.orbit-app-4 { transform: rotate(270deg) translateX(50px); }
.orbit-app-1 { top: 50%; left: 50%; margin: -15px 0 0 35px; }
.orbit-app-2 { top: 50%; left: 50%; margin: 35px 0 0 -15px; }
.orbit-app-3 { top: 50%; left: 50%; margin: -15px 0 0 -65px; }
.orbit-app-4 { top: 50%; left: 50%; margin: -65px 0 0 -15px; }
.orbit-app { animation: orbitFloat 4s ease-in-out infinite; }
.orbit-app-1 { animation-delay: 0s; }
.orbit-app-2 { animation-delay: 1s; }
.orbit-app-3 { animation-delay: 2s; }
.orbit-app-4 { animation-delay: 3s; }
@keyframes orbitFloat {
  0%,100% { filter: drop-shadow(0 4px 8px rgba(15,122,61,0.25)); }
  50% { filter: drop-shadow(0 10px 18px rgba(16,185,129,0.4)); }
}

/* ===== Sections ===== */
.section { padding: 50px 0 !important; }
.section-title { color: var(--ink) !important; }
.section-sub { color: var(--ink-muted) !important; }

/* ===== Top 3 Cards - premium 3D ===== */
.top3-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 18px !important; }
.top3-card {
  background: #ffffff !important;
  border: 1px solid var(--stroke) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-3d) !important;
  padding: 20px 16px !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  position: relative;
  overflow: hidden;
}
.top3-card::before {
  content:""; position:absolute; inset:0;
  background: var(--grad-soft);
  opacity: .55; z-index: 0; pointer-events: none;
}
.top3-card > * { position: relative; z-index: 1; }
.top3-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-3d-hover) !important; }
.top3-card .rank {
  background: var(--grad-brand) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px -6px rgba(15,122,61,.55);
}
.top3-card h4, .top3-card h4 a { color: var(--ink) !important; }
.top3-card .bonus { color: var(--pri-green-600) !important; font-weight: 700; }
.top3-card .min { color: var(--ink-muted) !important; }

/* ===== App Grid - premium 3D cards ===== */
.apps-grid-premium {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}
.app-card-premium {
  background: #fff !important;
  border: 1px solid var(--stroke) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-3d) !important;
  padding: 12px 14px !important;
  display: grid !important;
  grid-template-columns: auto 58px 1fr auto !important;
  align-items: center !important;
  gap: 12px !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
  position: relative;
  overflow: hidden;
}
.app-card-premium::after {
  content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
  background: var(--grad-brand);
  border-radius: 16px 0 0 16px;
}
.app-card-premium:hover { transform: translateY(-3px); box-shadow: var(--shadow-3d-hover) !important; }
.app-card-premium .num {
  background: var(--surface-3) !important;
  color: var(--pri-blue-700) !important;
  font-weight: 800;
  width: 28px; height: 28px; line-height: 28px; text-align: center;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  font-size: 13px;
}
.app-card-premium .app-img-link img {
  width: 58px !important; height: 58px !important;
  border-radius: 14px !important;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px -6px rgba(15,122,61,0.35);
  object-fit: cover;
}
.app-card-premium h5, .app-card-premium h5 a { color: var(--ink) !important; font-size: 14px !important; font-weight: 700; }
.app-card-premium .bonus-line { color: var(--pri-green-600) !important; font-weight: 600; font-size: 13px; }
.app-card-premium .min-line { color: var(--ink-muted) !important; font-size: 12px; }
.app-card-premium .chip {
  background: var(--grad-brand) !important;
  color: #fff !important;
  padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 700;
  display: inline-block; margin-bottom: 4px;
}

/* Download button right side, above heart/share */
.app-actions-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 6px !important;
  min-width: 110px;
}
.btn-download-right,
.app-card-premium .btn-download {
  background: var(--grad-brand) !important;
  color: #fff !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 10px 20px -8px rgba(16,185,129,0.55), 0 4px 10px -6px rgba(15,122,61,0.5) !important;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
  border: none;
  white-space: nowrap;
}
.btn-download-right:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 26px -8px rgba(16,185,129,0.6), 0 6px 12px -6px rgba(15,122,61,0.6) !important; }
.mini-actions-below {
  display: flex; gap: 6px;
}
.mini-actions-below .heart, .mini-actions-below .share-btn {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--surface-2) !important;
  border: 1px solid var(--stroke) !important;
  color: var(--pri-blue-700) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: all .18s ease;
}
.mini-actions-below .heart.active { background: linear-gradient(135deg,#fee2e2,#fecaca) !important; color: #dc2626 !important; }
.mini-actions-below .heart:hover, .mini-actions-below .share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 12px -4px rgba(15,122,61,0.3); }

/* Tabs / filters */
.tab { color: var(--ink-muted) !important; background: transparent !important; border: 1px solid transparent !important; padding: 8px 16px; border-radius: 10px; font-weight: 600; }
.tab.active { background: var(--grad-brand) !important; color: #fff !important; box-shadow: 0 10px 20px -8px rgba(15,122,61,0.5); }
.search-box input, .sort-select {
  background: #fff !important;
  border: 1px solid var(--stroke) !important;
  color: var(--ink) !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  box-shadow: 0 4px 10px -4px rgba(15,122,61,0.15);
}

/* Community */
.community-section { background: transparent !important; padding: 40px 0 !important; }
.community-inner { background: #fff !important; border-radius: 22px !important; border: 1px solid var(--stroke); box-shadow: var(--shadow-3d); padding: 30px !important; }
.community-text h3 { color: var(--ink) !important; }
.community-text p { color: var(--ink-muted) !important; }
.comm-btn { border-radius: 14px !important; box-shadow: var(--shadow-3d); }
.comm-btn.telegram { background: linear-gradient(135deg, #0088cc, #00b0ff) !important; color: #fff !important; }
.comm-btn.whatsapp { background: linear-gradient(135deg, #10b981, #059669) !important; color: #fff !important; }

/* SEO cards */
.seo-section { padding-bottom: 60px !important; }
.seo-card, .notice { background: #fff !important; border: 1px solid var(--stroke) !important; border-radius: 20px !important; box-shadow: var(--shadow-3d); padding: 24px !important; color: var(--ink-2) !important; margin-bottom: 20px; }
.seo-card h2, .seo-card h3 { color: var(--ink) !important; }
.seo-card strong, .notice strong { color: var(--pri-blue-700); }
.seo-tags { background: #fff !important; padding: 16px !important; border-radius: 16px !important; border: 1px solid var(--stroke); }
.seo-tag { background: var(--surface-3) !important; color: var(--pri-blue-700) !important; padding: 4px 10px; border-radius: 999px; font-size: 12px; margin: 4px; display: inline-block; }
.tag-label { color: var(--ink) !important; font-weight: 700; }

.gold-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fire { filter: drop-shadow(0 4px 10px rgba(15,122,61,0.4)); }

/* Footer */
.footer { background: linear-gradient(180deg, #0b1f52 0%, #0a2540 100%) !important; color: #dbeafe !important; margin-top: 40px; }
.footer h4, .footer h5 { color: #fff !important; }
.footer a { color: #93c5fd !important; }
.footer-brand img { border-radius: 12px; box-shadow: 0 8px 20px -6px rgba(59,130,246,0.5); }

/* Toast */
.toast { background: #fff !important; color: var(--ink) !important; border: 1px solid var(--stroke); box-shadow: var(--shadow-3d); border-radius: 14px !important; padding: 12px 20px !important; }

/* Chips (tag badges) */
.chip.new { background: linear-gradient(135deg,#10b981,#34d399) !important; }
.chip.top { background: linear-gradient(135deg,#f59e0b,#fbbf24) !important; }
.chip.vip { background: linear-gradient(135deg,#8b5cf6,#a78bfa) !important; }
.chip.hot { background: linear-gradient(135deg,#ef4444,#f87171) !important; }
.chip.hb  { background: linear-gradient(135deg,#0f7a3d,#1fa159) !important; }
.chip.verified { background: linear-gradient(135deg,#059669,#10b981) !important; }

/* Empty state */
.empty-state { background: #fff !important; border: 1px dashed var(--stroke) !important; border-radius: 18px; color: var(--ink-muted) !important; }
.empty-state h4 { color: var(--ink) !important; }

/* Menu toggle */
.menu-toggle span { background: var(--ink) !important; }

/* Mobile */
@media (max-width: 720px) {
  .app-card-premium { grid-template-columns: 52px 1fr !important; grid-template-rows: auto auto; gap: 10px !important; padding: 10px 12px !important; }
  .app-card-premium .num { display: none; }
  .app-card-premium .app-img-link { grid-row: span 2; }
  .app-card-premium .app-img-link img { width: 52px !important; height: 52px !important; border-radius: 12px !important; }
  .app-card-premium h5, .app-card-premium h5 a { font-size: 13px !important; }
  .app-card-premium .bonus-line { font-size: 12px; }
  .app-card-premium .min-line { font-size: 11px; }
  .app-actions-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; }
  .btn-download-right, .app-card-premium .btn-download { padding: 7px 12px !important; font-size: 12px !important; }
  .mini-actions-below .heart, .mini-actions-below .share-btn { width: 46px; height: 46px; font-size: 20px; border-radius: 12px; }
  .top3-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .top3-card { padding: 12px 8px !important; }
  .top3-card .top3-img-link img { width: 54px !important; height: 54px !important; }
  .top3-card h4 { font-size: 13px !important; }
  .top3-card .btn-download { padding: 8px 10px !important; font-size: 12px !important; }
  .brand-logo-wrap { width: 76px; height: 76px; }
  .brand-logo-float { width: 52px; height: 52px; top: 12px; left: 12px; }
  .orbit-app { width: 22px; height: 22px; margin: -11px 0 0 -11px; }
  .orbit-app-1 { margin: -11px 0 0 26px; }
  .orbit-app-2 { margin: 26px 0 0 -11px; }
  .orbit-app-3 { margin: -11px 0 0 -48px; }
  .orbit-app-4 { margin: -48px 0 0 -11px; }
}

/* Admin file upload styling */
.upload-row { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.upload-row input[type=file] { flex: 1; }
.upload-preview { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; border: 1px solid var(--stroke); box-shadow: 0 6px 12px -6px rgba(15,122,61,.35); }
.upload-hint { font-size: 12px; color: var(--ink-muted); margin-top: 4px; }

/* ===== Stats strip ===== */
.stats-strip { padding: 1.25rem 0 0.5rem; }
.stats-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-card { background: #fff; border: 1px solid #dbeafe; border-radius: 14px; padding: 14px; display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 14px rgba(15,122,61,0.06); }
.stat-icon { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.stat-emoji { font-size: 28px; }
.stat-num { font-size: 22px; font-weight: 800; color: #08411f; line-height: 1; }
.stat-label { font-size: 12px; color: #475569; margin-top: 2px; }
@media (max-width: 640px) { .stats-strip-inner { grid-template-columns: 1fr; } .stat-num { font-size: 20px; } }

/* ===== Featured Upcoming ad box (above Top 3) ===== */
.featured-upcoming-section { padding: 1rem 0; }
.featured-upcoming-card { position: relative; background: linear-gradient(135deg,#eff6ff,#dbeafe); border: 2px dashed #1fa159; border-radius: 18px; padding: 18px; overflow: hidden; }
.fu-badge { display: inline-block; background: #0f7a3d; color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.fu-body { display: grid; grid-template-columns: 96px 1fr auto; gap: 14px; align-items: center; margin-top: 12px; }
.fu-img img { width: 96px; height: 96px; object-fit: cover; border-radius: 14px; border: 3px solid #fff; box-shadow: 0 6px 18px rgba(15,122,61,0.25); }
.fu-info h3 { margin: 0 0 4px; color: #08411f; font-size: 20px; }
.fu-info h3 a { color: inherit; text-decoration: none; }
.fu-desc { margin: 0; color: #475569; font-size: 13px; }
.fu-launch { margin: 6px 0; color: #0a5c2c; font-size: 13px; }
@media (max-width: 640px) { .fu-body { grid-template-columns: 72px 1fr; } .fu-actions { grid-column: 1 / -1; } .fu-img img { width: 72px; height: 72px; } }

/* ===== Countdown ===== */
.countdown { display: inline-flex; gap: 6px; margin-top: 6px; }
.countdown .cd-cell { background: #08411f; color: #fff; border-radius: 8px; padding: 6px 10px; text-align: center; min-width: 44px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 2px 6px rgba(8,65,31,0.25); }
.countdown .cd-num { font-size: 18px; font-weight: 800; line-height: 1; }
.countdown .cd-lbl { font-size: 10px; opacity: 0.8; letter-spacing: 0.5px; }
.countdown-compact .cd-cell { padding: 4px 8px; min-width: 36px; }
.countdown-compact .cd-num { font-size: 15px; }
.countdown-done { background: #16a34a; color: #fff; padding: 6px 12px; border-radius: 999px; font-weight: 700; }

/* ===== Upcoming grid ===== */
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.upcoming-card { background: #fff; border: 1px solid #dbeafe; border-radius: 14px; padding: 14px; display: flex; gap: 12px; align-items: flex-start; box-shadow: 0 4px 12px rgba(15,122,61,0.06); }
.upcoming-img img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.upcoming-info h4 { margin: 6px 0 4px; color: #08411f; }
.upcoming-info h4 a { color: inherit; text-decoration: none; }
.upcoming-launch { font-size: 12px; color: #475569; margin: 4px 0; }

/* ===== Bottom logo section ===== */
.bottom-logo-section { padding: 3rem 0; background: linear-gradient(180deg,#fff,#eff6ff); text-align: center; }
.bottom-logo-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bottom-logo-wrap { width: 220px; height: 220px; position: relative; }
.bottom-logo-wrap .brand-logo { width: 120px; height: 120px; border-radius: 50%; }
.bottom-logo-section h3 { color: #08411f; margin: 0; }
.bottom-logo-section p { color: #475569; margin: 0; }

/* ===== Header logo (plain round, no square frame) ===== */
.brand-logo-plain { display: inline-block; background: transparent !important; box-shadow: none !important; border: none !important; padding: 0 !important; }
.brand-logo-plain .brand-logo {
  width: 80px; height: 80px; border-radius: 50% !important;
  box-shadow: 0 6px 18px -8px rgba(15,122,61,0.45);
  background: transparent !important;
  border: none !important;
  object-fit: cover;
}
@media (max-width: 640px) {
  .brand-logo-plain .brand-logo { width: 60px; height: 60px; border-radius: 50% !important; }
  .brand-text h1 { font-size: 18px !important; }
  .brand-text p { font-size: 11px !important; }
}


/* ===== Bigger bottom logo with orbiting apps (this is where orbit lives now) ===== */
.bottom-logo-section { padding: 3.5rem 0 !important; }
.bottom-logo-wrap { width: 280px !important; height: 280px !important; }
.bottom-logo-wrap .brand-logo-float {
  width: 140px !important; height: 140px !important;
  top: 70px !important; left: 70px !important;
  border-radius: 50% !important;
  box-shadow: 0 20px 50px -10px rgba(15,122,61,0.45), 0 0 0 6px #fff !important;
}
.bottom-logo-wrap .orbit-app {
  width: 46px !important; height: 46px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px -6px rgba(15,122,61,0.4);
  background: #fff;
  overflow: hidden;
}
.bottom-logo-wrap .orbit-app-1 { margin: -23px 0 0 90px !important; }
.bottom-logo-wrap .orbit-app-2 { margin: 90px 0 0 -23px !important; }
.bottom-logo-wrap .orbit-app-3 { margin: -23px 0 0 -136px !important; }
.bottom-logo-wrap .orbit-app-4 { margin: -136px 0 0 -23px !important; }
.bottom-logo-section h3 { font-size: 24px; margin-top: 10px !important; }
@media (max-width: 640px) {
  .bottom-logo-wrap { width: 220px !important; height: 220px !important; }
  .bottom-logo-wrap .brand-logo-float {
    width: 108px !important; height: 108px !important;
    top: 56px !important; left: 56px !important;
  }
  .bottom-logo-wrap .orbit-app { width: 38px !important; height: 38px !important; }
  .bottom-logo-wrap .orbit-app-1 { margin: -19px 0 0 72px !important; }
  .bottom-logo-wrap .orbit-app-2 { margin: 72px 0 0 -19px !important; }
  .bottom-logo-wrap .orbit-app-3 { margin: -19px 0 0 -110px !important; }
  .bottom-logo-wrap .orbit-app-4 { margin: -110px 0 0 -19px !important; }
  .bottom-logo-section h3 { font-size: 18px; }
}

/* === Compact app card tweaks === */
.app-card-premium { padding: 10px 12px !important; grid-template-columns: auto 58px 1fr auto !important; gap: 10px !important; min-height: 0 !important; border-radius: 14px !important; }
.app-card-premium::after { width: 4px; border-radius: 14px 0 0 14px; }
.app-card-premium .num { width: 26px; height: 26px; line-height: 26px; font-size: 13px; }
.app-card-premium .app-img-link img { width: 58px !important; height: 58px !important; border-radius: 13px !important; }
.app-card-premium h5, .app-card-premium h5 a { font-size: 14px !important; }
.app-card-premium .bonus-line, .app-card-premium .min-line { font-size: 12px; line-height: 1.35; }
.app-card-premium .chip { font-size: 9px; padding: 2px 8px; margin-bottom: 4px; }
.app-actions-right { min-width: 0 !important; align-items: stretch !important; justify-content: flex-start !important; align-self: start !important; gap: 6px !important; padding-top: 2px; }
.btn-download-right, .app-card-premium .btn-download { padding: 7px 12px !important; font-size: 12px !important; border-radius: 10px !important; }
.mini-actions-below { gap: 6px; justify-content: flex-end; }
.mini-actions-below .heart, .mini-actions-below .share-btn { width: 36px; height: 36px; border-radius: 10px; font-size: 16px; }

@media (max-width: 640px) {
  .app-card-premium { grid-template-columns: 22px 50px 1fr auto !important; gap: 8px !important; padding: 8px 10px !important; }
  .app-card-premium .num { width: 22px; height: 22px; line-height: 22px; font-size: 11px; }
  .app-card-premium .app-img-link img { width: 50px !important; height: 50px !important; border-radius: 11px !important; }
  .app-card-premium h5, .app-card-premium h5 a { font-size: 13px !important; }
  .app-card-premium .bonus-line, .app-card-premium .min-line { font-size: 11px; }
  .btn-download-right, .app-card-premium .btn-download { padding: 6px 10px !important; font-size: 11px !important; }
  .mini-actions-below .heart, .mini-actions-below .share-btn { width: 32px; height: 32px; font-size: 14px; }
}

/* ===== Stats Hero with Orbiting Apps ===== */
.stats-hero {
  padding: 28px 0 20px;
  background: linear-gradient(180deg, rgba(59,130,246,0.08), transparent);
}
.stats-orbit-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
}
.stats-orbit-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 40px rgba(15,122,61,0.35), 0 0 0 4px rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  z-index: 2;
  animation: pulseGlow 3s ease-in-out infinite;
}
.stats-orbit-logo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 10px 40px rgba(15,122,61,0.35), 0 0 0 4px rgba(59,130,246,0.15); }
  50% { box-shadow: 0 10px 55px rgba(15,122,61,0.55), 0 0 0 8px rgba(59,130,246,0.25); }
}
.stats-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(59,130,246,0.35);
  animation: orbitSpin 18s linear infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.stats-orbit-app {
  position: absolute;
  width: 46px; height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15,122,61,0.3);
  overflow: hidden;
}
.stats-orbit-app img { width: 100%; height: 100%; object-fit: cover; }
.stats-orbit-app-1 { top: 0; left: 50%; }
.stats-orbit-app-2 { top: 50%; left: 100%; }
.stats-orbit-app-3 { top: 100%; left: 50%; }
.stats-orbit-app-4 { top: 50%; left: 0; }

@media (max-width: 640px) {
  .stats-orbit-wrap { width: 180px; height: 180px; }
  .stats-orbit-logo { width: 88px; height: 88px; }
  .stats-orbit-app { width: 38px; height: 38px; margin: -19px 0 0 -19px; }

}

/* ===== User tweaks: smaller cards, floating (no spin) orbit, bigger logo ===== */
.stats-orbit-ring { animation: none !important; }
.stats-orbit-app { animation: floaty 3.4s ease-in-out infinite; }
.stats-orbit-app-2 { animation-delay: 0.4s; }
.stats-orbit-app-3 { animation-delay: 0.8s; }
.stats-orbit-app-4 { animation-delay: 1.2s; }
@keyframes floaty {
  0%,100% { margin-top: -23px; }
  50% { margin-top: -30px; }
}
@media (max-width: 640px) {
  @keyframes floaty {
    0%,100% { margin-top: -19px; }
    50% { margin-top: -26px; }
  }
}

/* Bigger center logo */
.stats-orbit-logo { width: 150px !important; height: 150px !important; }
@media (max-width: 640px) {
  .stats-orbit-logo { width: 110px !important; height: 110px !important; }
}

/* Tagline below floating logo */
.orbit-tagline {
  text-align: center;
  margin: 18px auto 6px;
  max-width: 640px;
}
.orbit-tagline-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.8px;
  color: #08411f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  line-height: 1.25;
}
.orbit-tagline-sub {
  font-size: 14px;
  font-weight: 700;
  color: #0a5c2c;
  margin-top: 6px;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .orbit-tagline-main { font-size: 18px; }
  .orbit-tagline-sub { font-size: 12px; }
}

/* Bottom logo bigger, no spin — apps just float */
.bottom-logo-wrap { width: 280px !important; height: 280px !important; }
.bottom-logo-wrap .brand-logo { width: 170px !important; height: 170px !important; }
.brand-logo-float { animation: none !important; }
.bottom-logo-wrap .orbit-ring { animation: none !important; }
.bottom-logo-wrap .orbit-app { animation: floaty 3.4s ease-in-out infinite !important; }
@media (max-width: 640px) {
  .bottom-logo-wrap { width: 220px !important; height: 220px !important; }
  .bottom-logo-wrap .brand-logo { width: 130px !important; height: 130px !important; }
}

/* Smaller premium app cards + button ordering (download top, like/share below) */
.app-card-premium {
  padding: 10px 12px !important;
  gap: 10px !important;
  grid-template-columns: 28px 54px 1fr auto !important;
}
.app-card-premium .app-img-link img { width: 54px !important; height: 54px !important; }
.app-card-premium h5, .app-card-premium h5 a { font-size: 14px !important; }
.app-card-premium .bonus-line { font-size: 12px !important; }
.app-card-premium .min-line { font-size: 11px !important; }
.app-actions-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 5px !important;
  min-width: 0 !important;
}
.app-actions-right .btn-download,
.app-actions-right .btn-download-right {
  width: auto !important;
  min-width: 0 !important;
  padding: 7px 12px !important;
  font-size: 12px !important;
  order: 0;
}
.mini-actions-below { order: 1; gap: 5px !important; }
.mini-actions-below .heart, .mini-actions-below .share-btn {
  width: 34px !important; height: 34px !important; font-size: 15px !important;
}
@media (max-width: 640px) {
  .app-card-premium {
    grid-template-columns: 48px 1fr auto !important;
    grid-template-rows: auto !important;
    padding: 8px 10px !important;
    gap: 8px !important;
    align-items: center !important;
  }
  .app-card-premium .num { display: none !important; }
  .app-card-premium .app-img-link { grid-row: span 1; }
  .app-card-premium .app-img-link img { width: 48px !important; height: 48px !important; }
  .app-card-premium h5, .app-card-premium h5 a { font-size: 13px !important; }
  .app-card-premium .bonus-line, .app-card-premium .min-line { font-size: 11px !important; }
  .app-actions-right {
    grid-column: auto !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-end !important;
    gap: 4px !important;
    min-width: 0 !important;
  }
  .app-actions-right .btn-download,
  .app-actions-right .btn-download-right {
    width: auto !important;
    min-width: 0 !important;
    padding: 5px 9px !important;
    font-size: 11px !important;
    order: 0;
    white-space: nowrap !important;
  }
  .mini-actions-below { order: 1; gap: 4px !important; }
  .mini-actions-below .heart, .mini-actions-below .share-btn {
    width: 30px !important; height: 30px !important; font-size: 13px !important;
  }
}

/* === Photo-size final override === */
.app-card-premium {
  padding: 8px 10px !important;
  gap: 8px !important;
  grid-template-columns: auto 48px 1fr auto !important;
  grid-template-rows: auto !important;
  border-radius: 14px !important;
  min-height: 0 !important;
}
.app-card-premium::after { width: 3px !important; border-radius: 14px 0 0 14px !important; }
.app-card-premium .num { width: 20px !important; height: 20px !important; line-height: 20px !important; font-size: 10px !important; }
.app-card-premium .app-img-link img {
  width: 48px !important; height: 48px !important;
  border-radius: 11px !important;
  box-shadow: 0 3px 8px rgba(15,89,183,0.12) !important;
}
.app-card-premium h5, .app-card-premium h5 a { font-size: 13px !important; margin: 0 0 2px !important; }
.app-card-premium .bonus-line { font-size: 11px !important; margin: 0 0 1px !important; }
.app-card-premium .min-line { font-size: 10px !important; }
.app-card-premium .chip { font-size: 8px !important; padding: 1px 6px !important; margin-bottom: 2px !important; }
.app-actions-right {
  grid-column: auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 4px !important;
  min-width: 0 !important;
}
.btn-download-right, .app-card-premium .btn-download {
  padding: 5px 11px !important;
  font-size: 11px !important;
  border-radius: 999px !important;
  min-height: 0 !important;
  width: auto !important;
  min-width: 0 !important;
}
.mini-actions-below { gap: 4px !important; }
.mini-actions-below .heart, .mini-actions-below .share-btn {
  width: 32px !important; height: 32px !important;
  border-radius: 50% !important;
  font-size: 14px !important;
}

/* Top 3 compact vertical boxes */
.top3-grid { gap: 10px !important; }
.top3-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 6px !important;
  gap: 4px !important;
  text-align: center !important;
  border-radius: 14px !important;
  min-width: 0 !important;
}
.top3-card .rank {
  position: absolute !important; top: 6px !important; left: 6px !important;
  width: 20px !important; height: 20px !important; font-size: 11px !important;
}
.top3-card .top3-img-link img {
  width: 44px !important; height: 44px !important;
  border-radius: 11px !important;
  margin: 0 auto !important;
}
.top3-card .top3-info { min-width: 0; width: 100%; }
.top3-card .chip { margin: 0 auto 2px !important; font-size: 8px !important; padding: 1px 5px !important; }
.top3-card h4, .top3-card h4 a { font-size: 12px !important; margin: 0 0 1px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top3-card .bonus { font-size: 13px !important; margin: 0 !important; }
.top3-card .min { display: none !important; }
.top3-card .btn-download {
  grid-column: auto !important;
  width: 100% !important;
  padding: 6px 8px !important;
  font-size: 11px !important;
  border-radius: 999px !important;
  margin-top: 2px !important;
}

@media (max-width: 720px) {
  .app-card-premium { grid-template-columns: 44px 1fr auto !important; grid-template-rows: auto !important; padding: 7px 9px !important; gap: 7px !important; }
  .app-card-premium .num { display: none !important; }
  .app-card-premium .app-img-link { grid-row: auto !important; }
  .app-card-premium .app-img-link img { width: 44px !important; height: 44px !important; border-radius: 10px !important; }
  .app-card-premium h5, .app-card-premium h5 a { font-size: 12px !important; }
  .app-card-premium .bonus-line { font-size: 10px !important; }
  .app-card-premium .min-line { font-size: 9px !important; }
  .app-actions-right { grid-column: auto !important; }
  .btn-download-right, .app-card-premium .btn-download { padding: 4px 9px !important; font-size: 10px !important; }
  .mini-actions-below .heart, .mini-actions-below .share-btn { width: 28px !important; height: 28px !important; font-size: 12px !important; }

  .top3-card { padding: 8px 5px !important; border-radius: 12px !important; }
  .top3-card .top3-img-link img { width: 40px !important; height: 40px !important; border-radius: 10px !important; }
  .top3-card h4, .top3-card h4 a { font-size: 11px !important; }
  .top3-card .bonus { font-size: 12px !important; }
  .top3-card .btn-download { padding: 5px 6px !important; font-size: 10px !important; }
}

/* Fixed-header spacing */
#top-apps { padding-top: 86px !important; }
#apps, #about { scroll-margin-top: 86px; }

/* Floating social buttons (right side) */
.floating-social { position: fixed; right: 14px; bottom: 90px; display: flex; flex-direction: column; gap: 12px; z-index: 60; }
.fs-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.18); animation: fs-float 2.6s ease-in-out infinite; transition: transform .2s; }
.fs-btn:hover { transform: scale(1.08); }
.fs-wa { background: #25D366; }
.fs-tg { background: #229ED9; animation-delay: -1.3s; }
@keyframes fs-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 640px) { .floating-social { right: 10px; bottom: 76px; } .fs-btn { width: 46px; height: 46px; } .fs-btn svg { width: 24px; height: 24px; } }
.header-home-btn { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#0f7a3d,#0a5c2c); color: #fff !important; padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 14px; box-shadow: 0 6px 14px -4px rgba(15,122,61,.5); flex-shrink: 0; transition: transform .15s; }
.header-home-btn:hover { transform: translateY(-1px); }
.header-home-btn svg { display: block; }
@media (max-width: 640px) { .header-home-btn { padding: 7px 11px; font-size: 13px; } .header-home-btn span { display: none; } }


/* Global bolder text */
body, p, span, li, td, th, a, div, label, input, button { font-weight: 600; }
h1, h2, h3, h4, h5, h6 { font-weight: 800 !important; }
.btn, .btn-gold, .download-btn, .btn-download, .btn-download-right { font-weight: 800 !important; }

/* Admin position control */
.serial-input { width: 60px; padding: 6px 8px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 14px; font-weight: 700; text-align: center; color: #0a5c2c; background: #fff; }
.serial-input:focus { outline: none; border-color: #0f7a3d; box-shadow: 0 0 0 2px rgba(15,122,61,.2); }

/* === Bigger download button + compact single-line stats on mobile === */
.btn-download-right, .app-card-premium .btn-download {
  padding: 12px 20px !important;
  font-size: 15px !important;
  border-radius: 999px !important;
  min-width: 118px;
  text-align: center;
}
.top3-card .btn-download { padding: 10px 12px !important; font-size: 13px !important; }

/* Stats strip: force 3-in-a-row on mobile with tiny cards */
.stats-strip-inner { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
@media (max-width: 640px) {
  .stats-strip { padding: 10px 0 6px; }
  .stats-strip-inner { gap: 6px !important; }
  .stat-card {
    flex-direction: column !important;
    padding: 8px 6px !important;
    gap: 4px !important;
    border-radius: 12px !important;
    text-align: center;
    min-width: 0;
  }
  .stat-card > * { min-width: 0; }
  .stat-icon { width: 22px !important; height: 22px !important; }
  .stat-emoji { font-size: 18px !important; }
  .stat-num { font-size: 14px !important; font-weight: 800; }
  .stat-label { font-size: 9px !important; line-height: 1.1; letter-spacing: 0; }

  /* Download btn on mobile — still noticeably bigger than before */
  .btn-download-right, .app-card-premium .btn-download {
    padding: 11px 16px !important;
    font-size: 14px !important;
    min-width: 100px;
  }
  .app-actions-right { min-width: 105px !important; }

  /* Ensure card row still fits: download stays on the right, not full-width */
  .app-card-premium { grid-template-columns: 52px 1fr auto !important; grid-template-rows: auto !important; }
  .app-card-premium .app-img-link { grid-row: 1 !important; }
  .app-actions-right {
    grid-column: 3 !important;
    grid-row: 1 !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
  }
}

/* ===== Fake city download notifications ===== */
.fake-toast {
  position: fixed;
  left: 14px;
  bottom: 18px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #dbeafe;
  border-left: 4px solid #10b981;
  border-radius: 14px;
  padding: 10px 14px 10px 12px;
  box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.28), 0 6px 14px -6px rgba(15, 122, 61, 0.18);
  max-width: min(340px, calc(100vw - 28px));
  animation: fakeToastIn .45s cubic-bezier(.2,.9,.3,1.2);
}
.fake-toast-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
  flex-shrink: 0;
  animation: fakePulse 1.4s ease-in-out infinite;
}
.fake-toast-body { min-width: 0; }
.fake-toast-title { font-size: 13.5px; font-weight: 700; color: #0f172a; line-height: 1.25; }
.fake-toast-title strong { color: #1d4ed8; }
.fake-toast-sub { font-size: 11.5px; color: #475569; margin-top: 2px; font-weight: 600; }
.fake-toast-sub strong { color: #059669; }
@keyframes fakeToastIn {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fakePulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
@media (max-width: 640px) {
  .fake-toast { left: 10px; bottom: 84px; padding: 9px 12px; }
  .fake-toast-title { font-size: 12.5px; }
  .fake-toast-sub { font-size: 11px; }
}

/* === User tweak: even bolder text + wider download button + bigger like/share === */
body, p, span, li, td, th, a, div, label, input, button, select, textarea {
  font-weight: 700 !important;
}
h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .brand-text h1 {
  font-weight: 900 !important;
}
.brand-text p, .section-sub, .footer-desc, .footer-col a, .footer-bottom, .text-muted, .stat-label, .min-line, .fake-toast-sub {
  font-weight: 700 !important;
}

/* Wider / larger download button on app cards */
.app-actions-right .btn-download,
.app-actions-right .btn-download-right,
.app-card-premium .btn-download {
  padding: 14px 26px !important;
  font-size: 16px !important;
  min-width: 150px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}

/* Bigger like & share buttons below download */
.mini-actions-below .heart,
.mini-actions-below .share-btn,
.app-card .heart,
.app-card .share-btn {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

/* Top 3 download button also slightly larger */
.top3-card .btn-download {
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

@media (max-width: 720px) {
  .app-actions-right .btn-download,
  .app-actions-right .btn-download-right,
  .app-card-premium .btn-download {
    padding: 12px 22px !important;
    font-size: 15px !important;
    min-width: 130px !important;
  }
  .mini-actions-below .heart,
  .mini-actions-below .share-btn,
  .app-card .heart,
  .app-card .share-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    font-size: 22px !important;
  }
}

@media (max-width: 640px) {
  .app-actions-right .btn-download,
  .app-actions-right .btn-download-right,
  .app-card-premium .btn-download {
    padding: 11px 18px !important;
    font-size: 13px !important;
    min-width: 110px !important;
  }
  .mini-actions-below .heart,
  .mini-actions-below .share-btn,
  .app-card .heart,
  .app-card .share-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
  }
  .top3-card .btn-download {
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
  body, p, span, li, td, th, a, div, label, input, button, select, textarea {
    font-weight: 700 !important;
  }
}

/* ===== ALL RUMMY INDIA — Premium mobile-first refinement (final layer) ===== */
:root {
  --arg-green: #0f7a3d;
  --arg-green-dark: #08411f;
  --arg-gold: #f5c542;
  --arg-gold-deep: #c9971a;
  --arg-surface: #ffffff;
  --arg-ink: #0c2a17;
  --arg-line: rgba(15, 122, 61, 0.14);
  --arg-shadow: 0 10px 26px -12px rgba(8, 65, 31, 0.30);
  --arg-shadow-lg: 0 18px 44px -18px rgba(8, 65, 31, 0.38);
}

body { color: var(--arg-ink); background: #f4faf6; -webkit-font-smoothing: antialiased; }

/* Premium header */
.header.header-premium {
  background: linear-gradient(135deg, #08411f 0%, #0f7a3d 55%, #0a5c2c 100%) !important;
  border-bottom: 2px solid rgba(245, 197, 66, .55) !important;
  box-shadow: 0 6px 22px -10px rgba(8, 65, 31, .55);
}
.header.header-premium .brand-text h1 { color: #fff !important; letter-spacing: .4px; }
.header.header-premium .brand-text h1 span { color: var(--arg-gold) !important; }
.header.header-premium .brand-text p { color: rgba(255,255,255,.82) !important; }
.brand-logo, .brand-logo-plain img {
  border-radius: 50% !important;
  border: 2px solid rgba(245,197,66,.9);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.45);
  background: #000;
}
.header-home-btn {
  background: linear-gradient(135deg, var(--arg-gold), var(--arg-gold-deep)) !important;
  color: #0c2a17 !important;
  box-shadow: 0 6px 16px -6px rgba(201,151,26,.7) !important;
}

/* Premium cards */
.app-card, .top-card, .seo-card, .featured-upcoming-card, .stat-card, .upcoming-card {
  background: var(--arg-surface);
  border: 1px solid var(--arg-line) !important;
  border-radius: 16px !important;
  box-shadow: var(--arg-shadow) !important;
}
.app-card:hover, .top-card:hover { box-shadow: var(--arg-shadow-lg) !important; transform: translateY(-2px); }
.app-card, .top-card { transition: transform .18s ease, box-shadow .18s ease; }

/* Buttons */
.btn-download, .download-btn, .btn-primary {
  background: linear-gradient(135deg, #0f7a3d 0%, #14a052 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(245,197,66,.35) !important;
  box-shadow: 0 8px 18px -8px rgba(15,122,61,.75) !important;
}
.btn-download:active, .download-btn:active { transform: scale(.97); }

/* Stats strip */
.stats-hero { background: linear-gradient(180deg, #eefaf1 0%, #ffffff 100%); }
.stat-num { color: var(--arg-green-dark) !important; }
.orbit-tagline-main { color: var(--arg-green-dark) !important; }
.orbit-tagline-sub { color: var(--arg-green) !important; }

/* Mobile-first tuning */
@media (max-width: 640px) {
  .container { padding: 0 12px; }
  .header.header-premium .header-inner { padding-top: 8px; padding-bottom: 8px; gap: 8px; }
  .header.header-premium .brand-text h1 { font-size: 17px !important; line-height: 1.15; }
  .header.header-premium .brand-text p { font-size: 10px !important; }
  .brand-logo, .brand-logo-plain img { width: 48px !important; height: 48px !important; }
  .header-home-btn { padding: 7px 11px !important; font-size: 12px !important; }
  .header-home-btn span { display: inline; }

  .stats-strip-inner { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 8px !important; }
  .stat-card { padding: 8px 6px !important; flex-direction: column !important; text-align: center; gap: 2px !important; }
  .stat-num { font-size: 15px !important; }
  .stat-label { font-size: 10px !important; }

  .section { padding: 18px 0 !important; }
  .section-head h2 { font-size: 18px !important; }
  .app-card { padding: 8px !important; border-radius: 14px !important; }
  .seo-card { padding: 14px !important; }
  .seo-card h2, .seo-card h3 { font-size: 17px !important; }
  .fu-body { gap: 10px !important; }
  .orbit-tagline-main { font-size: 15px !important; }
  .orbit-tagline-sub { font-size: 13px !important; }
  h1, h2 { overflow-wrap: anywhere; }
  img { height: auto; }
}

/* Never overflow on small screens */
html, body { max-width: 100%; }
.container, .section, .app-card, .top-card { min-width: 0; }
.header.header-premium .brand-text h1 span {
  background: none !important;
  -webkit-text-fill-color: #ffd766 !important;
  color: #ffd766 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* ============ PREMIUM SHINE / GLOSS ============ */
@keyframes arg-sweep {
  0%   { transform: translateX(-140%) skewX(-20deg); }
  60%  { transform: translateX(240%) skewX(-20deg); }
  100% { transform: translateX(240%) skewX(-20deg); }
}
@keyframes arg-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(245,197,66,.55), 0 0 14px rgba(245,197,66,.35); }
  50%      { box-shadow: 0 0 0 2px rgba(245,197,66,.95), 0 0 26px rgba(245,197,66,.7); }
}
@keyframes arg-gold-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Buttons: glossy sweep */
.btn-download, .download-btn, .btn-primary, .header-home-btn, .cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-download::after, .download-btn::after, .btn-primary::after,
.header-home-btn::after, .cta-btn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  width: 45%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  animation: arg-sweep 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-download > *, .download-btn > *, .btn-primary > * { position: relative; z-index: 2; }

/* Cards: subtle light sweep on hover */
.app-card, .top-card, .featured-upcoming-card, .upcoming-card { position: relative; overflow: hidden; }
.app-card::before, .top-card::before, .featured-upcoming-card::before, .upcoming-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 46%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events: none;
  z-index: 3;
}
.app-card:hover::before, .top-card:hover::before,
.featured-upcoming-card:hover::before, .upcoming-card:hover::before { transform: translateX(120%); }

/* Logos: gold glow */
.brand-logo, .brand-logo-plain img, .footer-brand img, .orbit-center img, .hero-orbit-logo img {
  animation: arg-glow-pulse 3.2s ease-in-out infinite;
}

/* Gold brand text: moving sheen */
.header.header-premium .brand-text h1 span,
.gold-text {
  background: linear-gradient(100deg, #f5c542 0%, #fff3c4 20%, #f5c542 40%, #f5c542 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: arg-gold-shift 3.5s linear infinite;
  text-shadow: none !important;
}

/* Section titles get a soft gleam underline */
.section-head h2 { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .btn-download::after, .download-btn::after, .btn-primary::after,
  .header-home-btn::after, .cta-btn::after,
  .brand-logo, .brand-logo-plain img, .footer-brand img,
  .header.header-premium .brand-text h1 span, .gold-text { animation: none !important; }
}
