/* =============================================
   SEFDEK — style.css
   Premium Mobile App Studio Design
   Font: Inter (Google Fonts)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Design Tokens ---- */
:root {
  --coral:    #ff6b6b;
  --teal:     #4ecdc4;
  --purple:   #cc5de8;
  --orange:   #ffa94d;
  --navy:     #050816;
  --gradient: linear-gradient(135deg, #ff6b6b 0%, #cc5de8 50%, #4ecdc4 100%);
  --gradient-b: linear-gradient(135deg, #4ecdc4 0%, #cc5de8 50%, #ff6b6b 100%);

  /* Light Theme */
  --bg:        #ffffff;
  --bg-2:      #f8fafc;
  --bg-3:      #f1f5f9;
  --surface:   #ffffff;
  --border:    #e2e8f0;
  --text:      #0f172a;
  --text-2:    #334155;
  --text-3:    #64748b;
  --text-4:    #94a3b8;
  --nav-bg:    rgba(255,255,255,0.88);

  --shadow-sm: 0 1px 4px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 20px rgba(15,23,42,0.08), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12), 0 4px 16px rgba(15,23,42,0.06);
  --shadow-xl: 0 32px 80px rgba(15,23,42,0.15);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --trans:     0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg:        #080c18;
  --bg-2:      #0d1226;
  --bg-3:      #121829;
  --surface:   #0f1629;
  --border:    #1e2a42;
  --text:      #f1f5f9;
  --text-2:    #cbd5e1;
  --text-3:    #94a3b8;
  --text-4:    #475569;
  --nav-bg:    rgba(8,12,24,0.90);

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);
  --shadow:    0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.6);
}

.theme-transition,
.theme-transition *,
.theme-transition *::before,
.theme-transition *::after {
  transition:
    background-color 0.35s ease,
    border-color     0.35s ease,
    color            0.35s ease,
    box-shadow       0.35s ease !important;
}

/* ---- Base ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { flex: 1; }
h1,h2,h3,h4,h5 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; color: var(--text); }

/* ---- Container ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Gradient Text ---- */
.g-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,107,107,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255,107,107,0.5);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(78,205,196,0.06);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.18);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.btn-sm { padding: 0.6rem 1.35rem; font-size: 0.85rem; }

/* ---- Eyebrow Badge ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  padding: 0.42rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.4); }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), border-color var(--trans);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo-img { height: 34px; width: auto; }
.nav-logo-img-clear {
  height: 34px; width: auto;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text-3);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--trans);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-controls { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: 0.05em;
  font-family: inherit;
}
.lang-btn.active { background: var(--gradient); color: #fff; }
.lang-btn:not(.active):hover { color: var(--text); }

.theme-toggle {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--trans);
  line-height: 1;
}
.theme-toggle:hover { background: var(--bg-3); transform: rotate(20deg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 40px; height: 40px;
  padding: 9px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   HERO — DARK IMMERSIVE
   ============================================= */
.hero {
  padding: 7.5rem 0 6.5rem;
  text-align: center;
  background: #050816;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -220px; right: -160px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(78,205,196,0.16) 0%, transparent 65%);
  pointer-events: none;
  animation: float-orb-a 9s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -160px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(255,107,107,0.13) 0%, transparent 65%);
  pointer-events: none;
  animation: float-orb-b 11s ease-in-out infinite;
}
.hero-orb-mid {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(204,93,232,0.07) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
  animation: float-orb-a 13s ease-in-out infinite reverse;
}
/* Subtle dot grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

@keyframes float-orb-a {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.04); }
}
@keyframes float-orb-b {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(24px) scale(1.03); }
}

.hero-logo {
  width: 100px; height: 100px;
  margin: 0 auto 2.25rem;
  position: relative; z-index: 1;
  filter:
    drop-shadow(0 0 40px rgba(78,205,196,0.55))
    drop-shadow(0 0 16px rgba(78,205,196,0.3));
  animation: logo-pulse 3.5s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(78,205,196,0.55)) drop-shadow(0 0 16px rgba(78,205,196,0.3)); }
  50% { filter: drop-shadow(0 0 56px rgba(78,205,196,0.75)) drop-shadow(0 0 24px rgba(255,107,107,0.3)); }
}

.hero-eyebrow { position: relative; z-index: 1; margin-bottom: 1.75rem; }
.hero-h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-bottom: 1.6rem;
  position: relative; z-index: 1;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.50);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.82;
  position: relative; z-index: 1;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Divider between hero and sections */
.hero-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  position: relative; z-index: 1;
  margin-top: 5rem;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--bg-2); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-3); font-size: 1.08rem; max-width: 520px; margin: 0 auto; line-height: 1.82; }

/* =============================================
   FEATURE CARDS
   ============================================= */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--trans);
  border-radius: inherit;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::after { opacity: 0.04; }

.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 6px 22px rgba(255,107,107,0.24);
  position: relative; z-index: 1;
}
.feature-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.02em; position: relative; z-index: 1; }
.feature-card p  { color: var(--text-3); font-size: 0.92rem; line-height: 1.76; position: relative; z-index: 1; }

/* =============================================
   STATS
   ============================================= */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-4); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================
   APP CARDS
   ============================================= */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.game-card-thumb {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  background: linear-gradient(135deg, #050816 0%, #0d1b3e 100%);
}
.game-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.game-genre-tag {
  display: inline-flex; align-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.22rem 0.85rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.game-card-body h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.025em; }
.game-card-body p  { color: var(--text-3); font-size: 0.9rem; flex: 1; margin-bottom: 1.5rem; line-height: 1.72; }
.game-card-actions { display: flex; flex-direction: column; gap: 0.6rem; }

.btn-play {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gradient);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,107,107,0.3);
  transition: all var(--trans);
}
.btn-play:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,107,0.42); }

.btn-privacy-link {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--bg-2);
  color: var(--text-2);
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--trans);
}
.btn-privacy-link:hover { border-color: var(--teal); color: var(--teal); background: rgba(78,205,196,0.05); }

.game-card-coming {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  min-height: 340px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem; gap: 0.75rem;
  transition: border-color var(--trans), background var(--trans);
}
.game-card-coming:hover {
  border-color: rgba(78,205,196,0.4);
  background: rgba(78,205,196,0.03);
}
.coming-icon { font-size: 2.5rem; opacity: 0.18; }
.game-card-coming h3 { font-size: 0.85rem; color: var(--text-4); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.game-card-coming p  { font-size: 0.8rem; color: var(--text-4); }

.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.filter-btn {
  padding: 0.52rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-3);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  font-family: inherit;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(255,107,107,0.25);
}

/* =============================================
   GAME FULL CARD (apps page)
   ============================================= */
.game-full-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.game-full-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.game-full-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #050816 0%, #0d1b3e 100%);
  min-height: 290px;
}
.game-full-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.game-full-body h2 { font-size: 1.7rem; font-weight: 900; letter-spacing: -0.04em; margin: 0.75rem 0 0.9rem; }
.game-full-body > p { color: var(--text-3); line-height: 1.8; margin-bottom: 1.6rem; font-size: 0.97rem; }
.feature-bullets { list-style: none; margin: 0 0 1.85rem; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-bullets li { color: var(--text-3); font-size: 0.9rem; display: flex; gap: 0.55rem; align-items: flex-start; }
.feature-bullets li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.game-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, #050816 0%, #0e1a3f 45%, #1a0430 100%);
  padding: 6.5rem 0;
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; right: -8%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(78,205,196,0.18) 0%, transparent 68%);
  pointer-events: none; border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -40%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,107,0.14) 0%, transparent 68%);
  pointer-events: none; border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.045em;
  color: #fff;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.55);
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.75;
  position: relative; z-index: 1;
}
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* =============================================
   PAGE HEADER — DARK
   ============================================= */
.page-header {
  background: linear-gradient(135deg, #050816 0%, #0d1b3e 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,205,196,0.12) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.page-header::after {
  content: '';
  position: absolute; bottom: -60%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,107,0.08) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.048em;
  margin-bottom: 1rem;
  color: #fff;
  position: relative; z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.78;
  position: relative; z-index: 1;
}

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-body { padding: 4.5rem 0 7rem; }
.policy-body .inner { max-width: 780px; margin: 0 auto; }

.last-updated {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 0.38rem 1rem; border-radius: 100px;
  font-size: 0.78rem; color: var(--text-3); font-weight: 500;
  margin-bottom: 2rem;
}
.policy-highlight,
.highlight-box {
  background: linear-gradient(135deg, rgba(78,205,196,0.06) 0%, rgba(255,107,107,0.04) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.policy-highlight p,
.highlight-box p { margin: 0; font-size: 0.96rem; color: var(--text-2); line-height: 1.88; }

.policy-body h2 { font-size: 1.1rem; font-weight: 700; margin: 3.5rem 0 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border); letter-spacing: -0.015em; }
.policy-body h3 { font-size: 0.96rem; font-weight: 600; margin: 2rem 0 0.6rem; color: var(--text-2); }
.policy-body p  { color: var(--text-2); margin-bottom: 1.1rem; line-height: 1.92; font-size: 0.97rem; }
.policy-body ul { list-style: none; margin: 0.75rem 0 1.5rem 0; }
.policy-body ul li {
  color: var(--text-2); margin-bottom: 0.6rem; line-height: 1.78;
  font-size: 0.95rem; padding-left: 1.35rem; position: relative;
}
.policy-body ul li::before { content: '–'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.policy-body a { color: var(--teal); font-weight: 500; text-underline-offset: 3px; }
.policy-body a:hover { text-decoration: underline; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; }

.about-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #050816 0%, #0d1b3e 100%);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.about-visual::before {
  content: '';
  position: absolute; top: -30%; right: -30%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(78,205,196,0.16) 0%, transparent 68%);
}
.about-visual::after {
  content: '';
  position: absolute; bottom: -30%; left: -30%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 68%);
}
.about-visual-logo {
  width: 55%;
  filter: drop-shadow(0 16px 50px rgba(78,205,196,0.45)) drop-shadow(0 4px 18px rgba(255,107,107,0.2));
  position: relative; z-index: 1;
}
.about-text h2 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); font-weight: 900; margin-bottom: 1.4rem; letter-spacing: -0.038em; }
.about-text p  { color: var(--text-3); margin-bottom: 1.2rem; line-height: 1.88; font-size: 0.98rem; }

.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tech-tag {
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-2); padding: 0.42rem 1.05rem;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  transition: all var(--trans);
}
.tech-tag:hover { background: var(--gradient); color: #fff; border-color: transparent; }

.value-list { list-style: none; margin: 0; }
.value-list li { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--border); }
.value-list li:last-child { border: none; }
.value-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gradient); flex-shrink: 0; margin-top: 0.5rem;
  box-shadow: 0 2px 10px rgba(255,107,107,0.4);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.support-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(78,205,196,0.3); }
.support-card h3  { font-size: 0.96rem; font-weight: 700; margin-bottom: 0.65rem; }
.support-card p   { color: var(--text-3); font-size: 0.91rem; line-height: 1.75; margin-bottom: 0.85rem; }
.support-card ul  { list-style: none; margin: 0; }
.support-card ul li { color: var(--text-3); font-size: 0.88rem; padding: 0.28rem 0 0.28rem 1.1rem; position: relative; }
.support-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.email-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gradient); color: #fff;
  padding: 0.65rem 1.5rem; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--trans);
  box-shadow: 0 4px 20px rgba(255,107,107,0.32);
}
.email-pill:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,107,0.48); }

.faq-section h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 1.4rem; letter-spacing: -0.025em; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.65rem;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(78,205,196,0.3); }
.faq-q {
  padding: 1.1rem 1.4rem;
  font-weight: 600; color: var(--text);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.93rem; user-select: none;
  transition: color var(--trans);
}
.faq-arrow { font-size: 0.7rem; color: var(--text-4); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-a { padding: 0 1.4rem 1.1rem; color: var(--text-3); font-size: 0.91rem; line-height: 1.82; display: none; }
.faq-item.open .faq-a    { display: block; }
.faq-item.open .faq-arrow{ transform: rotate(180deg); }
.faq-item.open .faq-q    { color: var(--teal); }
.faq-item.open { border-color: var(--teal); box-shadow: 0 4px 16px rgba(78,205,196,0.1); }

/* =============================================
   FOOTER — DARK
   ============================================= */
.footer {
  background: #050816;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5.5rem 0 0;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: -40%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(78,205,196,0.04) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 1.2rem; }
.footer-brand-text { color: rgba(255,255,255,0.32); font-size: 0.9rem; line-height: 1.82; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.42); font-size: 0.9rem; transition: color var(--trans); }
.footer-col ul a:hover { color: rgba(255,255,255,0.88); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  position: relative; z-index: 1;
}
.footer-bottom p { color: rgba(255,255,255,0.18); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.18); font-size: 0.82rem; transition: color var(--trans); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1), transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.anim-fade { opacity: 0; transition: opacity 0.72s ease; }
.anim-up.is-visible, .anim-fade.is-visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .game-full-card { grid-template-columns: 1fr; }
  .game-full-thumb { min-height: 240px; }
  .game-full-body  { padding: 2rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 69px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 0; z-index: 299;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border: none; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero    { padding: 5.5rem 0 5rem; }
  .section { padding: 4.5rem 0; }
  .stats-row  { grid-template-columns: repeat(3,1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-cta  { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
}
