:root {
  --font-display: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
  --paper: #f3f4f6;
  --paper-warm: #fdfbf7;
  --paper-beige: #e5e0d8;
  --ink: #111827;
  --ink-soft: #4b5563;
  --ink-faint: #94a3b8;
  --navy: #08111f;
  --navy-soft: #0f1b2f;
  --blue: #4a90e2;
  --blue-strong: #3b82f6;
  --indigo: #6366f1;
  --yellow: #ffd93d;
  --green: #22c55e;
  --red: #ff6b6b;
  --orange: #f97316;
  --line: rgba(148, 163, 184, 0.25);
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --panel-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.92) 100%);
  --shadow-soft: 0 24px 48px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 20px 44px rgba(8, 17, 31, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(74, 144, 226, 0.16) 0%, rgba(74, 144, 226, 0) 34%),
    radial-gradient(circle at 14% 10%, rgba(255, 217, 61, 0.2) 0%, rgba(255, 217, 61, 0) 22%),
    radial-gradient(circle at 84% 16%, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0) 22%),
    linear-gradient(180deg, #f4f6fb 0%, #eef3f8 32%, #fdfbf7 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.hero {
  text-align: center;
  padding: 18px 0 30px;
}

.hero--compact {
  padding-top: 8px;
}

.app-icon {
  width: clamp(88px, 14vw, 124px);
  height: auto;
  margin: 0 auto 16px;
  border-radius: 28px;
  box-shadow:
    0 18px 34px rgba(59, 130, 246, 0.18),
    0 10px 18px rgba(15, 23, 42, 0.16);
}

.app-icon--small {
  width: clamp(70px, 12vw, 94px);
  border-radius: 22px;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 144, 226, 0.88);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  color: var(--ink);
}

.lead,
.intro {
  width: min(740px, 100%);
  margin: 0 auto;
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.appstore-badge-link {
  display: inline-block;
  line-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.appstore-badge-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.14);
}

.appstore-badge-link img {
  width: min(250px, 68vw);
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(90deg, var(--yellow) 0%, #facc15 100%);
  box-shadow: 0 14px 28px rgba(250, 204, 21, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(250, 204, 21, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgba(74, 144, 226, 0.3);
  background: rgba(255, 255, 255, 0.92);
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meta-pill {
  padding: 0.6rem 0.92rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.panel,
.page-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.76) 100%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.dashboard-panel {
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(243, 244, 246, 0.76) 100%);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.dashboard-panel::before,
.feature-card::before,
.download-cta::before,
.page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(74, 144, 226, 0.18) 0%, rgba(74, 144, 226, 0) 34%),
    radial-gradient(circle at bottom left, rgba(255, 217, 61, 0.1) 0%, rgba(255, 217, 61, 0) 28%);
}

.dashboard-shell {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at top right, rgba(74, 144, 226, 0.12) 0%, rgba(74, 144, 226, 0) 30%),
    radial-gradient(circle at bottom left, rgba(255, 217, 61, 0.16) 0%, rgba(255, 217, 61, 0) 24%),
    var(--panel-soft);
  padding: 18px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.dashboard-title {
  margin: 0;
  font-size: 2rem;
  line-height: 0.95;
}

.dashboard-subtitle {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.badge-value {
  min-width: 152px;
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.8) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(74, 144, 226, 0.18);
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.1);
  text-align: left;
}

.badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.56);
}

.badge-number {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.badge-trend {
  margin-top: 5px;
  color: #86efac;
  font-weight: 700;
  font-size: 0.9rem;
}

.search-panel {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: rgba(15, 23, 42, 0.5);
  font-size: 0.96rem;
}

.game-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.game-tabs span {
  padding: 0.5rem 0.84rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.game-tabs .active {
  color: var(--ink);
  background: linear-gradient(90deg, #dbeafe 0%, #bfdbfe 100%);
}

.section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.section-label h2 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--ink);
}

.section-note {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.44);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.market-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.market-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.card-thumb {
  flex: 0 0 44px;
  height: 58px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.card-thumb--dragon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(160deg, #ff8a3d 0%, #ef4444 55%, #7c2d12 100%);
}

.card-thumb--wizard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(160deg, #8b5cf6 0%, #4f46e5 55%, #1d4ed8 100%);
}

.card-thumb--sports {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(160deg, #34d399 0%, #22c55e 58%, #14532d 100%);
}

.market-copy {
  min-width: 0;
}

.market-copy strong,
.jump-tile strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
}

.market-copy span,
.jump-tile span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.market-price {
  margin-left: auto;
  text-align: right;
}

.market-price strong {
  display: block;
  font-size: 1rem;
}

.market-price span {
  display: block;
  margin-top: 3px;
  font-size: 0.86rem;
  font-weight: 700;
}

.market-price .up {
  color: #86efac;
}

.market-price .down {
  color: #fca5a5;
}

.jump-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.jump-tile {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.jump-tile--blue {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.9) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.jump-tile--yellow {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.jump-tile--green {
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.side-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  padding: 20px;
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.feature-card .btn {
  margin-top: 16px;
}

.feature-visual {
  position: relative;
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.feature-visual img {
  width: 100%;
  height: auto;
}

.sticker {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 0.48rem 0.72rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 10px 16px rgba(15, 23, 42, 0.18);
}

.sticker--red {
  color: #ffffff;
  background: var(--red);
}

.sticker--yellow {
  color: var(--ink);
  background: var(--yellow);
}

.sticker--blue {
  color: #ffffff;
  background: var(--blue);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.feature-pills span {
  padding: 0.46rem 0.74rem;
  border-radius: 999px;
  background: rgba(74, 144, 226, 0.1);
  color: var(--blue-strong);
  font-weight: 700;
  font-size: 0.84rem;
}

.shots {
  margin-top: 22px;
  padding: 20px;
}

.shots-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.shots-heading h2 {
  margin: 0;
  font-size: 2rem;
}

.shots-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.shots-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.shot-card {
  flex: 0 0 min(250px, 56vw);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  scroll-snap-align: start;
  background: #ffffff;
}

.shot-card img {
  width: 100%;
  height: auto;
}

.shot-label {
  padding: 12px 14px 14px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.download-cta {
  margin-top: 22px;
  padding: 24px;
  text-align: center;
}

.download-cta h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.download-cta p {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  margin: 10px auto 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.download-cta .actions {
  position: relative;
  z-index: 1;
}

footer {
  margin-top: 26px;
  text-align: center;
  color: rgba(30, 41, 59, 0.72);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.back-link:hover {
  color: var(--blue-strong);
}

.top-nav {
  margin-bottom: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.page-card {
  padding: 24px;
}

.support-card {
  padding: 24px;
}

.support-form {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.66);
  padding: 22px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
}

input[type="email"],
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  border: 1.5px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.94rem 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: rgba(74, 144, 226, 0.74);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.12);
}

.error-message,
.success-message {
  display: none;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.error-message {
  color: #dc2626;
}

.success-message {
  color: #15803d;
}

.submit-button,
.copy-button,
.email-service-btn {
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.submit-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  background: linear-gradient(90deg, var(--yellow) 0%, #facc15 100%);
  box-shadow: 0 14px 28px rgba(250, 204, 21, 0.2);
}

.submit-button:disabled,
.copy-button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.fallback-info {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.88);
}

.fallback-info h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.fallback-info p,
.note {
  color: var(--ink-soft);
  line-height: 1.65;
}

.email-copy-section {
  margin: 14px 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #ffffff;
  color: var(--ink-soft);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.copy-button {
  margin-top: 10px;
  border: 0;
  padding: 0.52rem 0.92rem;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--blue) 0%, var(--indigo) 100%);
}

.web-email-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.66rem 1rem;
  text-decoration: none;
  color: var(--blue-strong);
  border: 1px solid rgba(74, 144, 226, 0.2);
  background: rgba(74, 144, 226, 0.08);
}

.legal-content {
  position: relative;
  z-index: 1;
  line-height: 1.78;
  color: var(--ink-soft);
}

.legal-content h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
}

.legal-content h2 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.legal-content p,
.legal-content ul {
  margin: 0 0 16px;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content a {
  color: var(--blue-strong);
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(74, 144, 226, 0.08);
  font-weight: 700;
}

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

.floating {
  animation: drift 8s ease-in-out infinite;
}

@media (max-width: 980px) {
  .showcase {
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    flex-direction: column;
  }

  .badge-value {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 1180px);
    padding: 18px 0 30px;
  }

  h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }

  .panel,
  .page-card,
  .dashboard-shell,
  .support-form {
    border-radius: 24px;
  }

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

  .thumb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shots-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .dashboard-panel,
  .feature-card,
  .shots,
  .download-cta,
  .page-card,
  .support-card {
    padding: 18px;
  }

  .dashboard-shell {
    padding: 15px;
  }

  .market-row {
    grid-template-columns: 1fr;
  }

  .market-price {
    margin-left: 0;
    text-align: left;
  }

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