/* ============================================
   ZYTOONA GAMES - Premium Light Theme
   Arabic-First Game Studio Website
   ============================================ */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-tertiary: #f0f2f7;
  --bg-card: #ffffff;
  --bg-card-hover: #fafbff;
  --accent-primary: #6c3ce0;
  --accent-secondary: #8b5cf6;
  --accent-light: #ede9fe;
  --accent-glow: rgba(108, 60, 224, 0.12);
  --green: #16a34a;
  --gold: #f59e0b;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a68;
  --text-muted: #8888a4;
  --border: #e8e8f0;
  --border-hover: #d0d0e0;
  --gradient-hero: linear-gradient(135deg, #6c3ce0 0%, #3b82f6 50%, #06b6d4 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 40px rgba(108,60,224,0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-ar: 'Tajawal', 'Inter', sans-serif;
  --font-en: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ar);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

/* English pages override */
body.ltr { direction: ltr; font-family: var(--font-en); }

a { color: var(--accent-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-secondary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--text-primary); }
.nav-logo img { height: 42px; width: auto; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.95rem; font-weight: 600;
  transition: color var(--transition); position: relative;
}
.nav-links a:hover { color: var(--accent-primary); }
.nav-cta {
  background: var(--accent-primary) !important; color: white !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  transition: all var(--transition); box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover { background: #5b2fd0 !important; transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  [dir="rtl"] .nav-links { transform: translateX(-100%); }
  .nav-links.active { transform: translateX(0) !important; }
  .nav-links a { font-size: 1.1rem; padding: 16px 0; border-bottom: 1px solid var(--border); width: 100%; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f8f0ff 0%, #ffffff 60%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 30% 20%, rgba(108,60,224,0.06) 0%, transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(59,130,246,0.04) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: var(--accent-light); border: 1px solid rgba(108,60,224,0.15);
  color: var(--accent-primary); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900;
  line-height: 1.3; margin-bottom: 18px;
  color: var(--text-primary);
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 .highlight {
  background: var(--gradient-hero); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero Stats */
.hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stat {
  text-align: center; padding: 16px 24px;
  background: var(--bg-primary); border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  min-width: 120px;
}
.hero-stat .number {
  font-size: 2rem; font-weight: 900; color: var(--accent-primary);
  line-height: 1.2;
}
.hero-stat .label {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 2px;
  font-weight: 600;
}

/* Hero Store Buttons */
.hero-stores {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.store-badge {
  display: inline-block; transition: transform var(--transition);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { height: 52px; width: auto; border-radius: 8px; }

/* ============ FEATURED GAME ============ */
.featured-section {
  padding: 80px 0; background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.featured-card {
  background: linear-gradient(135deg, #6c3ce0, #4f46e5);
  border-radius: var(--radius-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 400px; position: relative;
  box-shadow: 0 20px 60px rgba(108,60,224,0.2);
}
.featured-content {
  padding: 48px; display: flex; flex-direction: column; justify-content: center;
  color: white;
}
.featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.featured-content h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; line-height: 1.3; }
.featured-content p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.featured-meta { display: flex; gap: 24px; margin-bottom: 28px; }
.featured-meta-item { text-align: center; }
.featured-meta-item .val { font-size: 1.5rem; font-weight: 900; }
.featured-meta-item .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.featured-stores { display: flex; gap: 12px; }
.featured-stores .store-badge img { height: 44px; }
.featured-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 40px; position: relative;
  background: rgba(255,255,255,0.05);
}
.featured-visual img {
  width: 200px; height: 200px; border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.featured-screenshots {
  position: absolute; bottom: 20px; right: 20px; left: 20px;
  display: flex; gap: 8px; justify-content: center;
}
.featured-screenshots img {
  height: 160px; width: auto; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-content { padding: 32px 24px; }
  .featured-visual { padding: 24px; min-height: 250px; }
  .featured-visual img { width: 140px; height: 140px; border-radius: 30px; }
}

/* ============ TRUST BANNER ============ */
.trust-section {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; text-align: center;
}
.trust-item .value {
  font-size: 2rem; font-weight: 900; color: var(--accent-primary);
}
.trust-item .desc { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* ============ SECTION STYLES ============ */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-primary); margin-bottom: 10px;
  background: var(--accent-light); padding: 4px 14px; border-radius: 50px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900;
  line-height: 1.3; margin-bottom: 12px;
}
.section-header p { color: var(--text-secondary); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

/* ============ GAMES GRID ============ */
.games-section { background: var(--bg-secondary); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); position: relative;
  box-shadow: var(--shadow-card);
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-secondary);
  box-shadow: var(--shadow-card-hover);
}
.game-card-image {
  position: relative; height: 180px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.game-card-image img {
  width: 100px; height: 100px; border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform var(--transition);
}
.game-card:hover .game-card-image img { transform: scale(1.08); }
.game-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent-primary); color: white;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
[dir="rtl"] .game-card-badge { left: auto; right: 12px; }

.game-card-content { padding: 20px 24px 24px; }
.game-card-content h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.game-card-content .subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; }
.game-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.game-card-meta .rating {
  display: flex; align-items: center; gap: 4px;
  color: var(--gold); font-weight: 700; font-size: 0.9rem;
}
.game-card-meta .downloads { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.game-card-stores { display: flex; gap: 8px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.8rem; font-weight: 600;
  transition: all var(--transition);
}
.store-btn:hover { background: var(--accent-light); color: var(--accent-primary); border-color: var(--accent-primary); }
.store-btn svg { width: 16px; height: 16px; }

/* ============ ABOUT SECTION ============ */
.about-section { background: var(--bg-primary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 18px; line-height: 1.3; }
.about-content p { color: var(--text-secondary); margin-bottom: 14px; font-size: 1.05rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feature {
  padding: 20px; border-radius: var(--radius-md);
  background: var(--bg-secondary); border: 1px solid var(--border);
  transition: all var(--transition);
}
.about-feature:hover { border-color: var(--accent-primary); box-shadow: 0 4px 16px var(--accent-glow); }
.about-feature .icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-features { grid-template-columns: 1fr; }
}

/* ============ AD ZONE ============ */
.ad-zone {
  padding: 16px 0; text-align: center;
  min-height: 100px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ad-zone-label {
  font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 8px; display: none;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 24px;
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo span { color: white; }
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.9); margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent-primary); color: white; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 120px 24px 80px; background: var(--bg-secondary); }
.legal-content {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-md);
}
.legal-content h1 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.legal-content .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 800; margin: 28px 0 10px; color: var(--accent-primary); }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; margin: 20px 0 8px; }
.legal-content p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { padding-right: 24px; margin-bottom: 16px; }
body.ltr .legal-content ul { padding-right: 0; padding-left: 24px; }
.legal-content li { color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.legal-content a { color: var(--accent-primary); text-decoration: underline; }

@media (max-width: 768px) { .legal-content { padding: 28px 20px; } }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 120px 24px 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; }
.contact-info h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 14px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-detail .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-light); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--accent-primary); font-size: 1.1rem;
}
.contact-detail .text { color: var(--text-secondary); font-size: 0.95rem; }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); font-family: inherit; font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-primary); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px; border: none; border-radius: var(--radius-sm);
  background: var(--accent-primary); color: white; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all var(--transition);
  font-family: inherit;
}
.form-submit:hover { background: #5b2fd0; }
.form-success { display: none; text-align: center; padding: 40px; color: var(--green); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ DATA DELETION PAGE ============ */
.deletion-page { padding: 120px 24px 80px; background: var(--bg-secondary); }
.deletion-content {
  max-width: 600px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-md); text-align: center;
}
.deletion-content h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: 14px; }
.deletion-content p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.deletion-content .form-group { text-align: right; }

/* ============ CAMPAIGN PAGE ============ */
.campaign-section { padding: 120px 24px 80px; text-align: center; }
.campaign-section h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 12px;
  color: var(--text-primary);
}
.campaign-section .subtitle { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 48px; }
.campaign-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.campaign-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: all var(--transition); box-shadow: var(--shadow-card);
}
.campaign-card:hover { transform: translateY(-4px); border-color: var(--accent-secondary); box-shadow: var(--shadow-card-hover); }
.campaign-card img { width: 72px; height: 72px; border-radius: 16px; margin: 0 auto 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.campaign-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.campaign-card .store-links { display: flex; justify-content: center; gap: 8px; }

/* ============ WORDSCRUSH LANDING ============ */
.wc-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f0e7ff 0%, #fff 60%);
}
.wc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.wc-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.3; margin-bottom: 14px; }
.wc-hero-content p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.wc-hero-image { text-align: center; }
.wc-hero-image img { max-width: 260px; margin: 0 auto; border-radius: 40px; box-shadow: 0 20px 60px rgba(108,60,224,0.2); }
.wc-modes { list-style: none; padding: 0; margin: 20px 0; }
.wc-modes li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; color: var(--text-secondary); font-size: 0.95rem;
}
.wc-modes li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 1.1rem; }

@media (max-width: 768px) {
  .wc-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .wc-hero-image { order: -1; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-primary); color: white; border: none;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 16px var(--accent-glow);
  transition: all var(--transition);
}
[dir="ltr"] .scroll-top { left: auto; right: 24px; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .hero-stat { min-width: 100px; padding: 12px 16px; }
  .hero-stat .number { font-size: 1.5rem; }
  section { padding: 60px 0; }
  .trust-grid { gap: 24px; }
  .trust-item .value { font-size: 1.5rem; }
}
