:root {
  --font-heading: 'Varela Round', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --color-canvas: #f8f9fa;
  --color-card-bg: #ffffff;
  --color-text-primary: #18181b;
  --color-text-secondary: #52525b;
  --color-text-muted: #71717a;
  --color-accent-green: #16a34a;
  --color-accent-green-light: rgba(22, 163, 74, 0.08);
  --color-accent-orange: #ea580c;
  --color-accent-orange-light: rgba(234, 88, 12, 0.08);
  --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
  --border-subtle-hover: 1px solid rgba(0, 0, 0, 0.16);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 16px 32px -8px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --shadow-device: 0 25px 60px -15px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
}

body.landing-page {
  position: relative;
  background-color: var(--color-canvas);
  background-image: radial-gradient(circle at 50% 0%, #ffffff 0%, #f8f9fa 85%);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.landing-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background-image: url('/img/bg.gif');
  background-repeat: repeat-x;
  background-position: top center;
  mix-blend-mode: multiply;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 400px, rgba(0, 0, 0, 0) 850px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 400px, rgba(0, 0, 0, 0) 850px);
}

body.landing-page > header,
body.landing-page > .landing-container,
body.landing-page > #content,
body.landing-page > .site-footer {
  position: relative;
  z-index: 1;
}

body.landing-page header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

body.landing-page header h1 img {
  height: 38px;
  transition: opacity 0.2s;
  position: relative;
  top: 4px;
}
body.landing-page header h1 img:hover {
  opacity: 0.85;
}

body.landing-page header h2 {
  margin: 0 0 0 12px;
  padding: 0;
}

body.landing-page header h2 .inner {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border-left: 1.5px solid rgba(0, 0, 0, 0.15);
  padding-left: 14px;
}

body.landing-page nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  transition: all 0.2s ease;
}

body.landing-page nav a:hover {
  color: var(--color-text-primary);
  background: rgba(0, 0, 0, 0.05);
}

body.landing-page nav a.selected {
  background: #000;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

body.landing-page nav a.selected:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}

body.landing-page #menu-button {
  display: none;
}

.landing-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.landing-container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.hero-section {
  padding: 48px 0 28px;
  text-align: center;
}

.hero-logo-wrap {
  margin: 0 auto 20px;
  text-align: center;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 auto 18px;
  max-width: 880px;
  letter-spacing: -0.02em;
}

.hero-title .title-accent {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-cta-group .store-badge-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 13px;
  overflow: hidden;
}

.hero-cta-group .store-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.hero-cta-group .store-badge-btn img {
  display: block;
  height: 52px;
  width: auto;
}

.hero-cta-group .btn-secondary-try {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.hero-cta-group .btn-secondary-try:hover {
  background: #fdfdfd;
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: var(--color-accent-green);
}

.hero-cta-group .btn-secondary-try svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: 650px;
  margin: 0 auto;
  padding: 0;
}

.showcase-ipad-backdrop,
.showcase-mac-backdrop {
  position: absolute;
  top: 10px;
  right: 0;
  width: 580px;
  background: #1c1c1e;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  opacity: 0.98;
  box-sizing: border-box;
}

.showcase-ipad-backdrop::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  z-index: 3;
}

.ipad-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: block;
  line-height: 0;
}

.ipad-screen-img,
.mac-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.showcase-phone-frame {
  position: absolute;
  top: 42px;
  left: 0;
  width: 280px;
  background: #1e1e24;
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow-device);
  z-index: 2;
  box-sizing: border-box;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 800 / 1734;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  display: block;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-badges-wrap {
  display: contents;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
}

.floating-daily-badge {
  top: 470px;
  left: 330px;
  animation: floatSubtle 4.5s ease-in-out infinite;
}

.floating-counter-badge {
  bottom: 30px;
  right: 10px;
  animation: floatSubtle 4.5s ease-in-out 2.25s infinite;
}

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

.counter-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.counter-icon-wrap.orange {
  background: var(--color-accent-orange-light);
}

.counter-icon-wrap.orange svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent-orange);
}

.counter-icon-wrap.green {
  background: rgba(16, 185, 129, 0.12);
}

.counter-icon-wrap.green svg {
  width: 24px;
  height: 24px;
  fill: #10b981;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  white-space: nowrap;
}

.counter-value.badge-text-main {
  font-size: 1.15rem;
  line-height: 1.2;
}

.counter-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.accolade-section {
  margin: 24px auto 32px;
  max-width: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accolade-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  padding: 0 8px;
}

.accolade-wreath-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accolade-wreath-icon svg {
  width: 100%;
  height: 100%;
  fill: #b45309;
}

.accolade-content {
  text-align: left;
}

.accolade-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.accolade-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.accolade-subtitle b {
  font-weight: 700;
  color: #0f172a;
}

.accolade-subtitle #app-store-years {
  font-weight: inherit;
  color: inherit;
}

.reviews-section {
  margin: 0 auto 24px;
  max-width: 960px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-card-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 32px 26px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  text-align: left;
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.review-header {
  margin-bottom: 12px;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  color: #f59e0b;
}

.review-stars .star-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
  font-size: 0.88rem;
}

.review-author-name {
  font-weight: 700;
  color: #0f172a;
}

.review-source {
  color: var(--color-text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-source svg {
  opacity: 0.7;
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-orange);
  background: var(--color-accent-orange-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.bento-card {
  background: var(--color-card-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: rgba(0, 0, 0, 0.14);
}

.bento-card.col-8 { grid-column: span 8; }
.bento-card.col-7 { grid-column: span 7; }
.bento-card.col-6 { grid-column: span 6; }
.bento-card.col-5 { grid-column: span 5; }
.bento-card.col-4 { grid-column: span 4; }
.bento-card.col-12 { grid-column: span 12; }

.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.bento-card-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.bento-card-desc a {
  color: var(--color-accent-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.bento-card-desc a:hover {
  color: #15803d;
}

.bento-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bento-icon-badge.green {
  background: var(--color-accent-green-light);
}
.bento-icon-badge.green svg {
  fill: var(--color-accent-green);
}

.bento-icon-badge.orange {
  background: var(--color-accent-orange-light);
}
.bento-icon-badge.orange svg {
  fill: var(--color-accent-orange);
}

.bento-icon-badge.blue {
  background: rgba(14, 165, 233, 0.1);
}
.bento-icon-badge.blue svg {
  fill: #0284c7;
}

.bento-icon-badge.purple {
  background: rgba(168, 85, 247, 0.1);
}
.bento-icon-badge.purple svg {
  fill: #9333ea;
}

.bento-icon-badge svg {
  width: 24px;
  height: 24px;
}

.steam-showcase-section {
  margin: 64px 0;
}

.steam-card {
  background: linear-gradient(145deg, #171a21 0%, #1b2838 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.steam-content {
  margin: 0 auto;
}

.steam-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #66c0f4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.steam-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #c7d5e0;
  margin: 0 0 20px;
}

.steam-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.steam-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8f98a0;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.steam-widget-wrap {
  width: 646px;
  max-width: 100%;
  margin: 0 auto;
}

.steam-widget-wrap iframe {
  width: 100%;
  max-width: 646px;
  height: 190px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 0;
  display: block;
}

.btn-steam-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 280px;
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.btn-steam-mobile:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-steam-mobile svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.browser-cta-section {
  margin: 0 0 48px;
}

.browser-cta-card {
  background: var(--color-card-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.browser-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.browser-cta-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 auto 28px;
}

.btn-play-daily {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.btn-play-daily:hover {
  background: #334155;
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-play-daily svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.download-hero {
  text-align: center;
  padding: 48px 0 32px;
}

.download-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  margin-bottom: 20px;
  display: inline-block;
}

.download-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.download-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.redirect-alert {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 0 auto 36px;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.redirect-message-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.redirect-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(22, 163, 74, 0.2);
  border-top-color: var(--color-accent-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-text {
  font-weight: 600;
  color: #15803d;
  font-size: 0.95rem;
}

.btn-open-direct {
  background: #16a34a;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-open-direct:hover {
  background: #15803d;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.platform-card {
  background: var(--color-card-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.platform-card:hover {
  border-color: rgba(0, 0, 0, 0.14);
}

.platform-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.platform-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo-icon svg {
  width: 24px;
  height: 24px;
}

.platform-pill {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  color: #475569;
}

.platform-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.platform-card-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
  flex: 1;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.platform-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent-green);
  flex-shrink: 0;
}

.platform-card-cta {
  margin-top: auto;
}

.btn-platform-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.btn-platform-action:hover {
  background: #334155;
  transform: translateY(-1px);
}

.btn-platform-action.secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid rgba(0,0,0,0.12);
}

.btn-platform-action.secondary:hover {
  background: #f8fafc;
  border-color: rgba(0,0,0,0.25);
}

.faq-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 72px;
}

.faq-card {
  background: var(--color-card-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.faq-a {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

body.landing-page .site-footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 64px 24px 48px;
  margin-top: 80px;
  color: var(--color-text-secondary);
  text-align: left;
}

body.landing-page .footer-heading {
  color: var(--color-text-primary);
}

body.landing-page .footer-tagline {
  color: var(--color-text-secondary);
}

body.landing-page .footer-nav-list li a {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color 0.15s ease;
}

body.landing-page .footer-nav-list li a:hover {
  color: var(--color-text-primary);
  text-decoration: underline;
}

body.landing-page .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-muted);
}

body.landing-page .footer-bottom-links a,
body.landing-page .footer-copyright a {
  color: var(--color-text-secondary);
}

body.landing-page .footer-bottom-links a:hover,
body.landing-page .footer-copyright a:hover {
  color: var(--color-text-primary);
  text-decoration: underline;
}

.celebration-hero {
  padding: 12px 0 24px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.celebration-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.celebration-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.celebration-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 28px;
}

.celebration-stats-action {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
}

.btn-show-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-show-stats:hover {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.celebration-stats-reveal {
  max-width: 960px;
  margin: 0 auto 36px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--border-subtle);
  padding: 20px;
  box-sizing: border-box;
}

.celebration-stats-reveal img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.celebration-showcase {
  max-width: 960px;
  margin: 0 auto 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border-radius: 16px;
}

.celebration-showcase img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.next-challenge-section {
  margin: 0 0 32px;
}

.next-challenge-card {
  background: #181e28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  width: 100%;
}

.next-challenge-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.25;
}

.next-challenge-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 auto 28px;
}

.next-challenge-desc a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.next-challenge-desc a:hover {
  color: #93c5fd;
}

.next-challenge-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-puzzarium-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.btn-puzzarium-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
  color: #0f172a;
}

.btn-puzzarium-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-puzzarium-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

@media only screen and (max-width: 960px) {
  .hero-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: auto;
    max-width: 100%;
    padding: 16px 0 24px;
  }

  .showcase-ipad-backdrop,
  .showcase-mac-backdrop {
    display: none;
  }

  .showcase-phone-frame {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto;
    width: 260px;
  }

  .showcase-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    max-width: 440px;
  }

  .floating-badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    animation: none;
    padding: 12px 18px;
  }

  .bento-card.col-8,
  .bento-card.col-7,
  .bento-card.col-6,
  .bento-card.col-5,
  .bento-card.col-4 {
    grid-column: span 12;
  }

  .steam-card {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .steam-features-list {
    justify-content: center;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .faq-reassurance-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 700px) {
  .steam-widget-wrap {
    display: none !important;
  }

  .btn-steam-mobile {
    display: inline-flex !important;
  }
}

@media only screen and (max-width: 640px) {
  body.landing-page #menu-button {
    display: block;
    padding: 6px 12px 6px 0;
  }

  .hero-section {
    padding: 28px 0 20px;
  }

  .hero-brand-logo {
    max-width: 240px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-group .btn-secondary-try {
    display: none !important;
  }

  .accolade-section {
    margin: 12px auto 32px;
  }

  .accolade-card {
    gap: 14px;
    align-items: center;
  }

  .accolade-wreath-icon {
    width: 44px;
    height: 44px;
  }

  .accolade-title {
    font-size: 1.1rem;
  }

  .accolade-subtitle {
    font-size: 0.85rem;
  }

  .reviews-section {
    margin: 0 auto 8px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 24px 20px 20px;
  }

  .review-title {
    font-size: 1.12rem;
  }

  .review-text {
    font-size: 0.92rem;
    margin-bottom: 18px;
  }

  .bento-card {
    padding: 24px;
  }

  .browser-cta-card {
    padding: 32px 20px;
  }

  .steam-card {
    padding: 24px 16px;
  }

  .steam-widget-wrap {
    display: none !important;
  }

  .btn-steam-mobile {
    display: inline-flex !important;
  }

  .redirect-alert {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-open-direct {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .celebration-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .next-challenge-card {
    padding: 36px 20px;
  }

  .next-challenge-actions {
    flex-direction: column;
  }

  .btn-puzzarium-primary,
  .btn-puzzarium-secondary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-cta-group .store-badge-btn img {
    height: 60px;
  }
}

