/* Vortexa Play — Marketing site */

:root {
  --bg-deep: #07051a;
  --bg-card: rgba(88, 45, 180, 0.12);
  --bg-card-border: rgba(139, 92, 246, 0.22);
  --purple-400: #a78bfa;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --gold: #facc15;
  --gold-dark: #eab308;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --white-card: #ffffff;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 80px rgba(124, 58, 237, 0.35);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* Background glow */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(168, 85, 247, 0.15), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(91, 33, 182, 0.12), transparent 55%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 5, 26, 0.75);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-brand .logo-img {
  height: 36px;
  max-width: 170px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: white;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary .bi,
.btn-outline .bi {
  font-size: 0.9em;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple-500);
  color: var(--purple-400);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.12);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-badges a img {
  height: 48px;
  width: auto;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.floating-coin,
.floating-gift {
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

.floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.floating-coin {
  width: 56px;
  height: 56px;
}

.floating-coin .bi {
  font-size: 1.5rem;
  color: var(--gold);
}

.floating-coin--1 {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}

.floating-coin--2 {
  top: 20%;
  right: 8%;
  animation-delay: 1.2s;
}

.floating-gift {
  bottom: 12%;
  left: 0;
  width: 72px;
  height: 72px;
  animation: float 5s ease-in-out infinite 0.6s;
}

.floating-gift .bi {
  font-size: 2rem;
  color: var(--purple-400);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Phone mockup */
.phone {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    var(--shadow-glow);
  border: 3px solid #2a2a3a;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  line-height: 0;
  background: #0f172a;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

.section-row h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.section-row p {
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--purple-400);
  font-weight: 600;
  font-size: 0.95rem;
}

.link-arrow .bi {
  font-size: 0.85em;
  transition: transform 0.2s;
}

.link-arrow:hover .bi {
  transform: translateX(3px);
}

.link-arrow:hover {
  color: var(--gold);
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.step-card:hover {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-4px);
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.step-icon-wrap--purple {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(109, 40, 217, 0.2));
  color: var(--purple-400);
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.step-icon-wrap--gold {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.25), rgba(234, 179, 8, 0.12));
  color: var(--gold);
  border: 1px solid rgba(250, 204, 21, 0.35);
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.game-card {
  background: var(--white-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.card-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  color: var(--purple-600);
}

.game-card h3 {
  color: var(--purple-700);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.stars .bi {
  font-size: 0.8rem;
}

/* Rewards */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.reward-card {
  background: var(--white-card);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.reward-card:hover {
  transform: translateY(-4px);
}

.reward-icon-wrap {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.reward-icon-wrap--slate {
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  color: #475569;
}

.reward-icon-wrap--amazon {
  background: linear-gradient(145deg, #fef3c7, #fde68a);
  color: #b45309;
}

.reward-icon-wrap--flipkart {
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.reward-icon-wrap--zomato {
  background: linear-gradient(145deg, #fee2e2, #fecaca);
  color: #dc2626;
}

.reward-card h3 {
  font-size: 0.85rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.coin-price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--purple-700);
  font-size: 0.9rem;
}

.coin-price .bi {
  color: var(--gold);
  font-size: 0.95em;
}

.rewards-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* About */
.about-section {
  padding-top: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-contact {
  margin: 1.5rem 0 1.25rem;
}

.about-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.about-contact .bi {
  color: var(--purple-400);
  flex-shrink: 0;
}

.about-contact a {
  color: var(--purple-400);
}

.about-contact a:hover {
  color: var(--gold);
}

.about-cta {
  margin-top: 0.5rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.about-card:hover {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-3px);
}

.about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(109, 40, 217, 0.2));
  color: var(--purple-400);
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.about-card-icon--gold {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.25), rgba(234, 179, 8, 0.12));
  color: var(--gold);
  border-color: rgba(250, 204, 21, 0.35);
}

.about-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* CTA banner */
.cta-banner {
  position: relative;
  z-index: 1;
  padding: 0 0 5rem;
}

.cta-inner {
  background: linear-gradient(135deg, var(--purple-600) 0%, #4c1d95 55%, #1e1b4b 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-glow);
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: #04030f;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}

.footer-contact {
  margin-bottom: 1.25rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact .bi {
  color: var(--purple-400);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact a {
  color: var(--purple-400);
}

.footer-contact a:hover {
  color: var(--gold);
}

.text-link {
  color: var(--purple-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link:hover {
  color: var(--gold);
}

/* Content / legal pages */
.page-main {
  position: relative;
  z-index: 1;
  padding: 3rem 0 5rem;
}

.page-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  backdrop-filter: blur(8px);
  max-width: 800px;
  margin: 0 auto;
}

.content-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  color: var(--purple-400);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.content-card p,
.content-card li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.content-card ul,
.content-card ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.content-card li {
  margin-bottom: 0.4rem;
}

.content-card .last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.info-box {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

.info-box p {
  margin-bottom: 0.5rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box strong {
  color: var(--text);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question .bi {
  color: var(--purple-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question .bi {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer a {
  color: var(--purple-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--gold);
}

.contact-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(8px);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(109, 40, 217, 0.2));
  color: var(--purple-400);
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.contact-info-card h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

.contact-info-card .text-link {
  font-size: 0.9rem;
  margin-top: 0.35rem;
  display: inline-block;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.contact-form h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-form-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(7, 5, 26, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #64748b;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-field select {
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.social {
  display: flex;
  gap: 0.75rem;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}

.social a:hover {
  background: var(--purple-600);
  color: white;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .steps,
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rewards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 5, 26, 0.98);
    padding: 1.5rem;
    border-bottom: 1px solid var(--bg-card-border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-visual {
    min-height: 360px;
  }

  .phone {
    width: 240px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .steps,
  .games-grid,
  .rewards-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
