/* ================================================================
   MAIN STYLESHEET — VegasX
   ================================================================
   Table of Contents:
   1. Reset & Variables
   2. Layout
   3. Background Noise
   4. Top Promo Banner
   5. Header
   6. Hero
   7. Trust Strip
   8. Payment Badges
   9. Quick Links
   10. Social Proof
   11. Section Head
   12. Games Grid (Sign-up Cards)
   13. Download Section (Download Cards)
   14. Footer
   15. Animations
   16. Responsive
   ================================================================ */

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

:root {
  --bg: #060b2c;
  --surface: #131044;
  --surface-2: #29135a;
  --border: rgba(220, 203, 255, 0.13);
  --text: #f8f7ff;
  --text-muted: #b8accf;
  --primary: #6d28d9;
  --primary-light: #d332ff;
  --accent: #0b4dff;
  --success: #22c55e;
  --success-light: #4ade80;
  --gold: #f9a652;
  --gold-light: #ffc76f;
  --radius: 18px;
  --shadow: 0 5px 24px rgba(4, 2, 15, 0.38);
  --shadow-lg: 0 28px 90px rgba(4, 2, 15, 0.55);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 10% -10%, rgba(11, 77, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(211, 50, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #060b2c 0%, #10063a 48%, #060b2c 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
li {
  list-style: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(211, 50, 255, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* ====== 2. LAYOUT ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== 3. BACKGROUND NOISE ====== */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====== 4. TOP PROMO BANNER ====== */
.top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(105deg, #173fff, #5b21b6 48%, #a21caf 76%, #d39b19);
  text-align: center;
  min-height: 44px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.top-banner-gift {
  width: 30px;
  height: 35px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(18, 4, 41, 0.3));
}

.top-banner-message {
  line-height: 1.35;
}

.top-banner .code {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 218, 112, 0.45);
  color: #ffe379;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* ====== 5. HEADER ====== */
.site-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 11, 44, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 211, 93, 0.35),
    0 0 20px rgba(124, 58, 237, 0.26);
}
.logo .brand-logo-lockup {
  width: 126px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff9cc, #f4c542 55%, #c78200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.site-nav a.active {
  color: #fff;
  background: rgba(211, 50, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(211, 50, 255, 0.2);
}

/* Hamburger — desktop hidden */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.2s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav extras — desktop hidden */
.mobile-nav-extras {
  display: none;
}
.breadcrumb {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary-light);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--text);
}
.breadcrumb span:last-child {
  color: var(--text-muted);
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 120px;
  white-space: nowrap;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
}

/* ====== 6. HERO ====== */
.hero {
  text-align: center;
  padding: 28px 0 56px;
}
.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 68px 28px 34px;
  min-height: 560px;
  border: 1px solid rgba(220, 203, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(6, 11, 44, 0.98) 0%, rgba(14, 10, 64, 0.9) 48%, rgba(19, 16, 68, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 11, 44, 0.78), transparent 70%),
    url("/assets/images/branding/vegasx-social-v2.webp") right center / cover no-repeat,
    var(--surface);
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.hero-panel > * {
  position: relative;
  max-width: 650px;
}
.hero-panel > :not(.hero-brand-mark) {
  z-index: 3;
  max-width: 58%;
}
.hero-brand-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 7%;
  width: min(300px, 29vw);
  height: auto;
  max-width: none;
  border-radius: 34px;
  transform: translateY(-50%) rotate(1deg);
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 28px rgba(255, 199, 83, 0.28));
  pointer-events: none;
}
.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero-panel::before {
  top: -220px;
  left: 12%;
  background: rgba(211, 50, 255, 0.28);
}
.hero-panel::after {
  right: 10%;
  bottom: -270px;
  background: rgba(61, 77, 255, 0.26);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211, 50, 255, 0.12);
  border: 1px solid rgba(211, 50, 255, 0.28);
  color: #f1bcff;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
}
.hero .gradient {
  background: linear-gradient(105deg, #fff5b0, #f9c84d 34%, #f9a652 70%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 16px;
  color: #d9d0e9;
  max-width: 650px;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ====== 7. (trust strip removed) ====== */

/* ====== 8. PAYMENT BADGES ====== */
.payment-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.pay-badge {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}
.pay-badge:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.pay-badge img {
  height: 16px;
  width: auto;
}

/* ====== 9. (quick links removed) ====== */

/* ====== 10. SOCIAL PROOF (inline) ====== */
.social-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.hero-proof {
  width: min(660px, 100%);
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  background: rgba(9, 5, 26, 0.54);
  backdrop-filter: blur(14px);
}
.social-inline strong {
  color: var(--gold);
  font-weight: 700;
}
.si-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}
.si-link {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.si-dep {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}
.si-dep:hover {
  background: rgba(16, 185, 129, 0.22);
}
.si-wdw {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.si-wdw:hover {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

/* Deposit / Withdraw row */
.funds-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 0;
}
.funds-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.funds-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.funds-btn ion-icon {
  font-size: 16px;
}
.funds-dep {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.funds-dep:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: rgba(16, 185, 129, 0.4);
}
.funds-wdw {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.funds-wdw:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

/* ====== 11. SECTION HEAD ====== */
.section-head {
  text-align: center;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 15px;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ====== 12. GAMES GRID (Sign-up Cards) ====== */
.games-section {
  position: relative;
  padding: 64px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.18));
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.game-view-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -10px 0 24px;
}
.game-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.72);
  color: var(--text-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.game-tab:hover {
  color: var(--text);
  border-color: rgba(96, 165, 250, 0.28);
  transform: translateY(-1px);
}
.game-tab.active {
  color: #fff;
  border-color: rgba(96, 165, 250, 0.4);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.34), rgba(29, 78, 216, 0.22));
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.12);
}
.game-tab ion-icon {
  color: var(--accent);
  font-size: 16px;
}

.game-card {
  display: block;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.game-card:hover {
  border-color: rgba(96, 165, 250, 0.36);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.gc-banner {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--surface-2);
}
.gc-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(2, 6, 23, 0.38));
  pointer-events: none;
}
.gc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .gc-banner img {
  transform: scale(1.06);
}

.gc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 14px rgba(2, 6, 23, 0.28);
}

.gc-body {
  padding: 16px 16px 18px;
}

.gc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.gc-name {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gc-bonus {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  white-space: nowrap;
}

.gc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.gc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.gc-meta ion-icon {
  font-size: 14px;
}

.gc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--primary), #3d4dff);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.gc-cta:hover {
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.35);
  transform: translateY(-1px);
}
.gc-cta ion-icon {
  font-size: 16px;
}

/* Featured card */
.game-card.featured {
  border-color: rgba(211, 50, 255, 0.46);
  box-shadow: 0 14px 42px rgba(109, 40, 217, 0.18);
}
.game-card.featured .gc-cta {
  background: linear-gradient(105deg, #e6724e, #d332ff 58%, #6d28d9);
}
.game-card.featured .gc-cta:hover {
  box-shadow: 0 8px 26px rgba(211, 50, 255, 0.34);
}

/* Show All Games Toggle */
.games-grid-extra {
  display: contents;
}
.games-grid-extra[hidden] {
  display: none !important;
}
.btn-show-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: rgba(30, 41, 59, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-show-all:hover {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: var(--surface-2);
}
.btn-show-all ion-icon {
  font-size: 16px;
}
.show-all-wrap {
  text-align: center;
  margin-top: 24px;
}

/* ====== 13. DOWNLOAD SECTION (App Listing Style) ====== */
.download-section {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}
.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.04) 40%,
    rgba(16, 185, 129, 0.02) 100%
  );
  pointer-events: none;
}
.dl-head {
  text-align: center;
  margin-bottom: 34px;
}
.dl-head h2 {
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.dl-head .gradient {
  background: linear-gradient(105deg, #f9a652, #e6724e 30%, #d332ff 72%, #8190ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-head p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* App listing rows */
.al-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.al-list:not(.expanded) .al-row:nth-child(n + 7) {
  display: none;
}
.al-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(17, 24, 39, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.al-row:hover {
  background: var(--surface-2);
  border-color: rgba(52, 211, 153, 0.28);
  transform: translateY(-2px);
}
.al-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.al-info {
  flex: 1;
  min-width: 0;
}
.al-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.al-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
}
.al-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.al-meta ion-icon {
  font-size: 12px;
  color: #facc15;
}
.al-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}
.al-install {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.al-install ion-icon {
  font-size: 14px;
}
.al-row:hover .al-install {
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}
.al-row.featured {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
}
.al-row.featured .al-name::after {
  content: "★";
  margin-left: 6px;
  color: var(--gold);
  font-size: 12px;
}

.download-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.download-count {
  color: var(--text-muted);
  font-size: 12px;
}
.btn-view-downloads,
.btn-seo-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.74);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.btn-view-downloads:hover,
.btn-seo-more:hover {
  border-color: rgba(96, 165, 250, 0.32);
  background: var(--surface-2);
  transform: translateY(-1px);
}
.btn-view-downloads ion-icon,
.btn-seo-more ion-icon {
  color: var(--accent);
  font-size: 16px;
}

/* ====== 14. FOOTER ====== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 52px 0 24px;
  background: rgba(2, 6, 23, 0.28);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary-light);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-disclaimer {
  max-width: 720px;
  margin: 8px auto 0;
  line-height: 1.55;
}

/* ====== 15. ANIMATIONS (Intersection Observer) ====== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.anim.in-view {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.05s;
}
.d2 {
  transition-delay: 0.1s;
}
.d3 {
  transition-delay: 0.15s;
}
.d4 {
  transition-delay: 0.2s;
}
.d5 {
  transition-delay: 0.25s;
}
.d6 {
  transition-delay: 0.3s;
}
.d7 {
  transition-delay: 0.05s;
}
.d8 {
  transition-delay: 0.1s;
}
.d9 {
  transition-delay: 0.15s;
}
.d10 {
  transition-delay: 0.2s;
}
.d11 {
  transition-delay: 0.25s;
}
.d12 {
  transition-delay: 0.05s;
}
.d13 {
  transition-delay: 0.1s;
}
.d14 {
  transition-delay: 0.15s;
}
.d15 {
  transition-delay: 0.2s;
}
.d16 {
  transition-delay: 0.25s;
}

/* ====== 16. HERO CTA ====== */
.hero-cta {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  background: linear-gradient(105deg, #f6c83f, #e69a18 58%, #b66a00);
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 30px rgba(246, 200, 63, 0.26);
  color: #251200;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(246, 200, 63, 0.4);
}
.btn-hero-primary ion-icon {
  font-size: 18px;
  transform-origin: 50% 75%;
  animation: bonusGiftJingle 1.8s ease-in-out infinite;
}
@keyframes bonusGiftJingle {
  0%,
  58%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  66% {
    transform: rotate(-13deg) scale(1.16);
  }
  74% {
    transform: rotate(11deg) scale(1.12);
  }
  82% {
    transform: rotate(-7deg) scale(1.08);
  }
  90% {
    transform: rotate(4deg) scale(1.04);
  }
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-hero-secondary ion-icon {
  font-size: 18px;
}

/* ====== 17. URGENCY COUNTDOWN ====== */
.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 11px;
  margin-bottom: 0;
  font-size: 12px;
  color: #c8bddb;
  font-weight: 500;
}
.hero-urgency ion-icon {
  font-size: 14px;
  color: var(--gold);
}
.hero-urgency strong {
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

/* ====== 18. BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ====== 19. FLOATING MOBILE CTA ====== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.floating-cta.visible {
  transform: translateY(0);
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(105deg, #f6c83f, #e69a18 58%, #b66a00);
  color: #251200;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(246, 200, 63, 0.3);
}
.floating-cta-btn ion-icon {
  font-size: 20px;
  transform-origin: 50% 75%;
  animation: bonusGiftJingle 1.8s ease-in-out infinite;
}

/* ====== 20. WINNER TOAST NOTIFICATIONS ====== */
.winner-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.winner-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  animation: toastSlideIn 0.4s ease forwards;
}
.winner-toast.exit {
  animation: toastSlideOut 0.3s ease forwards;
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.winner-info {
  flex: 1;
  min-width: 0;
}
.winner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.winner-detail {
  font-size: 11px;
  color: var(--text-muted);
}
.winner-detail strong {
  color: var(--success);
}
.winner-time {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ====== 21. SEO CONTENT SECTION ====== */
.seo-content {
  padding: 72px 0 48px;
}
.seo-content .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.seo-more-wrap {
  display: none;
}
.seo-block {
  margin-bottom: 0;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.68);
}
.seo-intro,
.seo-benefits {
  grid-column: 1 / -1;
}
.seo-intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(109, 40, 217, 0.1), transparent 46%),
    rgba(17, 24, 39, 0.72);
}
.seo-block h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.seo-block h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.seo-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.seo-block p strong {
  color: var(--text);
}
.seo-steps {
  list-style: decimal;
  padding-left: 24px;
  margin: 16px 0 0;
  counter-reset: steps;
  padding-left: 0;
}
.seo-steps li {
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 34px;
  list-style: none;
}
.seo-steps li::before {
  content: counter(list-item);
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: rgba(109, 40, 217, 0.16);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.seo-steps li strong {
  color: var(--text);
}
.seo-games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.seo-games-list span {
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.seo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.seo-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(2, 6, 23, 0.22);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.seo-feature ion-icon {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.seo-feature strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.seo-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ====== 22. FAQ SECTION ====== */
.faq-section {
  padding: 56px 0 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), transparent);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(17, 24, 39, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: rgba(96, 165, 250, 0.38);
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}
.faq-answer {
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-answer p strong {
  color: var(--text);
}

/* ====== 23. RESPONSIVE ====== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .top-banner {
    font-size: 12px;
    gap: 7px;
    min-height: 40px;
    padding: 5px 10px;
  }
  .top-banner-gift {
    width: 25px;
    height: 29px;
  }
  .site-header {
    padding: 12px 0;
  }
  .logo {
    font-size: 17px;
    gap: 8px;
  }
  .logo img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .logo .brand-logo-lockup {
    width: 112px;
    height: auto;
    border-radius: 0;
  }
  .brand-name {
    font-size: 16px;
  }
  .hero {
    padding: 18px 0 36px;
  }
  .hero-panel {
    padding: 34px 18px 20px;
    border-radius: 22px;
    min-height: 520px;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(6, 11, 44, 0.94) 0%, rgba(12, 14, 74, 0.8) 54%, rgba(6, 11, 44, 0.96) 100%),
      url("/assets/images/branding/vegasx-social-v2.webp") 72% center / cover no-repeat,
      var(--surface);
  }
  .hero-panel > * {
    max-width: 100%;
  }
  .hero-panel > :not(.hero-brand-mark) {
    max-width: 100%;
  }
  .hero-brand-mark {
    top: auto;
    right: 50%;
    bottom: 24px;
    width: 180px;
    max-width: 48vw;
    opacity: 0.26;
    transform: translateX(50%);
  }
  .hero h1 {
    font-size: 30px;
    letter-spacing: -0.7px;
  }
  .hero h1 br {
    display: none;
  }
  .hero p {
    max-width: 540px;
    font-size: 14px;
    margin: 0 auto 20px;
    line-height: 1.55;
  }
  .hero-badge {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .payment-strip {
    gap: 5px;
    margin-bottom: 10px;
  }
  .pay-badge {
    padding: 4px 8px;
    font-size: 11px;
    gap: 4px;
    border-radius: 6px;
  }
  .pay-badge img {
    height: 14px;
  }
  .social-inline {
    gap: 4px 12px;
    font-size: 11px;
    margin-bottom: 0;
  }
  .hero-proof {
    margin: 18px auto 0;
    padding: 14px 12px;
  }
  .hero-cta,
  .hero-urgency {
    justify-content: center;
  }
  .funds-row {
    flex-wrap: wrap;
  }
  .funds-label {
    flex-basis: 100%;
  }
  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .game-view-tabs {
    margin: -8px 0 20px;
  }
  .game-tab {
    flex: 1;
    max-width: 170px;
    padding: 9px 12px;
  }
  .gc-banner {
    height: 120px;
  }
  .gc-body {
    display: flex;
    flex-direction: column;
    padding: 10px 12px 14px;
  }
  .gc-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    min-height: 50px;
  }
  .gc-name {
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .gc-meta {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 10px;
  }
  .gc-cta {
    margin-top: auto;
    padding: 8px;
    font-size: 11.5px;
  }
  .gc-bonus {
    font-size: 11px;
  }
  .download-section {
    padding: 52px 0 44px;
  }
  .al-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .download-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }
  .btn-view-downloads {
    width: min(100%, 320px);
  }
  .dl-head h2 {
    font-size: 20px;
  }
  .dl-head p {
    font-size: 13px;
  }
  .al-row {
    padding: 10px 14px;
    gap: 10px;
  }
  .al-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .al-name {
    font-size: 13px;
  }
  .al-meta {
    font-size: 10.5px;
  }
  .al-install {
    padding: 6px 12px;
    font-size: 11px;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .section-head p {
    font-size: 13px;
  }
  .header-stats span {
    display: none;
  }
  .btn-hero-primary {
    padding: 11px 20px;
    font-size: 14px;
  }
  .btn-hero-secondary {
    padding: 11px 18px;
    font-size: 14px;
  }
  .hero-urgency {
    font-size: 11px;
    gap: 5px;
    margin-bottom: 14px;
  }
  .floating-cta {
    display: block;
  }
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer {
    padding: 32px 0 20px;
  }
  .footer-desc {
    max-width: 100%;
  }
  .winner-toast-container {
    bottom: 80px;
    left: 12px;
    right: 12px;
  }
  .winner-toast {
    min-width: unset;
    max-width: 100%;
    padding: 10px 12px;
  }
  .seo-content {
    padding: 48px 0 30px;
  }
  .seo-content .container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .seo-content:not(.expanded) .seo-catalog,
  .seo-content:not(.expanded) .seo-benefits {
    display: none;
  }
  .seo-more-wrap {
    display: block;
    text-align: center;
  }
  .btn-seo-more {
    width: min(100%, 320px);
  }
  .seo-content.expanded .btn-seo-more ion-icon {
    transform: rotate(180deg);
  }
  .seo-intro,
  .seo-benefits {
    grid-column: auto;
  }
  .seo-block {
    padding: 20px;
  }
  .seo-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .seo-block h2 {
    font-size: 22px;
  }
  .seo-block h3 {
    font-size: 18px;
  }
  .seo-block p {
    font-size: 14px;
  }
  .seo-feature {
    padding: 16px;
  }
  .seo-games-list span {
    font-size: 12px;
    padding: 5px 10px;
  }
  .faq-section {
    padding: 42px 0 52px;
  }
  .faq-item summary {
    padding: 14px 16px;
    font-size: 14px;
    gap: 8px;
  }
  .faq-answer {
    padding: 0 16px 14px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .site-nav {
    /* Mobile drawer */
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 72px 20px 24px;
    z-index: 105;
    border-left: 1px solid var(--border);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .site-nav a:hover,
  .site-nav a:active,
  .site-nav a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
  .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .mnav-funds {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .mnav-funds ion-icon {
    font-size: 18px;
  }
  .mnav-dep {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
  }
  .mnav-wdw {
    background: var(--surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
  }
  .mnav-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 8px 16px;
  }
  .mnav-stats strong {
    color: var(--gold);
  }
  .hamburger {
    display: flex;
  }
  .header-stats {
    display: none;
  }
  /* Backdrop overlay */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  .nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
  .breadcrumb {
    display: none;
  }
  .download-section {
    padding: 52px 0 44px;
  }
  .games-section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .hero h1 {
    font-size: 26px;
    letter-spacing: -0.6px;
  }
  .hero p {
    font-size: 12.5px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 13px;
  }
  .pay-badge span {
    display: none;
  }
  .pay-badge {
    padding: 4px 8px;
  }
  .hero-proof {
    padding: 12px 8px;
  }
  .social-inline {
    font-size: 10.5px;
    gap: 3px 10px;
  }
  .si-dot {
    width: 2px;
    height: 2px;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 15px;
    gap: 6px;
  }
  .logo img {
    height: 26px;
  }
  .logo .brand-logo-lockup {
    width: 102px;
    height: auto;
  }
  .hero h1 {
    font-size: 24px;
  }
  .games-grid {
    gap: 8px;
  }
  .gc-body {
    padding: 8px 10px 12px;
  }
  .gc-name {
    font-size: 13px;
  }
  .gc-bonus {
    font-size: 10px;
  }
  .gc-cta {
    padding: 7px;
    font-size: 10.5px;
    gap: 4px;
  }
  .gc-cta ion-icon {
    font-size: 13px;
  }
  .gc-banner {
    height: 100px;
  }
  .al-row {
    padding: 8px 10px;
    gap: 8px;
  }
  .al-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .al-name {
    font-size: 12px;
  }
  .al-meta {
    font-size: 10px;
    gap: 4px;
  }
  .al-install {
    padding: 5px 10px;
    font-size: 10px;
    gap: 3px;
  }
  .top-banner {
    font-size: 11px;
    padding: 7px 10px;
  }
  .top-banner .code {
    padding: 1px 6px;
  }
  .seo-block h2 {
    font-size: 20px;
  }
  .faq-item summary {
    font-size: 13px;
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .anim {
    opacity: 1;
    transform: none;
  }
}
