/* ── Google Fonts loaded via header link ── */

:root {
  --gold: #F5C016;
  --gold-dark: #e0ae0a;
  --green: #2d9e3a;
  --green-dark: #1a6b2a;
  --red: #FF1744;
  --bg: #0A0E1A;
  --bg2: #030509;
  --bg3: #060A14;
  --bg-footer: #000109;
  --card-bg: rgba(10,14,26,0.6);
  --card-hover: rgba(245,192,22,0.1);
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(245,192,22,0.4);
  --text: #ffffff;
  --text2: rgba(255,255,255,0.6);
  --muted: rgba(255,255,255,0.35);
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-footer); color: var(--text); min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── GLASS PANEL ── */
.glass-panel {
  background: rgba(10,14,26,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.header.scrolled {
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(245,192,22,0.25);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img { height: 52px; object-fit: contain; }
.logo-text { font-family: var(--font-title); font-size: 1.1rem; font-weight: 800; color: var(--gold); letter-spacing: 0.05em; }
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; background: #000; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.75rem 2rem 1.25rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.6rem 0; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  padding: 5rem 1rem 4rem;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: grayscale(0.6);
  transform: scale(1.25);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(3,5,9,0.55), rgba(10,14,26,0.75) 60%, var(--bg));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-title); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.35em;
  color: var(--gold); margin-bottom: 1.25rem;
  opacity: 0.85;
}
.hero-eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(245,192,22,0.5);
}
.hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #1a1000;
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.85rem 2rem; border-radius: 99px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 25px rgba(245,192,22,0.35);
}
.hero-btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 0 40px rgba(245,192,22,0.55); }
.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.07); color: white;
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.85rem 2rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.25s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-family: var(--font-title); font-size: 1.4rem; font-weight: 800; color: white; line-height: 1.1; }
.hero-stat-num.gold { color: var(--gold); }
.hero-stat-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); font-weight: 700; }
.hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* ── SECTIONS ── */
.section { padding: 2rem 1rem; }
.section-dark { background: var(--bg2); }
.section-dark2 { background: var(--bg3); }
.section-black { background: #000000; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; width: 100%; }
.section-head { margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.025em;
}
.section-head h2 .gold { color: var(--gold); }
.section-head.centered { text-align: center; }
.section-head.centered h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.18em;
  color: white;
  text-transform: uppercase;
}
.section-divider {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-top: 1rem;
}
.section-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 42rem; margin: 1rem auto 0; line-height: 1.6; font-family: var(--font-body); }

/* Section helpers */
.section-kicker {
  display: inline-block;
  font-family: var(--font-title); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.35em; color: var(--gold);
  background: rgba(245,192,22,0.08); border: 1px solid rgba(245,192,22,0.25);
  border-radius: 99px; padding: 0.3rem 1rem; margin-bottom: 0.75rem;
}
.section-icon-badge {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #1a1000; flex-shrink: 0;
}
.section-see-all {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-title); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); transition: color 0.2s;
}
.section-see-all:hover { color: var(--gold); }

/* ── APP CARDS ── */
.apps-row { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.75rem; scroll-snap-type: x mandatory; }
.apps-row::-webkit-scrollbar { height: 3px; }
.apps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

/* card wrapper */
.app-card-link { display: block; flex-shrink: 0; width: 200px; scroll-snap-align: start; }
.apps-grid .app-card-link { width: auto; }

.app-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(10,15,26,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}
.app-card:hover { border-color: rgba(245,192,22,0.35); box-shadow: 0 0 35px rgba(245,192,22,0.28); }

.card-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 0.7s ease; }
.app-card:hover .card-img { transform: scale(1.25); }
.card-placeholder { width: 100%; aspect-ratio: 1; background: #0d1221; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,26,1) 0%, rgba(10,15,26,0.4) 50%, transparent); opacity: 0.85; }
.card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 5;
  display: flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,192,22,0.3);
  border-radius: 99px;
  padding: 3px 9px;
  font-size: 9px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.app-card:hover .card-badge { border-color: rgba(245,192,22,0.7); box-shadow: 0 0 10px rgba(245,192,22,0.4); }

.card-body { padding: 0.85rem 1rem 1rem; position: relative; z-index: 5; margin-top: -2rem; }
.card-title {
  font-family: var(--font-title);
  font-size: 0.7rem; font-weight: 700;
  color: white; line-height: 1.35;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
  overflow: hidden;
  white-space: nowrap; text-overflow: ellipsis;
}
.app-card:hover .card-title { color: var(--gold); }
.card-version { font-size: 0.68rem; color: rgba(255,255,255,0.3); letter-spacing: 0.15em; margin-bottom: 0.65rem; }
.card-foot { display: flex; align-items: center; justify-content: space-between; }
.card-stars { display: flex; gap: 1px; align-items: center; }
.card-star { display: flex; align-items: center; }
.card-star.filled { color: var(--gold); filter: drop-shadow(0 0 3px rgba(245,192,22,0.5)); }
.card-star.empty { color: rgba(255,255,255,0.15); }
.card-dl {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: all 0.3s;
}
.app-card:hover .card-dl { background: var(--gold); border-color: var(--gold); color: #1a1000; }
.card-glow-line {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(to right, var(--gold), var(--green));
  transition: width 0.5s ease;
}
.app-card:hover .card-glow-line { width: 100%; }

/* ── CATEGORY FILTER TABS ── */
.cat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 3rem; }
.cat-tab {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.25rem; border-radius: 99px;
  font-family: var(--font-title); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.25s;
}
.cat-tab:hover { background: rgba(255,255,255,0.09); color: white; border-color: rgba(255,255,255,0.2); }
.cat-tab.active { background: var(--gold); color: #1a1000; border-color: var(--gold); box-shadow: 0 0 15px rgba(245,192,22,0.3); }
.cat-tab-emoji { font-size: 0.9em; line-height: 1; }

/* ── CATEGORY UNIVERSE GRID ── */
.cat-universe-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.cat-universe-card {
  position: relative;
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.75rem;
  min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.75rem 1rem 1.5rem; cursor: pointer;
  transition: all 0.35s; overflow: hidden;
  text-align: center;
}
.cat-universe-card:hover { border-color: rgba(245,192,22,0.3); transform: translateY(-8px); background: rgba(15,20,36,0.85); }
.cat-icon-box {
  width: 76px; height: 76px; border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(245,192,22,0.9), rgba(45,158,58,0.9));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.45s, box-shadow 0.35s;
  box-shadow: 0 4px 20px rgba(245,192,22,0.25);
}
.cat-universe-card:hover .cat-icon-box { transform: rotate(5deg) scale(1.08); box-shadow: 0 8px 30px rgba(245,192,22,0.4); }
.cat-icon-inner {
  font-size: 2.25rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.cat-card-name { font-family: var(--font-title); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: white; text-align: center; margin-bottom: 0.35rem; }
.cat-card-desc { font-size: 0.7rem; color: rgba(255,255,255,0.42); line-height: 1.5; font-family: var(--font-body); text-align: center; }
.cat-glow-pulse { position: absolute; inset: -4px; border-radius: 1.75rem; opacity: 0; background: linear-gradient(135deg, var(--gold), var(--green)); filter: blur(28px); z-index: -1; transition: opacity 0.6s; }
.cat-universe-card:hover .cat-glow-pulse { opacity: 0.18; }

/* ── TRUST SECTION ── */
.trust-panel {
  background: rgba(10,14,26,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4rem; padding: 3rem;
  display: flex; flex-direction: column; gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.trust-left .trust-badge {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px; padding: 0.25rem 1rem;
  font-family: var(--font-title); font-size: 0.65rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.4em;
  margin-bottom: 1.5rem;
}
.trust-left h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em; line-height: 1.15;
  color: white; margin-bottom: 2rem;
  text-transform: uppercase;
}
.trust-left h2 span { color: var(--gold); }
.trust-left p { color: rgba(255,255,255,0.45); font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.75; max-width: 36rem; margin-bottom: 2.5rem; font-family: var(--font-body); }
.trust-stats { display: flex; align-items: center; gap: 2rem; }
.trust-stat-num { font-family: var(--font-title); font-size: 1.875rem; font-weight: 800; color: white; display: block; }
.trust-stat-num.gold { color: var(--gold); }
.trust-stat-lbl { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: rgba(255,255,255,0.35); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.trust-left { width: 100%; }
.trust-features { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; width: 100%; }
.trust-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2.5rem; padding: 2rem;
  transition: background 0.3s, transform 0.3s;
}
.trust-feature:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
.trust-feature-icon { display: flex; margin-bottom: 1.5rem; }
.trust-feature h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.15em; color: white; margin-bottom: 0.5rem; }
.trust-feature p { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); line-height: 2; }

/* ── DOWNLOAD CTA ── */
.dl-section { padding: 2rem 1rem; text-align: center; }
.dl-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(245,192,22,0.08); border: 1px solid rgba(245,192,22,0.25);
  border-radius: 99px; padding: 0.6rem 1.75rem;
  font-family: var(--font-title); font-size: 0.7rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.25em;
  margin-bottom: 2rem;
}
.dl-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  letter-spacing: 0.1em; line-height: 1.05;
  color: white; margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.dl-title span { color: var(--gold); }
.dl-sub { font-family: var(--font-body); color: rgba(255,255,255,0.4); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; max-width: 38rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.dl-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; margin-bottom: 4rem; }
.dl-main-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000; font-family: var(--font-display); font-size: 1.4rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 3rem; border-radius: 99px;
  box-shadow: 0 0 40px rgba(245,192,22,0.4);
  transition: all 0.3s;
}
.dl-main-btn:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(245,192,22,0.6); color: #1a1000; }
.dl-meta { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.dl-meta span { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-title); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.dl-meta span:first-child { color: var(--green); }
.dl-tagline { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: 0.35; }
.dl-tagline span { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.3em; color: white; transition: color 0.2s, opacity 0.2s; cursor: default; }
.dl-tagline span:hover { color: var(--gold); opacity: 1; }

/* ── FOOTER ── */
.footer { background: var(--bg-footer); border-top: 1px solid rgba(255,255,255,0.08); padding: 3.5rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo img { height: 80px; object-fit: contain; margin-bottom: 0.75rem; }
.footer-logo .logo-text-only { font-family: var(--font-title); font-size: 1rem; font-weight: 800; color: var(--gold); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.65; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.1em; color: white; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.42); transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-trust-box { background: rgba(255,255,255,0.03); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ── SEE ALL BUTTON ── */
.see-all-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 2rem; border-radius: 99px; border: 1px solid rgba(245,192,22,0.4);
  font-family: var(--font-title); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); background: transparent; cursor: pointer;
  transition: all 0.3s;
}
.see-all-btn:hover { background: var(--gold); color: #1a1000; }

/* ── APP DETAIL PAGE ── */
.app-detail-wrap { max-width: 1280px; margin: 0 auto; padding: 2rem; }
.app-hero-card {
  background: rgba(10,14,26,0.6); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.75rem; padding: 2rem;
  display: flex; gap: 1.75rem; align-items: flex-start;
  position: relative; overflow: hidden; margin-bottom: 1.5rem;
}
.app-hero-glow { position: absolute; top: 0; right: 0; width: 280px; height: 280px; background: radial-gradient(circle, rgba(245,192,22,0.2), transparent 70%); pointer-events: none; }
.app-icon-box {
  flex-shrink: 0;
  width: 140px; height: 140px; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 25px rgba(245,192,22,0.25);
  background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.app-icon-box img { width: 100%; height: 100%; object-fit: cover; }
.app-hero-info { flex: 1; }
.app-hero-title { font-family: var(--font-title); font-size: clamp(1.1rem, 3vw, 1.8rem); font-weight: 700; color: white; line-height: 1.3; margin-bottom: 0.4rem; }
.app-version-line { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.app-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.app-stars { display: flex; gap: 2px; }
.app-star { font-size: 0.9rem; }
.app-star.filled { color: var(--gold); }
.app-star.empty { color: rgba(255,255,255,0.18); }
.app-rating-num { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: white; margin-left: 0.35rem; }
.app-votes { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.app-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.app-tag { background: rgba(245,192,22,0.12); border: 1px solid rgba(245,192,22,0.5); color: white; font-size: 0.68rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.07em; }
.app-dl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #1a1000;
  font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7rem 2rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s; cursor: pointer;
}
.app-dl-btn:hover { background: var(--gold-dark); color: #1a1000; }
.app-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1.25rem; padding-top: 1.25rem; }
.app-stat-item span { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.2rem; }
.app-stat-item strong { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.app-stat-item strong.gold { color: var(--gold); }

.detail-card { background: rgba(10,14,26,0.6); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); border-radius: 1.5rem; padding: 1.75rem; margin-bottom: 1.5rem; }
.detail-card-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.12em; color: white; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.screenshots-row { display: flex; gap: 0.85rem; overflow-x: auto; padding-bottom: 0.5rem; }
.screenshots-row::-webkit-scrollbar { height: 3px; }
.screenshot-img { width: 155px; height: 276px; object-fit: cover; border-radius: 10px; flex-shrink: 0; cursor: pointer; transition: transform 0.2s; }
.screenshot-img:hover { transform: scale(1.03); }
.app-desc-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; white-space: pre-wrap; }
.app-desc-text.collapsed { max-height: 130px; overflow: hidden; position: relative; }
.app-desc-text.collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, rgba(10,14,26,0.95)); }
.read-more-btn { background: none; border: none; cursor: pointer; color: var(--gold); font-size: 0.82rem; font-weight: 600; padding: 0.5rem 0; margin-top: 0.5rem; }
.app-whats-new { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-pill { background: var(--gold); color: #1a1000; font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.06em; border: 1px solid var(--gold-dark); cursor: pointer; transition: all 0.2s; }
.tag-pill:hover { background: white; color: black; border-color: white; }
.comment-form { display: flex; flex-direction: column; gap: 1rem; }
.comment-input {
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 0.75rem 0.9rem; color: white; font-family: var(--font-body); font-size: 0.88rem; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.comment-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 12px rgba(245,192,22,0.18); }
.comment-input::placeholder { color: rgba(255,255,255,0.28); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 0.35rem; display: block; }
.comment-btn { background: var(--gold); color: #1a1000; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.75rem; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s; align-self: flex-start; margin-top: 0.25rem; }
.comment-btn:hover { background: var(--gold-dark); }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.5rem; }
.checkbox-row input { accent-color: var(--gold); margin-top: 2px; }
.checkbox-row label { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.4; }

/* ── APPS LISTING PAGE ── */
.search-bar { display: flex; gap: 0.75rem; margin-bottom: 1.75rem; }
.search-input { flex: 1; background: rgba(10,14,26,0.7); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.65rem 1rem; color: white; font-family: var(--font-body); font-size: 0.88rem; }
.search-input:focus { outline: none; border-color: var(--gold); }
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-btn { background: var(--gold); color: #1a1000; border: none; border-radius: 8px; padding: 0 1.25rem; font-family: var(--font-title); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: background 0.2s; }
.search-btn:hover { background: var(--gold-dark); }
.clear-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0 1rem; color: rgba(255,255,255,0.5); font-size: 0.82rem; cursor: pointer; transition: all 0.2s; }
.clear-btn:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 0.5rem; justify-content: center; padding: 2rem 0; }
.pg-link { padding: 0.45rem 0.9rem; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: all 0.2s; }
.pg-link:hover, .pg-link.active { background: rgba(245,192,22,0.15); border-color: rgba(245,192,22,0.5); color: var(--gold); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state p { color: rgba(255,255,255,0.35); font-size: 0.9rem; margin-top: 0.5rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.5rem; border-radius: 99px; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; font-family: var(--font-body); }
.btn-gold { background: var(--gold); color: #1a1000; }
.btn-gold:hover { background: var(--gold-dark); color: #1a1000; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid rgba(245,192,22,0.4); }
.btn-outline-gold:hover { background: var(--gold); color: #1a1000; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 640px) {
  .apps-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-universe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .dl-section { padding: 4rem 1.5rem; }
  .hero { min-height: 60vh; padding: 6rem 1.5rem 5rem; }
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.1rem; }
  .hero-stat-num { font-size: 1.75rem; }
  .section-head h2 { font-size: 3rem; }
  .section-head.centered h2 { font-size: 4rem; }
  .trust-panel { padding: 5rem; }
  .trust-left h2 { font-size: 3.75rem; }
  .trust-features { grid-template-columns: 1fr 1fr; }
  .dl-title { font-size: 5.5rem; }
  .dl-sub { font-size: 1.1rem; }
  .cat-universe-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .section { padding: 5rem 2rem; }
  .dl-section { padding: 5rem 2rem; }
  .hero { min-height: 65vh; }
  .hero h1 { font-size: 3.75rem; }
  .apps-grid { grid-template-columns: repeat(5, 1fr); }
  .cat-universe-grid { grid-template-columns: repeat(5, 1fr); }
  .trust-panel { flex-direction: row; }
  .trust-left { flex: 1; }
  .trust-features { flex: 1; grid-template-columns: 1fr 1fr; }
  .dl-title { font-size: 7rem; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .app-hero-card { flex-direction: column; }
  .app-icon-box { width: 100px; height: 100px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .trust-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 1rem; }
  .dl-badges { flex-direction: column; gap: 1rem; }
}
