/* =====================================================
   POCKETSPLAY - MAIN STYLESHEET
   Matching design from readdy.cc reference
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --bg-light: #f8f7fa;
  --text-dark: #1a1a2e;
  --text-muted: #64748b;
  --white: #ffffff;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.06);
  --card-hover-shadow: 0 8px 30px rgba(139,92,246,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.gradient-text2 {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.gradient-text3 {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.section-badge {
  display: inline-block;
  background: rgba(139,92,246,0.08);
  color: var(--purple-600);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header-center { text-align: center; margin-bottom: 3rem; }
.title-line {
  width: 3rem; height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-700));
  border-radius: 99px;
  margin: 1.25rem 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.45);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-dark);
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(26,26,46,0.2);
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--purple-500); color: var(--purple-600); }
.link-arrow {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow:hover { gap: 0.75rem; color: var(--purple-600); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,247,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,92,246,0.08);
  height: 72px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}
.logo-play { font-family: 'Pacifico', cursive; font-size: 1.1rem; }
.nav-links {
  display: flex; list-style: none; gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(139,92,246,0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,92,246,0.45); }
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.25rem; color: var(--text-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.blob1 {
  width: 500px; height: 500px;
  background: rgba(139,92,246,0.12);
  top: -100px; right: -100px;
}
.blob2 {
  width: 350px; height: 350px;
  background: rgba(139,92,246,0.08);
  bottom: 80px; left: -80px;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(139,92,246,0.08);
  color: var(--purple-600);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 520px;
}
.phone-mockup {
  width: 220px; height: 420px;
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
  border-radius: 44px;
  border: 8px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 80px rgba(109,40,217,0.35), 0 0 0 1px rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  animation: float 3s ease-in-out infinite;
  position: relative; z-index: 2;
}
.phone-screen {
  width: 180px; height: 360px;
  background: rgba(255,255,255,0.12);
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
}
.phone-inner { width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.game-chip {
  position: absolute; z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 0.65rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}
.chip-left { left: 0; top: 25%; animation-delay: 0.5s; }
.chip-right { right: 0; bottom: 30%; animation-delay: 1s; }
.chip-icon { width: 28px; height: 28px; border-radius: 8px; display: block; }
.chip-title { font-weight: 700; font-size: 0.8rem; color: var(--text-dark); }
.chip-sub { font-size: 0.7rem; color: var(--text-muted); }
.float-orb {
  position: absolute; border-radius: 50%;
  filter: blur(1px);
  animation: float 4s ease-in-out infinite;
}
.orb1 {
  width: 40px; height: 40px;
  background: var(--purple-400, #a78bfa);
  top: 15%; right: 10%;
  animation-delay: 0.3s;
  opacity: 0.7;
}
.orb2 {
  width: 20px; height: 20px;
  background: #c4b5fd;
  bottom: 20%; left: 5%;
  animation-delay: 1.2s;
  opacity: 0.6;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── TICKER ── */
.ticker-wrap {
  position: relative;
  z-index: 10;
  background: var(--text-dark);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 2.5rem;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ticker-track .dot { color: var(--purple-500); font-size: 1rem; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-section { padding: 7rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-image-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: 24px;
  object-fit: cover; height: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: #fff;
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-year { font-size: 2rem; font-weight: 900; color: var(--text-dark); }
.about-badge-title { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.about-badge-sub { color: var(--text-muted); font-size: 0.78rem; }

/* ── GENRES ── */
.genres-section { padding: 5rem 0; background: #fff; }
.genres-list { display: flex; flex-direction: column; gap: 0; }
.genre-item {
  display: flex; align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid #f1f1f4;
  cursor: default;
  transition: background 0.2s;
}
.genre-item:last-child { border-bottom: 1px solid #f1f1f4; }
.genre-item:hover .genre-name { color: var(--purple-600); }
.genre-num {
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted);
  width: 3rem; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.genre-name { flex: 1; font-size: 1.35rem; font-weight: 700; color: var(--text-dark); transition: color 0.2s; }
.genre-icon { color: var(--text-muted); font-size: 1rem; }

/* ── GAMES ── */
.games-section { padding: 7rem 0; }
.filter-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(26,26,46,0.12);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff; border-color: transparent;
}
.games-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2rem;
}
.game-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(139,92,246,0.15); }
.game-card.hidden { display: none; }
.game-card-img { position: relative; height: 320px; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  padding: 2rem 1.25rem 1rem;
}
.game-tag { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; }
.game-card-info {
  padding: 1rem 1.25rem;
  background: #fff;
  font-weight: 700; font-size: 1rem;
}
.view-all-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(139,92,246,0.1);
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}
.view-all-bar:hover { border-color: var(--purple-500); }
.view-all-bar i { color: var(--purple-600); }

/* ── FEATURED ── */
.featured-section { padding: 7rem 0; background: #fff; }
.feat-tabs {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 3rem;
}
.feat-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(26,26,46,0.12);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.feat-tab.active {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff; border-color: transparent;
}
.feat-content { display: none; }
.feat-content.active { display: block; }
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.feat-cat { font-size: 0.75rem; font-weight: 700; color: var(--purple-600); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.feat-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--text-dark); margin-bottom: 0.25rem; }
.feat-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.feat-line { width: 2.5rem; height: 3px; background: linear-gradient(90deg, var(--purple-500), var(--purple-700)); border-radius: 99px; margin: 1rem 0; }
.feat-desc { color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; font-size: 0.95rem; }
.feat-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.feat-feature { display: flex; gap: 0.75rem; align-items: flex-start; }
.feat-feat-num {
  font-size: 0.75rem; font-weight: 700; color: var(--purple-600);
  background: rgba(139,92,246,0.08);
  border-radius: 6px; padding: 0.2rem 0.5rem;
  flex-shrink: 0; margin-top: 0.1rem;
}
.feat-feat-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.feat-feat-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.feat-phone {
  position: relative;
  background: #f3f4f6;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
}
.feat-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.feat-phone-badge {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── TECH STACK ── */
.tech-section { padding: 7rem 0; }
.tech-header { max-width: 480px; margin-bottom: 3rem; }
.tech-desc { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }
.tech-list { display: flex; flex-direction: column; }
.tech-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0;
  border-top: 1px solid #f1f1f4;
  transition: background 0.2s;
}
.tech-item:last-child { border-bottom: 1px solid #f1f1f4; }
.tech-left { display: flex; align-items: center; gap: 1rem; }
.tech-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.tech-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.tech-cat { font-size: 0.8rem; color: var(--text-muted); }
.tech-plus { color: var(--text-muted); font-size: 0.9rem; }

/* ── TEAM ── */
.team-section { padding: 7rem 0; background: var(--bg-light); }
.team-subhead { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1rem;
}
.team-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.35rem; }
.team-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── MISSION ── */
.mission-section { padding: 7rem 0; background: #fff; }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.mission-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.mission-desc { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; margin-bottom: 1.5rem; }
.mission-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mission-tag {
  background: rgba(139,92,246,0.07);
  border: 1px solid rgba(139,92,246,0.15);
  color: var(--purple-700);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem; font-weight: 600;
}
.mission-right { display: flex; flex-direction: column; gap: 1.25rem; }
.mission-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s;
}
.mission-card:hover { box-shadow: var(--card-hover-shadow); }
.mission-icon-wrap {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.mission-card-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.mission-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── DIFFERENT ── */
.diff-section { padding: 7rem 0; }
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diff-card {
  background: #fff;
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.diff-icon {
  width: 52px; height: 52px;
  background: rgba(139,92,246,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--purple-600);
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s;
}
.diff-card:hover .diff-icon { background: linear-gradient(135deg, var(--purple-500), var(--purple-700)); color: #fff; }
.diff-title { font-weight: 800; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.diff-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── COMMUNITY ── */
.community-section { padding: 7rem 0; background: #fff; }
.community-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.community-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.community-card {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.community-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.community-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  margin: 0 auto 1rem;
}
.community-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.35rem; }
.community-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-section { padding: 7rem 0; }
.contact-list { display: flex; flex-direction: column; max-width: 700px; margin: 0 auto; }
.contact-item {
  border-top: 1px solid #f1f1f4;
  cursor: pointer; overflow: hidden;
}
.contact-item:last-child { border-bottom: 1px solid #f1f1f4; }
.contact-row {
  display: flex; align-items: center;
  padding: 1.5rem 0; gap: 1rem;
}
.contact-num { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; width: 2.5rem; }
.contact-label { flex: 1; font-weight: 700; font-size: 1.2rem; color: var(--text-dark); }
.contact-toggle {
  color: var(--text-muted);
  transition: transform 0.3s;
  font-size: 0.9rem;
}
.contact-item.open .contact-toggle { transform: rotate(45deg); color: var(--purple-600); }
.contact-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 0;
}
.contact-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.contact-item.open .contact-body {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 50%, #5b21b6 100%);
  padding: 5rem 0 3rem;
}
.footer-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.footer-ready-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer-desc { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.footer-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-footer-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  color: var(--purple-700);
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-footer-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-footer-secondary {
  display: inline-flex; align-items: center;
  background: transparent;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-footer-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.footer-bottom {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.footer-logo { font-weight: 800; font-size: 1rem; color: #fff; }
.footer-logo span { font-family: 'Pacifico', cursive; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(248,247,250,0.98);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(139,92,246,0.1);
  }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-features { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge-float { position: static; margin-top: 1.5rem; display: inline-block; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.25rem; }
  .footer-title { font-size: 3rem; }
}
