/* =========================================================================
   Sportingbet Guatemala — bespoke stylesheet
   Classic sportsbook heritage. Blue identity on dark slate, light-grey surfaces.
   ========================================================================= */

:root {
  --blue: #076da7;
  --blue-deep: #063b5b;
  --slate: #253241;
  --slate-deep: #1a2530;
  --grey-surface: #d3d6d9;
  --grey-100: #eef0f1;
  --grey-200: #e2e5e7;
  --white: #ffffff;
  --ink: #1b232c;
  --ink-soft: #4d5b67;
  --line: #c7ccd0;
  --gold: #e2a13a;
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 16px;
  --shadow-card: 0 2px 14px rgba(20, 30, 40, 0.10);
  --shadow-lift: 0 12px 32px rgba(6, 30, 48, 0.22);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--grey-100);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  background: var(--slate);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--blue);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand img { height: 28px; width: auto; display: block; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  color: var(--grey-surface);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 4px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-s); overflow: hidden; }
.lang-switch a {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}
.lang-switch a[aria-current="true"] { background: var(--blue); color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #0880c7; }
.btn-ghost { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.btn-block { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-s);
}
.burger span { display: block; height: 2px; width: 18px; margin: 0 auto; background: var(--white); border-radius: 2px; }

.mobile-nav {
  display: none;
  background: var(--slate-deep);
  border-bottom: 3px solid var(--blue);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 18px 0 8px; }
.mobile-nav li + li { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav a { display: block; padding: 13px 0; color: var(--grey-surface); font-weight: 600; }
.mobile-lang { display: flex; gap: 8px; padding: 10px 0; }
.mobile-lang a {
  flex: 1;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-s);
  color: rgba(255,255,255,.7);
  font-weight: 700;
  font-size: 13px;
}
.mobile-lang a[aria-current="true"] { background: var(--blue); color: var(--white); border-color: var(--blue); }
.mobile-ctas { display: flex; gap: 10px; padding: 6px 0 20px; }

/* -------------------------------------------------------------------------
   Breadcrumb
   ------------------------------------------------------------------------- */
.breadcrumb { background: var(--grey-200); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0; font-size: 13px; color: var(--ink-soft); }
.breadcrumb a { color: var(--blue-deep); font-weight: 600; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--line); }
.breadcrumb li { display: flex; }

/* -------------------------------------------------------------------------
   Hero — sportsbook statement + odds board
   ------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--slate) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 52px 0 60px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: start;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12.5px;
  font-weight: 800;
  color: #7fc4ec;
  margin: 0 0 14px;
}
.hero-title { font-size: clamp(27px,3.6vw,40px); line-height: 1.16; font-weight: 800; margin: 0 0 16px; }
.hero-title em { color: #7fc4ec; font-style: normal; }
.hero-sub { font-size: 16px; color: #c9d6de; max-width: 46ch; margin: 0 0 26px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .stat p:first-child { font-size: 22px; font-weight: 800; color: var(--white); margin: 0; }
.hero-trust .stat p:last-child { font-size: 12.5px; color: #a9bac4; margin: 2px 0 0; }

/* Odds board */
.odds-board {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.odds-board-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 10px; }
.odds-board-head p { margin: 0; font-weight: 800; font-size: 15px; }
.odds-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: #c0392b; }
.odds-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #c0392b; }
.odds-tabs { display: flex; gap: 6px; padding: 0 14px 12px; flex-wrap: wrap; }
.odds-tab {
  background: var(--grey-100);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}
.odds-tab[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: var(--white); }
.odds-rows { border-top: 1px solid var(--line); }
.odds-row { display: none; padding: 12px 18px; border-bottom: 1px solid var(--grey-200); }
.odds-row.is-visible { display: block; }
.odds-row-league { margin: 0 0 6px; font-size: 11.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.odds-row-match { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.odds-teams p { margin: 0; font-size: 14px; font-weight: 700; }
.odds-prices { display: flex; gap: 8px; }
.odds-price { background: var(--grey-100); border: 1px solid var(--line); border-radius: var(--radius-s); min-width: 52px; text-align: center; padding: 6px 4px; }
.odds-price p:first-child { margin: 0; font-size: 10.5px; color: var(--ink-soft); font-weight: 700; }
.odds-price p:last-child { margin: 0; font-size: 14px; font-weight: 800; color: var(--blue-deep); }
.odds-note { margin: 0; padding: 12px 18px 16px; font-size: 11px; color: var(--ink-soft); }

/* -------------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------------- */
.section { padding: 60px 0; }
.section-alt { background: var(--grey-200); }
.section-dark { background: var(--slate); color: var(--white); }
.section-dark .section-desc { color: #b7c3cc; }
.section-head { max-width: 640px; margin: 0 0 34px; }
.section-eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 800; color: var(--blue); margin: 0 0 10px; }
.section-dark .section-eyebrow { color: #7fc4ec; }
.section-title { font-size: clamp(22px,2.6vw,30px); font-weight: 800; margin: 0 0 10px; color: var(--slate); }
.section-dark .section-title { color: var(--white); }
.section-desc { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 24px; box-shadow: var(--shadow-card); }
.feature-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; overflow: hidden; background: var(--grey-100); }
.feature-icon img { width: 22px; height: 22px; }
.card-title { font-weight: 800; font-size: 16.5px; margin: 0 0 8px; color: var(--slate); }
.card-body { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* Casino tile grid */
.casino-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.casino-tile { background: rgba(255,255,255,.05); border-radius: var(--radius-m); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.casino-tile-img { aspect-ratio: 1 / 1; overflow: hidden; }
.casino-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.casino-tile p { margin: 0; padding: 9px 10px; font-size: 12px; font-weight: 700; color: var(--grey-surface); }

.strip-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.strip-tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); }
.strip-tile-img { aspect-ratio: 1 / 1; overflow: hidden; }
.strip-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.strip-tile p { margin: 0; padding: 9px 10px; font-size: 12px; font-weight: 700; color: var(--slate); }

/* Steps strip (app page) */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 22px; box-shadow: var(--shadow-card); position: relative; }
.step-num { font-size: 13px; font-weight: 800; color: var(--white); background: var(--blue); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step-card p.card-title { margin-bottom: 6px; }

/* Bonus type cards (bono page) */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 24px; box-shadow: var(--shadow-card); border-top: 4px solid var(--blue); }
.bonus-tag { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-deep); background: var(--grey-100); border-radius: 999px; padding: 4px 10px; margin-bottom: 12px; }

/* Teaser banner (cross-links) */
.teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 34px;
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}
.teaser .tag { text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 800; color: var(--blue); margin: 0 0 8px; }
.teaser .headline { font-size: 20px; font-weight: 800; margin: 0 0 8px; color: var(--slate); }
.teaser .copy { margin: 0; color: var(--ink-soft); font-size: 14.5px; max-width: 56ch; }
.teaser-banner { display: flex; align-items: center; gap: 24px; }
.teaser-banner img { border-radius: var(--radius-m); width: 220px; height: auto; }

/* Pay chips */
.pay-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-chip { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 13.5px; font-weight: 700; color: var(--slate); box-shadow: var(--shadow-card); }

/* -------------------------------------------------------------------------
   SEO article block
   ------------------------------------------------------------------------- */
.seo-block { background: var(--white); }
.article { max-width: 780px; margin: 0 auto; }
.article h1 { font-size: clamp(24px,3.2vw,34px); font-weight: 800; color: var(--slate); line-height: 1.22; margin: 0 0 20px; }
.article h2 { font-size: 22px; font-weight: 800; color: var(--slate); margin: 40px 0 14px; }
.article h3 { font-size: 17px; font-weight: 800; color: var(--blue-deep); margin: 26px 0 10px; }
.article p { font-size: 15.5px; color: var(--ink-soft); margin: 0 0 16px; }
.article strong { color: var(--ink); }
.article a { color: var(--blue-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.article table { width: 100%; border-collapse: collapse; margin: 10px 0 22px; table-layout: fixed; }
.article th, .article td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; font-size: 14px; overflow-wrap: anywhere; }
.article th { background: var(--grey-200); color: var(--slate); font-weight: 800; }
.article td { color: var(--ink-soft); }

.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--grey-100); overflow: hidden; }
.faq-item summary {
  cursor: pointer;
  padding: 15px 18px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 15.5px; color: var(--slate); }
.faq-item summary::after { content: "+"; font-size: 20px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-a { padding: 0 18px 16px; }
.faq-a p { margin: 0; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--slate-deep); color: #b9c4cc; padding: 50px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 26px; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; color: #93a2ab; max-width: 32ch; }
.col-title { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--white); margin: 0 0 12px; }
.footer-col a { display: block; font-size: 13.5px; color: #93a2ab; padding: 5px 0; }
.footer-badges { display: flex; gap: 14px; align-items: center; padding: 22px 0; }
.footer-rg { font-size: 12px; line-height: 1.7; color: #7c8993; max-width: 900px; margin: 0 0 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }
.footer-bottom p { font-size: 12px; color: #7c8993; margin: 0; }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .feature-grid, .steps-grid, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .casino-grid, .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .lang-switch, .header-actions .btn { display: none; }
  .burger { display: flex; }
  .site-header .container { height: 62px; }
  .brand img { height: 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 38px 0 44px; }
  .section { padding: 42px 0; }
  .feature-grid, .steps-grid, .bonus-grid { grid-template-columns: 1fr; }
  .casino-grid, .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .teaser { flex-direction: column; align-items: flex-start; }
  .teaser-banner { flex-direction: column; }
  .teaser-banner img { width: 100%; max-width: 260px; }
  .odds-row-match { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .article table { font-size: 12px; }
  .article th, .article td { padding: 7px 8px; font-size: 12px; }
  .casino-grid, .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .footer-top { grid-template-columns: 1fr; }
}
