/* ══════════════════════════════════════════════════════════════════
   APKLocker Pro — Main Stylesheet
   Design: Dark gaming aesthetic, electric cyan/green accent system
   Typography: Rajdhani (display) + Nunito (body)
   Mobile-first responsive
   ══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
───────────────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:           #0d0f14;
  --clr-bg-2:         #131720;
  --clr-bg-3:         #1a1f2e;
  --clr-bg-card:      #161b27;
  --clr-bg-card-2:    #1c2233;
  --clr-border:       #252d3f;
  --clr-border-2:     #2e3850;

  --clr-accent:       #00e5ff;
  --clr-accent-dim:   #00b8cc;
  --clr-accent-glow:  rgba(0, 229, 255, 0.15);
  --clr-green:        #00ff88;
  --clr-green-dim:    #00cc6a;
  --clr-orange:       #ff6b35;
  --clr-red:          #ff4757;
  --clr-yellow:       #ffd32a;

  --clr-text:         #e8edf5;
  --clr-text-muted:   #8899bb;
  --clr-text-faint:   #4a567a;
  --clr-white:        #ffffff;

  /* Gradients */
  --grad-accent:      linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
  --grad-card:        linear-gradient(145deg, #1a1f2e 0%, #131720 100%);
  --grad-hero:        linear-gradient(180deg, #0d0f14 0%, #111523 100%);
  --grad-btn:         linear-gradient(135deg, #00c4db 0%, #00e5ff 50%, #00ff88 100%);
  --grad-btn-hover:   linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);

  /* Typography */
  --font-display:     'Rajdhani', 'Arial Black', sans-serif;
  --font-body:        'Nunito', 'Helvetica Neue', sans-serif;

  --text-xs:    0.7rem;
  --text-sm:    0.825rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;

  /* Borders & Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md:    0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg:    0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow:  0 0 30px rgba(0, 229, 255, 0.2);
  --shadow-btn:   0 4px 20px rgba(0, 229, 255, 0.3);

  /* Transitions */
  --ease-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1180px;
  --header-h:      64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--ease-fast);
}
a:hover { color: var(--clr-green); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-white);
  letter-spacing: 0.01em;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

[hidden] { display: none !important; }

/* ─────────────────────────────────────────────
   3. LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

@media (min-width: 768px)  { .container { padding-inline: var(--sp-6); } }
@media (min-width: 1200px) { .container { padding-inline: var(--sp-8); } }

.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

/* ─────────────────────────────────────────────
   4. ANIMATIONS
───────────────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes progress-stripe {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 0; }
}

@keyframes bounce-in {
  0%   { opacity: 0; transform: scale(0.7) translateY(30px); }
  70%  { transform: scale(1.05) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes counter-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(0, 229, 255, 0.4); }
  50%       { text-shadow: 0 0 20px rgba(0, 229, 255, 0.9); }
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* ─────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--ease-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--ease-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Primary */
.btn-primary {
  background: var(--grad-btn);
  color: #000;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--grad-btn-hover);
  box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
  color: #000;
  transform: translateY(-1px);
}

/* Variants */
.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-sm); }
.btn-xl {
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--text-xl);
  border-radius: var(--radius-lg);
}
.btn-block { width: 100%; }

/* Download button */
.btn-download {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-4) var(--sp-8);
  min-height: 72px;
}
.btn-download .btn-icon { font-size: 1.5rem; }
.btn-download .btn-text { font-size: var(--text-xl); }
.btn-download .btn-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  opacity: 0.75;
  text-transform: none;
  letter-spacing: 0;
}

/* Skip button */
.btn-skip {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--ease-fast);
}
.btn-skip:hover { color: var(--clr-text); }

/* Sticky CTA button */
.btn-sticky {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  min-width: 140px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   6. PULSE DOT
───────────────────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.pulse-dot.small { width: 6px; height: 6px; }

/* ─────────────────────────────────────────────
   7. SITE HEADER
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-4);
}

/* Branding */
.site-branding { flex-shrink: 0; }

.site-title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-title:hover { color: var(--clr-accent); }

.logo-icon { font-size: 1.4em; }

/* Navigation */
.main-navigation { margin-left: auto; }

#primary-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--clr-bg-2);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-4);
  gap: var(--sp-2);
}
#primary-menu.is-open { display: flex; }
#primary-menu li a {
  color: var(--clr-text);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--sp-2) var(--sp-3);
  display: block;
  border-radius: var(--radius-sm);
}
#primary-menu li a:hover { background: var(--clr-bg-3); color: var(--clr-accent); }

@media (min-width: 900px) {
  #primary-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    gap: var(--sp-1);
  }
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
}
.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--ease-fast);
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* Header meta */
.header-meta { flex-shrink: 0; }
.header-downloads {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  white-space: nowrap;
}
#header-live-count { color: var(--clr-green); font-weight: 700; }
@media (min-width: 640px) { .header-downloads { display: flex; } }

/* ─────────────────────────────────────────────
   8. HERO SECTION (HOMEPAGE)
───────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: var(--sp-16) 0 var(--sp-12);
  background: var(--grad-hero);
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-drift 20s linear infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: slide-up 0.6s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clr-green);
  margin-bottom: var(--sp-6);
  font-weight: 700;
}

#live-download-counter {
  animation: counter-glow 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(var(--text-3xl), 6vw, var(--text-4xl));
  line-height: 1.05;
  margin-bottom: var(--sp-4);
}
.hero-title-accent {
  display: block;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-8);
  max-width: 580px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.hero-feature {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text);
}

/* ─────────────────────────────────────────────
   9. TRUST BAR
───────────────────────────────────────────── */
.trust-bar {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-4) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}
.trust-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* ─────────────────────────────────────────────
   10. GAMES SECTION
───────────────────────────────────────────── */
.games-section {
  padding: var(--sp-12) 0 var(--sp-16);
}

.section-header {
  margin-bottom: var(--sp-8);
}
.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-2);
}
.section-subtitle {
  color: var(--clr-text-muted);
}

/* Game Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 640px)  { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .games-grid { grid-template-columns: repeat(6, 1fr); } }

/* Game Card */
.game-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease-base);
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.game-card-link { display: flex; flex-direction: column; flex: 1; }

.game-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-bg-3);
}
.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.game-card:hover .game-card-image img { transform: scale(1.05); }

.game-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-3);
}
.placeholder-icon { font-size: 3rem; }

.game-card-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--clr-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px var(--sp-2);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-card-body {
  padding: var(--sp-3);
  flex: 1;
}
.game-card-title {
  font-size: var(--text-sm);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--clr-white);
}
.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}
.game-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rating-num { font-size: var(--text-xs); color: var(--clr-text-muted); }
.game-card-version { font-size: var(--text-xs); color: var(--clr-text-faint); }
.game-card-stats {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.game-card-stats .stat { font-size: var(--text-xs); color: var(--clr-text-muted); }

.game-card-footer { padding: var(--sp-3); padding-top: 0; }

/* Stars */
.stars { display: inline-flex; gap: 1px; }
.star { font-size: 0.8em; }
.star.full  { color: var(--clr-yellow); }
.star.half  { color: var(--clr-yellow); font-size: 0.7em; }
.star.empty { color: var(--clr-text-faint); }

/* Pagination */
.pagination-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-10);
  flex-wrap: wrap;
}
.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--sp-3);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-weight: 600;
  transition: all var(--ease-fast);
}
.pagination-nav .page-numbers.current,
.pagination-nav .page-numbers:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #000;
}

/* No Games */
.no-games {
  text-align: center;
  padding: var(--sp-16);
}
.no-games-icon { font-size: 4rem; margin-bottom: var(--sp-4); }

/* ─────────────────────────────────────────────
   11. HOW IT WORKS
───────────────────────────────────────────── */
.how-it-works {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-12) 0;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}
.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: var(--sp-6);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-icon { font-size: 2.5rem; margin-bottom: var(--sp-3); }
.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #000;
  font-size: var(--text-sm);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title { font-size: var(--text-lg); margin-bottom: var(--sp-2); }
.step p { color: var(--clr-text-muted); font-size: var(--text-sm); }
.step-arrow {
  font-size: var(--text-2xl);
  color: var(--clr-text-faint);
  align-self: center;
  flex-shrink: 0;
}
@media (max-width: 767px) { .step-arrow { display: none; } }

/* ─────────────────────────────────────────────
   12. GAME PAGE — HERO
───────────────────────────────────────────── */
.game-main { padding: var(--sp-6) 0 var(--sp-16); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb-sep { color: var(--clr-text-faint); }
.breadcrumb-current { color: var(--clr-text); }

/* Game Hero Layout */
.game-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
@media (min-width: 768px) {
  .game-hero {
    grid-template-columns: 280px 1fr;
    gap: var(--sp-8);
  }
}

/* Game Cover */
.game-cover-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border: 2px solid var(--clr-border);
}
@media (min-width: 768px) { .game-cover-wrap { margin: 0; max-width: none; } }

.game-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-cover-placeholder {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.game-cover-badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
}
.badge-hot {
  background: var(--clr-red);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 3px var(--sp-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Game Info */
.game-category-tag {
  display: inline-block;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--clr-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px var(--sp-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.game-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  margin-bottom: var(--sp-4);
}

.game-rating-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.rating-value { font-weight: 800; color: var(--clr-yellow); }
.rating-count { font-size: var(--text-sm); color: var(--clr-text-muted); }

/* Quick Stats */
.game-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
@media (min-width: 480px) { .game-quick-stats { grid-template-columns: repeat(4, 1fr); } }

.quick-stat {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.qs-icon { font-size: 1.3rem; flex-shrink: 0; }
.qs-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--clr-white);
}
.qs-label { font-size: var(--text-xs); color: var(--clr-text-muted); }

/* Live Counter */
.live-counter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clr-green);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  width: fit-content;
}
#game-live-count {
  font-weight: 800;
  animation: counter-glow 2s ease-in-out infinite;
}

/* Download Disclaimer */
.download-disclaimer {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin-top: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.disc-sep { color: var(--clr-text-faint); }

/* ─────────────────────────────────────────────
   13. PROGRESS CONTAINER
───────────────────────────────────────────── */
.progress-container {
  margin-bottom: var(--sp-8);
  animation: slide-up 0.4s ease both;
}

.progress-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-accent);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-glow);
}

.progress-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.progress-icon { font-size: 2rem; animation: pulse-glow 1.5s ease-in-out infinite; }
.progress-title { font-size: var(--text-xl); margin-bottom: var(--sp-1); }
.progress-status { font-size: var(--text-sm); color: var(--clr-accent); }

.progress-bar-wrap {
  position: relative;
  height: 28px;
  background: var(--clr-bg-3);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--sp-5);
  border: 1px solid var(--clr-border);
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: var(--radius-full);
  background: var(--grad-btn);
  background-size: 40px 100%;
  transition: width 0.3s ease;
  position: relative;
}
.progress-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.1) 10px,
    rgba(255,255,255,0.1) 20px
  );
  animation: progress-stripe 0.6s linear infinite;
}
.progress-percent {
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-xs);
  font-weight: 800;
  color: #000;
  z-index: 1;
  mix-blend-mode: multiply;
}

.progress-steps { display: flex; flex-direction: column; gap: var(--sp-2); }
.progress-step {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: all var(--ease-base);
}
.progress-step.step-active {
  background: rgba(0, 229, 255, 0.07);
  color: var(--clr-accent);
}
.progress-step.step-done {
  color: var(--clr-green);
}
.pstep-icon { flex-shrink: 0; }
.pstep-status { margin-left: auto; font-size: var(--text-xs); font-weight: 700; }

/* ─────────────────────────────────────────────
   14. EMAIL POPUP MODAL
───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  animation: fade-in 0.3s ease;
}

.modal-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 229, 255, 0.1);
  overflow: hidden;
  animation: bounce-in 0.5s ease both;
}

/* Timer bar at top of modal */
.modal-timer-bar {
  height: 4px;
  background: var(--clr-bg-3);
  width: 100%;
}
.modal-timer-fill {
  height: 100%;
  width: 100%;
  background: var(--grad-accent);
  transform-origin: left;
  /* JS will animate this via CSS transition */
}

.modal-body { padding: var(--sp-8); }

.email-modal-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: var(--sp-4);
}

.modal-title {
  font-size: var(--text-xl);
  text-align: center;
  margin-bottom: var(--sp-2);
}

.modal-subtitle {
  text-align: center;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.optional-badge {
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--clr-orange);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px var(--sp-2);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: var(--clr-bg-3);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--clr-text);
}

/* Email input */
.email-input-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.email-input {
  width: 100%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  color: var(--clr-text);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.email-input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.email-input::placeholder { color: var(--clr-text-faint); }

.btn-email-submit {
  width: 100%;
  padding: var(--sp-4);
  font-size: var(--text-base);
}

/* Email feedback */
.email-feedback {
  margin-bottom: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}
.email-feedback.is-success {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--clr-green);
}
.email-feedback.is-error {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: var(--clr-red);
}

/* Skip row */
.modal-skip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.auto-skip-text {
  font-size: var(--text-xs);
  color: var(--clr-text-faint);
  font-style: italic;
}

/* ─────────────────────────────────────────────
   15. CPA LOCKER
───────────────────────────────────────────── */
.cpa-locker-container {
  margin-bottom: var(--sp-10);
  animation: slide-up 0.5s ease both;
}

.cpa-locker-header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-2);
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--sp-6);
}
.cpa-lock-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.cpa-locker-title { font-size: var(--text-xl); margin-bottom: var(--sp-2); }
.cpa-locker-sub { font-size: var(--text-sm); color: var(--clr-text-muted); }

.cpa-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  background: rgba(0, 229, 255, 0.05);
  border-left: 1px solid var(--clr-border-2);
  border-right: 1px solid var(--clr-border-2);
  padding: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-accent);
  font-weight: 600;
  flex-wrap: wrap;
}

.cpa-locker-content {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-2);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: var(--sp-8);
  min-height: 200px;
}

/* Placeholder (no CPA script yet) */
.cpa-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.cpa-placeholder-inner {
  text-align: center;
  max-width: 360px;
}
.cpa-placeholder-icon { font-size: 3rem; margin-bottom: var(--sp-3); }

/* ─────────────────────────────────────────────
   16. GAME CONTENT GRID
───────────────────────────────────────────── */
.game-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 900px) {
  .game-content-grid {
    grid-template-columns: 1fr 300px;
  }
}

/* Content Sections */
.content-section {
  margin-bottom: var(--sp-10);
}
.content-section-title {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-3);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--ease-fast);
}
.feature-item:hover {
  border-color: var(--clr-green);
  background: rgba(0, 255, 136, 0.05);
}
.feature-check { font-size: 1.1rem; flex-shrink: 0; }

/* Game description */
.game-description {
  color: var(--clr-text-muted);
  line-height: 1.8;
}
.game-description p { margin-bottom: var(--sp-4); }
.game-description h2, .game-description h3 {
  color: var(--clr-white);
  margin: var(--sp-6) 0 var(--sp-3);
}

/* ─────────────────────────────────────────────
   17. REVIEWS
───────────────────────────────────────────── */
.reviews-summary {
  display: flex;
  gap: var(--sp-8);
  align-items: flex-start;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.reviews-avg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  min-width: 100px;
}
.reviews-big-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--clr-yellow);
  line-height: 1;
}
.reviews-count { font-size: var(--text-xs); color: var(--clr-text-muted); text-align: center; }

.reviews-breakdown { flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); min-width: 200px; }
.review-bar-row { display: flex; align-items: center; gap: var(--sp-2); }
.review-bar-label { font-size: var(--text-xs); color: var(--clr-text-muted); min-width: 18px; text-align: right; }
.review-bar-track { flex: 1; height: 8px; background: var(--clr-bg-3); border-radius: var(--radius-full); overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--clr-yellow); border-radius: var(--radius-full); }
.review-bar-pct { font-size: var(--text-xs); color: var(--clr-text-faint); min-width: 30px; }

.reviews-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.review-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: border-color var(--ease-fast);
}
.review-card:hover { border-color: var(--clr-border-2); }

.review-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.review-avatar { font-size: 2rem; }
.review-meta { flex: 1; }
.review-name { display: block; font-weight: 700; font-size: var(--text-sm); color: var(--clr-white); }
.review-date { font-size: var(--text-xs); color: var(--clr-text-muted); }
.review-text { color: var(--clr-text-muted); font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--sp-3); }
.review-footer { display: flex; align-items: center; gap: var(--sp-4); }
.review-like-btn {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  transition: all var(--ease-fast);
}
.review-like-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
.review-like-count { font-weight: 700; }
.review-verified { font-size: var(--text-xs); color: var(--clr-green); }

/* ─────────────────────────────────────────────
   18. SIDEBAR
───────────────────────────────────────────── */
.game-content-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.sidebar-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.sidebar-card-title {
  font-size: var(--text-base);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

.details-table { width: 100%; border-collapse: collapse; }
.details-table tr { border-bottom: 1px solid var(--clr-border); }
.details-table tr:last-child { border-bottom: none; }
.detail-key, .detail-val {
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  vertical-align: top;
}
.detail-key { color: var(--clr-text-muted); width: 45%; }
.detail-val { color: var(--clr-text); font-weight: 600; }

/* Sidebar CTA */
.sidebar-cta-card {
  background: linear-gradient(145deg, #1a1f2e, #131720);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--shadow-glow);
  text-align: center;
}
.sidebar-cta-title { font-size: var(--text-lg); margin-bottom: var(--sp-2); }
.sidebar-cta-card p { color: var(--clr-text-muted); font-size: var(--text-sm); margin-bottom: var(--sp-4); }
.sidebar-dl-btn { margin-bottom: var(--sp-4); }
.sidebar-trust-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.sidebar-trust-list li { font-size: var(--text-sm); color: var(--clr-green); }

/* Safety Card */
.safety-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.safety-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.safety-list strong { display: block; font-size: var(--text-sm); color: var(--clr-white); }
.safety-list span { font-size: var(--text-xs); color: var(--clr-text-muted); }

/* ─────────────────────────────────────────────
   19. EXIT INTENT POPUP
───────────────────────────────────────────── */
.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.exit-intent-overlay[aria-hidden="true"] { display: none; }

.exit-intent-modal {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 229, 255, 0.15);
  animation: bounce-in 0.5s ease both;
}
.exit-intent-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-fast);
}
.exit-intent-close:hover { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }

.exit-intent-icon { font-size: 3.5rem; margin-bottom: var(--sp-4); }
.exit-intent-title { font-size: var(--text-2xl); margin-bottom: var(--sp-3); }
.exit-intent-subtitle { color: var(--clr-text-muted); font-size: var(--text-sm); margin-bottom: var(--sp-5); }

.exit-intent-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.exit-email-input {
  width: 100%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--ease-fast);
}
.exit-email-input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.exit-submit-btn { width: 100%; padding: var(--sp-4); }

.exit-intent-privacy {
  font-size: var(--text-xs);
  color: var(--clr-text-faint);
}
.exit-intent-success {
  padding: var(--sp-4);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-md);
}
.success-icon { font-size: 2rem; display: block; margin-bottom: var(--sp-2); }
.exit-intent-success p { color: var(--clr-green); font-weight: 600; }

/* ─────────────────────────────────────────────
   20. STICKY MOBILE CTA
───────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-3) 0;
  transform: translateY(100%);
  transition: transform var(--ease-base);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
  min-width: 0;
}
.sticky-cta-icon { font-size: 1.5rem; flex-shrink: 0; }
.sticky-cta-label {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--clr-white);
}
.sticky-users-now {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--clr-green);
}
#sticky-download-count { font-weight: 700; }

/* ─────────────────────────────────────────────
   21. SITE FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-12) 0 var(--sp-8);
  margin-bottom: 72px; /* space for sticky CTA */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
}
.footer-tagline {
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.footer-badges { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.badge {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.badge-safe {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--clr-green);
}
.badge-fast {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--clr-accent);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

#footer-menu { display: flex; flex-direction: column; gap: var(--sp-2); }
#footer-menu li a {
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  transition: color var(--ease-fast);
}
#footer-menu li a:hover { color: var(--clr-accent); }

.footer-stats { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-stats li { display: flex; align-items: center; gap: var(--sp-3); }
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-accent);
  min-width: 70px;
}
.stat-label { font-size: var(--text-sm); color: var(--clr-text-muted); }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-copyright { font-size: var(--text-sm); color: var(--clr-text-muted); }
.footer-disclaimer { font-size: var(--text-xs); color: var(--clr-text-faint); }

/* ─────────────────────────────────────────────
   22. RESPONSIVE UTILITIES
───────────────────────────────────────────── */
@media (min-width: 640px) {
  .email-input-wrap { flex-direction: row; }
  .email-input { flex: 1; }
  .btn-email-submit { width: auto; flex-shrink: 0; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
