/* ============================================================
   ZOOME CASINO — styles.css
   Dark violet theme · Yellow accents · Poppins · Fully responsive
   ============================================================ */

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

:root {
  --bg-primary:    #110d1e;
  --bg-card:       #1a1430;
  --bg-card-hover: #231a40;
  --bg-sidebar:    #140f25;
  --bg-input:      #1e1735;
  --bg-header:     #1a1430;
  --accent-yellow: #f5d000;
  --accent-yellow-2:#ffe44d;
  --accent-purple: #8b5cf6;
  --accent-pink:   #d946ef;
  --accent-green:  #22c55e;
  --text-primary:  #ffffff;
  --text-secondary:#a89bc8;
  --text-muted:    #6b5f88;
  --border:        #2a2048;
  --border-glow:   rgba(245,208,0,0.3);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --shadow-hover:  0 8px 36px rgba(0,0,0,0.7);
  --shadow-glow:   0 0 20px rgba(139,92,246,0.35);
  --radius-card:   14px;
  --radius-btn:    50px;
  --sidebar-w:     200px;
  --header-h:      64px;
  --header-h-mob:  56px;
  --ticker-h:      44px;
  --transition:    0.22s ease;
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-card); }
::-webkit-scrollbar-thumb { background: #3d2f6e; border-radius: 3px; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  height: var(--header-h);
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 4px;
}

.logo-img { height: 36px; width: auto; }

.header-search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 400px;
}

.header-search .fa-magnifying-glass {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.header-search input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 16px 10px 38px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
}

.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus { border-color: var(--accent-purple); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-search-mob {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 6px;
}

.btn-signin {
  background: #1e1735;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-signin:hover { border-color: var(--accent-yellow); background: rgba(245,208,0,0.08); }

.btn-signup {
  display: inline-block;
  background: var(--accent-yellow);
  color: #110d1e;
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 14px rgba(245,208,0,0.45);
}

.btn-signup:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 4px 22px rgba(245,208,0,0.6); }

/* ── INFO TICKER ───────────────────────────────────────────── */
.info-ticker {
  position: fixed;
  top: var(--header-h);
  left: var(--sidebar-w);
  right: 0;
  z-index: 95;
  height: var(--ticker-h);
  background: #1e1438;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.ticker-item strong { color: var(--text-primary); font-weight: 600; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── LAYOUT WRAPPER ────────────────────────────────────────── */
.layout-wrapper {
  display: flex;
  margin-top: calc(var(--header-h) + var(--ticker-h));
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
}

/* ── SIDEBAR ───────────────────────────────────────────────── */
.sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  z-index: 90;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 10px 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.sidebar-item .si-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sidebar-item:hover,
.sidebar-item.active {
  background: rgba(245,208,0,0.08);
  color: var(--accent-yellow);
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.sidebar-games-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-games-toggle i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.sidebar-footer {
  margin-top: auto;
  padding: 12px 14px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sidebar-locale {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-input);
  margin-top: 6px;
}

.sidebar-locale img { width: 20px; height: 20px; border-radius: 50%; }

/* ── MAIN CONTENT ──────────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  padding: 20px 20px 60px;
  max-width: calc(1800px - var(--sidebar-w));
  overflow-x: hidden;
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 280px;
  background: linear-gradient(135deg, #3b1a6e, #6d28c9, #4c1d95);
  display: flex;
  align-items: stretch;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 44px;
  max-width: 560px;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.hero-percent {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-yellow);
  text-shadow: 0 0 40px rgba(245,208,0,0.5);
  margin-bottom: 6px;
}

.hero-offer {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.btn-join {
  display: inline-block;
  background: var(--accent-yellow);
  color: #110d1e;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 44px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 24px rgba(245,208,0,0.55);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: btnPulse 2.6s infinite;
  align-self: flex-start;
  margin-bottom: 18px;
}

.btn-join:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 32px rgba(245,208,0,0.75);
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(245,208,0,0.55); }
  50%       { box-shadow: 0 4px 40px rgba(245,208,0,0.85); }
}

.hero-payment-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-payment-icons img {
  height: 22px;
  width: auto;
  opacity: 0.85;
  filter: brightness(1.1);
}

.hero-payment-icons span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ── CATEGORIES ROW ────────────────────────────────────────── */
.categories-section {
  margin-bottom: 28px;
}

.categories-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.cat-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.cat-btn i { font-size: 1rem; }

.cat-btn:hover,
.cat-btn.active {
  background: rgba(245,208,0,0.1);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  box-shadow: 0 0 12px rgba(245,208,0,0.2);
}

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.section-title img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: inline;
}

.btn-show-all {
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity var(--transition);
}

.btn-show-all:hover { opacity: 0.75; }

/* ── GAMES GRID ────────────────────────────────────────────── */
.games-section { margin-bottom: 36px; }

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

.game-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  font-size: 0;
  border: 1px solid transparent;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 0 2px var(--accent-yellow), 0 8px 32px rgba(0,0,0,0.6);
}

.game-card:hover img { transform: scale(1.06); }

.game-card .game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 0;
  width: 24px;
  height: 24px;
}

.game-card .game-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ── WIDE GAME CARDS ───────────────────────────────────────── */
.wide-games-section { margin-bottom: 36px; }

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

.wide-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  font-size: 0;
}

.wide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.wide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px var(--accent-yellow), 0 8px 28px rgba(0,0,0,0.6);
}

.wide-card:hover img { transform: scale(1.04); }

/* ── SEO CONTENT ───────────────────────────────────────────── */
.seo-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 44px;
  margin-bottom: 40px;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

.seo-section { margin-bottom: 40px; }
.seo-section:last-child { margin-bottom: 0; }

.seo-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.seo-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-2));
}

.seo-section p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.seo-section p:last-child { margin-bottom: 0; }
.seo-section p strong { color: var(--text-primary); }

.seo-list {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.75;
  padding-left: 0;
  list-style: none;
  margin-bottom: 14px;
}

.seo-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.seo-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
}

.seo-list li strong { color: var(--text-primary); }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg-input);
  border: none;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }
.faq-question i { flex-shrink: 0; color: var(--accent-yellow); transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { background: var(--bg-card-hover); }

.faq-answer {
  display: none;
  padding: 14px 20px 16px;
  border-top: 1px solid var(--border);
}

.faq-answer p { margin-bottom: 0; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.faq-answer.is-open { display: block; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border);
  margin-left: var(--sidebar-w);
  padding: 40px 0 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-logo-row { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { height: 40px; width: auto; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--accent-yellow); }

.footer-payment {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-payment img { height: 26px; width: auto; opacity: 0.7; filter: grayscale(40%); }

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 820px;
}

.footer-disclaimer a { color: var(--accent-yellow); }
.footer-disclaimer a:hover { text-decoration: underline; }

.footer-age-gate { display: flex; gap: 10px; align-items: center; }

.badge-18, .badge-rg {
  background: rgba(245,208,0,0.1);
  border: 1px solid rgba(245,208,0,0.3);
  color: var(--accent-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── MOBILE BOTTOM NAV ─────────────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  align-items: stretch;
  height: 62px;
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.62rem;
  font-weight: 500;
  transition: color var(--transition);
  padding: 8px 0;
}

.mob-nav-item i { font-size: 1.2rem; }
.mob-nav-item.active { color: var(--accent-yellow); }

.mob-nav-play {
  position: relative;
  top: -10px;
}

.mob-nav-play .mob-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--accent-yellow);
  color: #110d1e;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.68rem;
  box-shadow: 0 4px 20px rgba(245,208,0,0.5);
  transition: transform var(--transition);
}

.mob-nav-play .mob-play-btn:hover { transform: scale(1.06); }
.mob-nav-play .mob-play-btn i { font-size: 1.3rem; }

/* ── FLOATING CTA ──────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: #110d1e;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 13px 20px;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 24px rgba(245,208,0,0.5);
  animation: floatPulse 2.8s infinite;
  transition: transform var(--transition);
}

.floating-cta:hover { transform: translateY(-3px) scale(1.04); }
.floating-cta i { font-size: 1rem; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(245,208,0,0.5); }
  50%       { box-shadow: 0 4px 40px rgba(245,208,0,0.9); }
}

/* ── VISUALLY HIDDEN (SEO) ─────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── FADE IN ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE: TABLET ────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --sidebar-w: 160px; }
  .hero-percent { font-size: 4.2rem; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .seo-content { padding: 30px 28px; }
}

@media (max-width: 1024px) {
  .wide-games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .site-footer { margin-left: 0; }
  .info-ticker { left: 0; }
}

/* ── RESPONSIVE: MOBILE ────────────────────────────────────── */
@media (max-width: 767px) {
  body { padding-bottom: 62px; }

  :root {
    --header-h: var(--header-h-mob);
    --ticker-h: 40px;
  }

  /* Header */
  .header-search { display: none; }
  .btn-search-mob { display: flex; }

  /* Ticker */
  .ticker-item { padding: 0 16px; font-size: 0.7rem; }

  /* Main */
  .main-content { padding: 14px 12px 24px; }

  /* Hero */
  .hero-section {
    flex-direction: column;
    min-height: auto;
    border-radius: 14px;
  }

  .hero-bg-img {
    position: relative;
    width: 100%;
    height: 200px;
    object-position: center top;
  }

  .hero-content {
    padding: 24px 20px 28px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-sub { font-size: 0.95rem; }
  .hero-percent { font-size: 3.8rem; }
  .hero-offer { font-size: 1.15rem; }
  .btn-join { align-self: stretch; text-align: center; padding: 14px; }
  .hero-payment-icons { justify-content: center; }

  /* Categories */
  .cat-btn { padding: 8px 14px; font-size: 0.78rem; }

  /* Games */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wide-games-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* SEO */
  .seo-content { padding: 22px 16px; border-radius: 14px; }
  .seo-section h2 { font-size: 1.1rem; }
  .seo-section p, .seo-list { font-size: 0.85rem; }

  /* Footer */
  .site-footer { padding: 28px 0 80px; }
  .footer-inner { padding: 0 16px; }

  /* Mobile nav */
  .mobile-bottom-nav { display: flex; }

  /* Floating CTA */
  .floating-cta { bottom: 78px; right: 12px; padding: 0; width: 48px; height: 48px; justify-content: center; border-radius: 50%; font-size: 0; }
  .floating-cta i { font-size: 1.3rem; }
  .floating-cta span { display: none; }
}

@media (max-width: 480px) {
  .hero-percent { font-size: 3rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { padding: 0 14px; }
}
