/* ═══════════════════════════════════════════════════════════════
   DASHAGRAMS MARKETING WEBSITE — styles.css
   Colors: sky blue / grass green / track red / tile cream
═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --blue-deep:   #0C3F7A;
  --blue-mid:    #1A65B0;
  --blue-light:  #3A8FD8;
  --blue-sky:    #4AAEE0;

  --green:       #2EAA1A;
  --green-dark:  #1E8A10;

  --track:       #A84E4E;
  --track-dark:  #8A3636;

  --tile-bg:     #E8D5A8;
  --tile-border: #9A7040;
  --tile-dark:   #B89050;

  --white:       #FFFFFF;
  --off-white:   #F8F5EE;
  --cream:       #FDF7EC;

  --text-dark:   #1A1A2E;
  --text-mid:    #3D3A52;
  --text-soft:   #7070A0;

  --orange:      #FF9900;
  --orange-dark: #CC7700;

  --section-py:     5rem;
  --container-max:  1200px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      28px;

  --shadow-sm:  0 2px 8px  rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Typography helpers ─────────────────────────────────────── */
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.section-title-light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.75rem;
  line-height: 1.6;
}
.section-sub-light { color: rgba(255,255,255,0.85); }

/* ── Layout utility ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover  { transform: translateY(-2px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn-lg     { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

.btn-amazon {
  background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
  color: #1A0A00;
  box-shadow: 0 4px 18px rgba(255,140,0,0.45);
}
.btn-amazon:hover { box-shadow: 0 6px 24px rgba(255,140,0,0.55); }

.btn-appstore {
  background: linear-gradient(135deg, #1C1C1E 0%, #3A3A3C 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.32);
}
.btn-appstore:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.44); }

.btn-nav-cta {
  background: var(--orange);
  color: #1A0A00;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.18s, filter 0.18s;
}
.btn-nav-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* ── Letter Tiles ───────────────────────────────────────────── */
.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #EDD8A8 0%, #CFAF78 55%, #B89050 100%);
  border: 2px solid var(--tile-border);
  border-radius: 7px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: #1A0E00;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.32),
    inset 0 -2px 0 rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.26);
  user-select: none;
  flex-shrink: 0;
}
.tile-sm { width: 36px; height: 36px; font-size: 1.25rem; }
.tile-md { width: 48px; height: 48px; font-size: 1.6rem; }

.tile-sep {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--text-soft);
  font-size: 1.4rem;
  font-family: 'Nunito', sans-serif;
  width: 24px;
}
.tile-arrow {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 800;
  padding: 0 2px;
}
.tile-orange {
  background: linear-gradient(145deg, #FFE08A 0%, #FFAA22 100%);
  border-color: #CC7700;
  color: #5A2800;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12, 63, 122, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 52, 102, 0.99);
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  gap: 1rem;
}

.nav-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.65rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: min(290px, 82vw);
    background: var(--blue-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.75rem;
    transition: right 0.32s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; }
}

/* ── Combined Hero + Video Top Section ─────────────────────── */
.hero-top {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-top-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  width: 100%;
}

/* Videos column */
.ht-videos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ht-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Brand / logo column */
.ht-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.brand-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.brand-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.brand-actions .btn {
  width: 100%;
  justify-content: center;
}

.brand-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.highlight {
  background: rgba(26,101,176,0.09);
  color: var(--blue-mid);
  padding: 0.32rem 0.72rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Responsive */
@media (max-width: 940px) {
  .hero-top-inner {
    grid-template-columns: 1fr;
  }
  /* Logo card above videos on mobile */
  .ht-brand { order: -1; }
  .brand-card { max-width: 480px; }
}
@media (max-width: 540px) {
  .ht-thumbs { grid-template-columns: 1fr 1fr; }
}


/* Background: sky sunburst */
.hero-sky {
  position: absolute;
  inset: 0;
  bottom: 40%;
  background: conic-gradient(
    from 0deg at 50% 80%,
    #0C3F7A 0deg,  #2068B8 5deg,
    #0C3F7A 10deg, #2068B8 15deg,
    #0C3F7A 20deg, #2068B8 25deg,
    #0C3F7A 30deg, #2068B8 35deg,
    #0C3F7A 40deg, #2068B8 45deg,
    #0C3F7A 50deg, #2068B8 55deg,
    #0C3F7A 60deg, #2068B8 65deg,
    #0C3F7A 70deg, #2068B8 75deg,
    #0C3F7A 80deg, #2068B8 85deg,
    #0C3F7A 90deg, #2068B8 95deg,
    #0C3F7A 100deg,#2068B8 105deg,
    #0C3F7A 110deg,#2068B8 115deg,
    #0C3F7A 120deg,#2068B8 125deg,
    #0C3F7A 130deg,#2068B8 135deg,
    #0C3F7A 140deg,#2068B8 145deg,
    #0C3F7A 150deg,#2068B8 155deg,
    #0C3F7A 160deg,#2068B8 165deg,
    #0C3F7A 170deg,#2068B8 175deg,
    #0C3F7A 180deg,#2068B8 185deg,
    #0C3F7A 190deg,#2068B8 195deg,
    #0C3F7A 200deg,#2068B8 205deg,
    #0C3F7A 210deg,#2068B8 215deg,
    #0C3F7A 220deg,#2068B8 225deg,
    #0C3F7A 230deg,#2068B8 235deg,
    #0C3F7A 240deg,#2068B8 245deg,
    #0C3F7A 250deg,#2068B8 255deg,
    #0C3F7A 260deg,#2068B8 265deg,
    #0C3F7A 270deg,#2068B8 275deg,
    #0C3F7A 280deg,#2068B8 285deg,
    #0C3F7A 290deg,#2068B8 295deg,
    #0C3F7A 300deg,#2068B8 305deg,
    #0C3F7A 310deg,#2068B8 315deg,
    #0C3F7A 320deg,#2068B8 325deg,
    #0C3F7A 330deg,#2068B8 335deg,
    #0C3F7A 340deg,#2068B8 345deg,
    #0C3F7A 350deg,#2068B8 355deg,
    #0C3F7A 360deg
  );
}
/* Brighten sky toward center */
.hero-sky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(90,174,224,0.45) 0%, transparent 70%);
}

/* Background: grass band */
.hero-grass {
  position: absolute;
  left: 0; right: 0;
  top: 60%; height: 10%;
  background: linear-gradient(to bottom, #32B824, var(--green-dark));
}

/* Background: track with lane lines */
.hero-track {
  position: absolute;
  left: 0; right: 0;
  top: 70%; bottom: 0;
  background: var(--track);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0%,
    transparent 18%,
    rgba(255,255,255,0.3) 18%,
    rgba(255,255,255,0.3) 21%
  );
}

/* (hero-content, hero-logo-img, hero-actions removed — superseded by hero-top layout) */

/* Floating decorative tiles */
.float-tiles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-tile {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #EDD8A8, #CFAF78, #B89050);
  border: 2px solid var(--tile-border);
  border-radius: 6px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.55rem;
  color: #1A0E00;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.28), 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0.75;
  animation: floatTile var(--d, 2.6s) ease-in-out infinite alternate;
}
@keyframes floatTile {
  from { transform: translateY(0)   rotate(-5deg); }
  to   { transform: translateY(-16px) rotate(5deg); }
}

/* (video-section and videos-layout removed — videos now live inside .hero-top) */

.video-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0C2040;
  box-shadow: var(--shadow-lg);
}
.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* Video placeholder (before clicking play) */
.video-placeholder {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.video-placeholder:hover .vp-play { transform: scale(1.1); }

.vp-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
}
.vp-bg img { width: 75%; opacity: 0.28; }
.vp-bg-blue  { background: linear-gradient(135deg, #0C3F7A, #2A80CC); font-size: 4rem; color: rgba(255,255,255,0.25); }
.vp-bg-green { background: linear-gradient(135deg, #155A0A, #2EAA1A); font-size: 4rem; color: rgba(255,255,255,0.25); }

.vp-play {
  position: relative;
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--blue-mid);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, background 0.2s;
}
.vp-play i { margin-left: 4px; }
.vp-play:hover { background: #fff; }

.vp-label {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.7rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* (video-sidebar removed — replaced by .ht-thumbs grid) */

/* ── About Section ──────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

.tiles-row {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.about-text p { color: var(--text-mid); margin-bottom: 0.8rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-deep) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: 'Fredoka One', cursive;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── How to Play ────────────────────────────────────────────── */
.how-to-play {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}
/* Dashed top and bottom border (racing track aesthetic) */
.how-to-play::before,
.how-to-play::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px, var(--green) 36px,
    transparent 36px, transparent 50px
  );
}
.how-to-play::before { top: 0; }
.how-to-play::after  { bottom: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem 1.4rem;
  text-align: center;
  color: #fff;
  position: relative;
  transition: transform 0.25s ease, background 0.25s;
}
.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.16);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  background: var(--orange);
  color: #1A0800;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.step-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  margin-top: 0.4rem;
}
.step-icon img { max-height: 78px; width: auto; margin: 0 auto; }
.step-icon-tiles { flex-wrap: wrap; }

.step-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.step-card p { font-size: 0.9rem; opacity: 0.9; line-height: 1.5; }

.done-badge {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem;
  color: var(--orange);
  background: rgba(255,153,0,0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,153,0,0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,153,0,0); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(255,153,0,0.15); }
}

.word-rules {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  color: #fff;
}
.word-rules h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  text-align: center;
}
.word-rules ul { display: flex; flex-direction: column; gap: 0.65rem; }
.word-rules li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; line-height: 1.45; }
.word-rules li i { color: var(--green); font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }

/* ── What's Included ────────────────────────────────────────── */
.whats-included {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.included-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 820px) {
  .included-layout { grid-template-columns: 1fr; }
  .included-photo img { max-width: 320px; margin: 0 auto; }
}

.included-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.included-list { display: flex; flex-direction: column; gap: 1.75rem; }

.included-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.included-icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--blue-mid);
  background: rgba(26,101,176,0.1);
  border-radius: var(--radius-sm);
}
.included-item h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.included-item p { color: var(--text-mid); font-size: 0.95rem; }

/* ── Game Variations ────────────────────────────────────────── */
.variations {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

.variations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 820px) { .variations-grid { grid-template-columns: repeat(2, 1fr); } }

.var-card {
  border-radius: var(--radius-md);
  padding: 1.6rem 1.1rem;
  text-align: center;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  transition: transform 0.25s ease;
}
.var-card:hover { transform: translateY(-5px); }

.var-easy   { background: rgba(255,255,255,0.14); }
.var-medium { background: rgba(255,210,0,0.20);  border-color: rgba(255,210,0,0.4); }
.var-hard   { background: rgba(255,110,0,0.20);  border-color: rgba(255,110,0,0.4); }
.var-expert { background: rgba(220,20,20,0.22);  border-color: rgba(220,20,20,0.45); }

.var-count {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.var-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.2rem; margin-bottom: 0.5rem; }
.var-card p  { font-size: 0.85rem; opacity: 0.9; line-height: 1.45; }

.solo-callout {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  color: #fff;
  max-width: 620px;
  margin: 0 auto;
}
.solo-callout i { font-size: 1.8rem; flex-shrink: 0; }
.solo-callout p { font-size: 0.9rem; opacity: 0.88; margin-top: 0.2rem; }
.solo-callout strong { font-size: 1.05rem; }

/* ── Get It ─────────────────────────────────────────────────── */
.get-it {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--track-dark) 0%, var(--track) 100%);
  position: relative;
  overflow: hidden;
}
/* Track lane decoration */
.get-it::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0%,
    transparent 17%,
    rgba(255,255,255,0.07) 17%,
    rgba(255,255,255,0.07) 21%
  );
  pointer-events: none;
}

.get-it-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 620px) { .get-it-grid { grid-template-columns: 1fr; } }

.get-it-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: transform 0.25s ease;
}
.get-it-card:hover { transform: translateY(-5px); }

.get-it-icon { font-size: 3.2rem; margin-bottom: 0.9rem; opacity: 0.9; }
.get-it-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}
.get-it-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 1.6rem;
  flex: 1;
}

/* ── Social ─────────────────────────────────────────────────── */
.social {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #081828 0%, var(--blue-deep) 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 680px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.25s ease, filter 0.25s;
}
.social-card i { font-size: 2.1rem; }
.social-card:hover { transform: translateY(-5px); filter: brightness(1.12); }

.social-x  { background: linear-gradient(135deg, #14171A, #2C3136); }
.social-fb { background: linear-gradient(135deg, #1877F2, #0C59C8); }
.social-ig { background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%); }
.social-tt { background: linear-gradient(135deg, #1C1C1C, #363636); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #050E1C;
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links { justify-content: center !important; }
  .footer-social { justify-content: center !important; }
}

.footer-logo-text {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.footer-tagline { font-style: italic; font-size: 0.82rem; opacity: 0.6; }

.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); color: #fff; }

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-py: 3.5rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .tiles-row .tile { width: 36px; height: 36px; font-size: 1.25rem; }

  .word-rules { padding: 1.5rem 1.2rem; }

  .solo-callout { flex-direction: column; text-align: center; }
}
