﻿/* 155bet — mobile-first landing (BR casual gaming) */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --green: #0ea5e9;
  --green-dark: #0f3b63;
  --green-mid: #0369a1;
  --teal-cta: #0f766e;
  --purple-cta: #6366f1;
  --text: #111827;
  --text-muted: #374151;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-green: rgba(14, 165, 233, 0.35);
  --surface-top: #e0f2fe;
  --canvas: #dbeafe;
  --canvas-desktop: #7aa7c7;
  --nav-mint: color-mix(in srgb, var(--green) 22%, white);
  --nav-pad-x: 10px;
  --layout-max: 100%;
  --column-max: 30.375rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(15, 59, 99, 0.14);
  --shadow-card: 0 2px 8px rgba(15, 59, 99, 0.12);
  --site-header-h: 7.5rem;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--canvas);
  padding-top: var(--site-header-h);
  overflow-x: hidden;
}

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

/* ─── Fixed header shell (aligned with content column on desktop) ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--column-max);
  z-index: 1100;
  font-family: var(--font);
}

.site-header.is-banner-hidden .app-banner {
  display: none;
}

/* APP download bar */
.app-banner {
  background: var(--green);
  border-bottom: 1px solid var(--border-light);
  padding: max(6px, env(safe-area-inset-top, 0px)) var(--nav-pad-x) 8px;
  padding-left: calc(var(--nav-pad-x) + 42px);
  position: relative;
}

.app-banner__close {
  position: absolute;
  left: var(--nav-pad-x);
  top: 50%;
  transform: translateY(-50%);
  margin-top: calc(env(safe-area-inset-top, 0px) / 2);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(0, 0, 0, 0.55);
  transition: background 0.15s ease;
}

.app-banner__close:hover,
.app-banner__close:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  outline: none;
}

.app-banner__close svg {
  width: 18px;
  height: 18px;
}

.app-banner__row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.app-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.app-banner__copy {
  flex: 1;
  min-width: 0;
}

.app-banner__copy strong,
.app-banner__copy span {
  display: block;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.app-banner__copy strong { font-size: 13px; }
.app-banner__copy span { font-size: 11px; opacity: 0.92; }

.app-banner__deco {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.app-banner__cta {
  flex-shrink: 0;
  padding: 8px 14px;
  background: var(--teal-cta);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 123, 143, 0.35);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.app-banner__cta:hover { filter: brightness(1.08); }
.app-banner__cta:active { transform: scale(0.98); }

/* Main nav row */
.site-nav {
  background: var(--nav-mint);
  border-bottom: 1px solid var(--border-green);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px var(--nav-pad-x);
  min-height: 48px;
}

.nav-toggle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.15s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(40, 167, 69, 0.12);
  outline: none;
}

.nav-toggle svg { width: 26px; height: 26px; }

.site-logo {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  width: clamp(72px, min(52vw, 100vw - 14rem), 220px);
  height: clamp(26px, 8vw, 40px);
  object-fit: contain;
  object-position: left center;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-radius: 12px;
  border: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.btn-nav--entrar {
  background: var(--green);
}

.btn-nav--registro {
  background: var(--purple-cta);
}

.btn-nav:hover { filter: brightness(1.06); }
.btn-nav:active { transform: scale(0.98); }

/* Dropdown drawer */
.nav-drawer {
  background: var(--nav-mint);
  border-bottom: 1px solid var(--border-green);
  box-shadow: 0 8px 20px rgba(20, 83, 45, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.nav-drawer.is-open {
  max-height: 420px;
}

.nav-drawer__list {
  padding: 8px var(--nav-pad-x) 12px;
}

.nav-drawer__list a {
  display: block;
  padding: 12px 14px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.nav-drawer__list a:hover,
.nav-drawer__list a:focus-visible {
  background: rgba(40, 167, 69, 0.14);
  outline: none;
}

.nav-drawer__list a.is-active {
  background: rgba(20, 83, 45, 0.12);
  font-weight: 700;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open { overflow: hidden; }

/* ─── Shell / column layout ─── */
.shell {
  width: 100%;
  max-width: min(100%, var(--column-max));
  margin: 0 auto;
  background: var(--surface-top);
  overflow-x: hidden;
  min-height: calc(100vh - var(--site-header-h));
}

.landing__container,
.prose,
.shell .container {
  width: 100%;
  max-width: var(--layout-max);
  padding-left: var(--nav-pad-x);
  padding-right: var(--nav-pad-x);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 1.5rem var(--nav-pad-x) 2rem;
  background: linear-gradient(165deg, #fff 0%, var(--surface-top) 45%, #c8e6c9 100%);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(40, 167, 69, 0.12);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.gradient-text {
  color: var(--green);
}

.hero-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: #fff;
  color: var(--green-dark);
  border-color: var(--green);
}

.btn-large { padding: 14px 22px; font-size: 1rem; }

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

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-green);
}

.hero-games-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.live-data-section,
.feature-highlights,
.certification-badges {
  margin-top: 1rem;
}

.live-data-title,
.feature-highlights-title {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.live-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.live-data-item {
  text-align: center;
  padding: 10px 6px;
  background: var(--surface-top);
  border-radius: var(--radius-sm);
}

.live-data-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}

.live-data-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.feature-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feature-highlight-item i { color: var(--green); width: 1.1rem; }

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
}

.hero-particles { display: none; }

/* ─── Sections common ─── */
section {
  padding: 2rem var(--nav-pad-x);
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(40, 167, 69, 0.15);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.section-description {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 auto;
  max-width: 36ch;
}

/* Features grid */
.features {
  background: #fff;
}

.features-grid {
  display: grid;
  gap: 14px;
}

.feature-card {
  background: var(--surface-top);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.icon-glow { display: none; }

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.feature-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
}

/* Promo / collections */
.collections-section {
  background: linear-gradient(180deg, var(--surface-top) 0%, #fff 100%);
}

.promotions-grid {
  display: grid;
  gap: 14px;
}

.promo-card {
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.promo-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
}

.promo-badge {
  display: inline-block;
  margin: 12px 12px 0;
  padding: 4px 10px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 6px;
}

.promo-content { padding: 1rem 1.15rem 1.15rem; }

.promo-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.promo-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.promo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.promo-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
}

.promo-btn {
  display: inline-block;
  padding: 10px 16px;
  background: var(--teal-cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.promo-btn:hover { filter: brightness(1.08); }

.promotions { background: #fff; }

/* FAQ */
.faq-section { background: var(--surface-top); }

.faq-container { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.12);
  color: var(--green);
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 16px 14px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.faq-item:not(.active) .faq-answer { display: none; }

/* Office */
.office-info-section { background: #fff; }

.office-grid {
  display: grid;
  gap: 14px;
}

.office-card {
  background: var(--surface-top);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.office-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }

.office-card h3 {
  margin: 0 0 0.75rem;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.office-details p,
.office-hours p {
  margin: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.office-map-wrapper { margin-top: 1.5rem; }

.office-map-title {
  font-size: 1rem;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}

.office-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-green);
  aspect-ratio: 16 / 10;
}

.office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

.office-map-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

/* Ratings */
.ratings-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-top) 100%);
}

.ratings-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ratings-summary-card {
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.ratings-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.ratings-stars {
  color: #f59e0b;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.ratings-count,
.ratings-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ratings-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.75rem;
}

.ratings-cards {
  display: grid;
  gap: 12px;
}

.ratings-card {
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.ratings-card-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.ratings-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ratings-card-title {
  margin: 0;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.ratings-card-meta {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ratings-card-score {
  margin-left: auto;
  font-weight: 800;
  color: var(--green);
}

.ratings-card-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--green-dark);
  color: #e8f5e9;
  padding: 2rem var(--nav-pad-x) 1.5rem;
}

.footer-content {
  display: grid;
  gap: 1.5rem;
}

.footer-logo-img {
  max-width: 120px;
  margin-bottom: 0.75rem;
}

.footer-description {
  font-size: 0.88rem;
  opacity: 0.9;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.15s ease;
}

.social-link:hover { background: rgba(255, 255, 255, 0.22); }

.footer-title {
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  color: #fff;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  font-size: 0.88rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.footer-links a:hover { opacity: 1; }

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-copyright {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Local action pages */
.page-hero {
  padding: 1.75rem var(--nav-pad-x) 1.5rem;
  background: linear-gradient(160deg, #fff 0%, var(--surface-top) 58%, #c8e6c9 100%);
}

.page-hero__media {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-green);
  box-shadow: var(--shadow-card);
}

.page-hero__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--surface-top);
}

.seo-figure {
  margin: 1rem 0 0;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.seo-figure picture,
.seo-figure img {
  display: block;
}

.seo-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--surface-top);
}

.seo-figure figcaption {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.content-image-grid {
  display: grid;
  gap: 12px;
}

.content-image-card {
  margin: 0;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.content-image-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--surface-top);
  border-radius: var(--radius-md);
}

.content-image-card figcaption {
  margin-top: 0.6rem;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-section {
  padding: 1.75rem var(--nav-pad-x);
}

.page-card {
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.register-steps {
  display: grid;
  gap: 12px;
  counter-reset: register-step;
}

.register-step {
  position: relative;
  padding: 1.1rem 1rem 1rem 3.75rem;
}

.register-step::before {
  counter-increment: register-step;
  content: counter(register-step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.register-step h2,
.login-panel h2,
.apk-timeline h2,
.bet-board h2 {
  margin: 0 0 0.45rem;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.register-step p,
.login-panel p,
.apk-timeline p,
.bet-board p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.login-panel {
  padding: 1.15rem;
}

.login-fields {
  display: grid;
  gap: 10px;
  margin: 1rem 0;
}

.login-field {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  background: var(--surface-top);
  color: var(--text-muted);
  font-weight: 700;
}

.login-checks {
  display: grid;
  gap: 10px;
}

.login-checks--spaced {
  margin-top: 12px;
}

.login-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(40, 167, 69, 0.1);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.apk-timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.apk-item {
  padding: 1rem;
  border-left: 4px solid var(--green);
}

.apk-item:nth-child(even) {
  border-left-color: var(--teal-cta);
  background: #fff;
}

.apk-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.apk-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 123, 143, 0.12);
  color: var(--teal-cta);
  font-size: 0.78rem;
  font-weight: 800;
}

.bet-board {
  display: grid;
  gap: 12px;
}

.bet-tile {
  padding: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--surface-top) 100%);
}

.bet-tile strong {
  display: block;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(40, 167, 69, 0.12);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.split-list,
.mini-grid,
.info-stack {
  display: grid;
  gap: 12px;
}

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

.soft-panel {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.soft-panel h2,
.soft-panel h3 {
  margin: 0 0 0.5rem;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.soft-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.stat-pill {
  padding: 0.9rem 0.75rem;
  text-align: center;
  background: var(--surface-top);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
}

.stat-pill strong {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-pill span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.note-strip {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.16), rgba(0, 123, 143, 0.12));
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.register-checklist {
  display: grid;
  gap: 9px;
}

.register-checklist li {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-green);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.login-mosaic {
  display: grid;
  gap: 10px;
}

.login-mosaic .soft-panel:nth-child(2) {
  background: var(--green-dark);
}

.login-mosaic .soft-panel:nth-child(2) h3,
.login-mosaic .soft-panel:nth-child(2) p {
  color: #fff;
}

.apk-specs {
  display: grid;
  gap: 10px;
}

.apk-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(40, 167, 69, 0.22);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.apk-spec-row strong {
  color: var(--green-dark);
}

.bet-ribbon {
  display: grid;
  gap: 10px;
}

.bet-ribbon a,
.bet-ribbon span {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-green);
  color: var(--green-dark);
  font-weight: 800;
}

.responsible-box {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--green);
  background: rgba(40, 167, 69, 0.08);
}

.responsible-box h2 {
  margin: 0 0 0.5rem;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.responsible-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-card {
  padding: 1rem;
}

.form-card form,
.field-grid {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  background: var(--surface-top);
  color: var(--text);
  font: inherit;
}

.form-hint {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.form-consent input {
  margin-top: 3px;
}

.promo-code-box {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--green-dark);
  color: #fff;
}

.promo-code-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.promo-code-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.detail-table {
  display: grid;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.detail-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  padding: 0.9rem;
  border-bottom: 1px solid rgba(40, 167, 69, 0.18);
  font-size: 0.86rem;
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-row strong {
  color: var(--green-dark);
}

.detail-row span {
  color: var(--text-muted);
}

.access-panel {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green-dark), #1f7a3a);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.access-panel h2,
.access-panel p {
  color: #fff;
}

.recovery-list,
.permission-list,
.odds-list {
  display: grid;
  gap: 10px;
}

.recovery-list li,
.permission-list li,
.odds-list li {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-green);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.device-card {
  padding: 0.95rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border-green);
}

.device-card strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.device-card span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.download-panel {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border-green);
  box-shadow: var(--shadow-card);
}

.download-progress {
  height: 10px;
  margin: 1rem 0 0.75rem;
  border-radius: 999px;
  background: rgba(40, 167, 69, 0.14);
  overflow: hidden;
}

.download-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
}

.bet-slip {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.bet-slip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(40, 167, 69, 0.18);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.bet-slip-row strong {
  color: var(--green-dark);
}

.bet-slip-row:last-child {
  border-bottom: 0;
}

.page-cta {
  display: block;
  margin-top: 1rem;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  background: var(--green);
  color: #fff;
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

/* Desktop: phone column + side canvas */
@media (min-width: 768px) {
  body {
    background: var(--canvas-desktop);
  }

  .shell {
    box-shadow: 0 0 0 1px rgba(40, 167, 69, 0.25);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 400px) {
  .btn-nav {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 44px;
  }
}
