/* 1win Guatemala — bespoke style.css
   Brand palette: #141415 near-black | #0075ff electric blue | #7100ff violet | #b173ff lavender | #d073ff pink-violet
   ---------------------------------------------------------------------- */

/* RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #141415;
  --bg2:       #1d1e20;
  --bg3:       #2e3035;
  --blue:      #0075ff;
  --violet:    #7100ff;
  --lavender:  #b173ff;
  --pink:      #d073ff;
  --green:     #00b24b;
  --white:     #ffffff;
  --muted:     #9aa1b1;
  --border:    rgba(255,255,255,.09);
  --grad:      linear-gradient(135deg, #0075ff 0%, #7100ff 60%, #b173ff 100%);
  --grad-h:    linear-gradient(135deg, #0090ff 0%, #8800ff 60%, #c48aff 100%);
  --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius:    12px;
  --hdr-h:     64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
table { border-collapse: collapse; width: 100%; }

/* UTILITY */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 20px; }

/* ----------------------------------------------------------------
   HEADER
---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--hdr-h);
  background: rgba(20,20,21,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.hdr-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Wordmark */
.wordmark {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
  flex-shrink: 0;
}
.wordmark svg { width: 80px; height: 38px; flex-shrink: 0; }
.wordmark-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Desktop nav */
.desktop-nav {
  display: flex; align-items: center; gap: 4px;
}
.desktop-nav a {
  padding: 6px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: background .18s, color .18s;
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: rgba(0,117,255,.14); color: var(--white);
}

/* Desktop header actions */
.hdr-actions {
  display: flex; align-items: center; gap: 10px;
}
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch a {
  padding: 4px 9px; border-radius: 6px;
  font-size: .8rem; font-weight: 600; color: var(--muted);
  transition: background .15s, color .15s;
}
.lang-switch a.active { color: var(--blue); background: rgba(0,117,255,.1); }
.lang-switch span { color: var(--border); font-size: .75rem; }

.btn { display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px; border-radius: 8px; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: opacity .15s, transform .1s;
  white-space: nowrap; border: none; }
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-primary { background: var(--grad); color: var(--white); }

/* Burger */
.burger-btn {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.burger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.burger-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: var(--hdr-h); left: 0; right: 0; bottom: 0;
  background: rgba(20,20,21,.98); z-index: 99;
  flex-direction: column; padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%); transition: transform .25s cubic-bezier(.25,.46,.45,.94);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 1.05rem; font-weight: 500; color: var(--muted);
  transition: color .15s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); }
.mobile-nav .mobile-lang { display: flex; gap: 8px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .mobile-lang a {
  border: none; padding: 6px 14px; border-radius: 6px;
  font-size: .85rem; font-weight: 700;
  border-bottom: none;
}
.mobile-nav .mobile-lang a.active { background: rgba(0,117,255,.15); color: var(--blue); }
.mobile-nav .mobile-cta { display: flex; gap: 10px; margin-top: 20px; }
.mobile-nav .mobile-cta .btn { flex: 1; justify-content: center; }

/* ----------------------------------------------------------------
   HERO / BANNER SLIDER
---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 400px;
  background: var(--bg);
}
.hero-slides { display: flex; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.hero-slide {
  flex: 0 0 100%; min-width: 0;
  position: relative;
}
.hero-slide img {
  width: 100%; height: 400px; object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,21,.88) 0%, rgba(20,20,21,.5) 50%, rgba(20,20,21,.2) 100%);
  display: flex; align-items: center;
}
.hero-content { padding: 40px; max-width: 540px; }
.hero-badge {
  display: inline-block; margin-bottom: 14px;
  padding: 4px 14px; border-radius: 20px;
  background: rgba(0,117,255,.2); border: 1px solid rgba(0,117,255,.4);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--lavender);
}
.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #d0e8ff 50%, var(--lavender) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 24px; line-height: 1.5; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0;
  transition: background .2s, width .2s;
}
.hero-dots button.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ----------------------------------------------------------------
   SECTION TITLES
---------------------------------------------------------------- */
.sec { padding: 60px 0; }
.sec-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800;
  margin-bottom: 6px;
}
.sec-sub { color: var(--muted); font-size: .95rem; margin-bottom: 32px; }
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.sec-header .sec-title { margin-bottom: 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ----------------------------------------------------------------
   GAME CATEGORY CHIPS
---------------------------------------------------------------- */
.category-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--muted); cursor: pointer;
  background: var(--bg2); transition: all .18s;
}
.chip:hover, .chip.active {
  background: rgba(0,117,255,.15); border-color: rgba(0,117,255,.5); color: var(--white);
}
.chip.active { background: rgba(0,117,255,.2); border-color: var(--blue); color: var(--blue); }

/* ----------------------------------------------------------------
   GAME GRID
---------------------------------------------------------------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.game-card {
  background: var(--bg2); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,117,255,.4);
  box-shadow: 0 8px 32px rgba(0,117,255,.18);
}
.game-thumb {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  background: var(--bg3);
}
.game-thumb-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.game-info { padding: 10px 12px 12px; }
.game-name { font-size: .82rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-provider { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.game-play-btn {
  display: block; width: 100%; margin-top: 8px; padding: 7px;
  text-align: center; background: var(--grad); border-radius: 6px;
  font-size: .78rem; font-weight: 700; color: var(--white);
  transition: opacity .15s;
}
.game-play-btn:hover { opacity: .85; }

/* ----------------------------------------------------------------
   SPORTS STRIP / ODDS BOARD
---------------------------------------------------------------- */
.odds-board { display: flex; flex-direction: column; gap: 10px; }
.odds-match {
  background: var(--bg2); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 14px 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  transition: border-color .18s;
}
.odds-match:hover { border-color: rgba(0,117,255,.3); }
.match-meta { font-size: .72rem; color: var(--muted); margin-bottom: 4px; }
.match-teams { font-size: .95rem; font-weight: 700; }
.match-live {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--green); margin-right: 8px;
}
.match-live::before {
  content: ''; display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.3s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.odds-cells { display: flex; gap: 8px; }
.odd-btn {
  display: flex; flex-direction: column; align-items: center;
  min-width: 68px; padding: 8px 10px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  cursor: pointer; transition: background .15s, border-color .15s;
}
.odd-btn:hover { background: rgba(0,117,255,.15); border-color: var(--blue); }
.odd-label { font-size: .68rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.odd-value { font-size: 1rem; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--blue); }

/* ----------------------------------------------------------------
   FEATURES STRIP
---------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg2); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px 20px;
  transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(113,0,255,.3); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.feature-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ----------------------------------------------------------------
   PROMO CARDS
---------------------------------------------------------------- */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.promo-card {
  background: var(--bg2); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.4); }
.promo-img { width: 100%; height: 160px; object-fit: cover; background: var(--bg3); }
.promo-body { padding: 18px 20px; }
.promo-tag {
  display: inline-block; margin-bottom: 10px; padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  background: rgba(0,178,75,.15); color: var(--green);
}
.promo-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.promo-desc { font-size: .85rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

/* ----------------------------------------------------------------
   PAYMENT LOGOS
---------------------------------------------------------------- */
.payments-strip {
  background: var(--bg2); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.payments-strip img { height: 32px; width: auto; filter: brightness(.8) saturate(.6); transition: filter .2s; }
.payments-strip img:hover { filter: brightness(1) saturate(1); }
.pay-item {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 16px; border-radius: 8px; background: var(--bg3);
  font-size: .8rem; font-weight: 700; color: var(--muted); white-space: nowrap;
}

/* ----------------------------------------------------------------
   APP PROMO BAND
---------------------------------------------------------------- */
.app-band {
  background: linear-gradient(135deg, rgba(0,117,255,.15) 0%, rgba(113,0,255,.15) 100%);
  border: 1px solid rgba(113,0,255,.25);
  border-radius: var(--radius); padding: 40px 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.app-band-text p { font-size: 1rem; color: var(--muted); margin-top: 8px; }
.app-band-img { width: 240px; height: auto; border-radius: 10px; object-fit: cover; }

/* ----------------------------------------------------------------
   SEO ARTICLE BLOCK
---------------------------------------------------------------- */
.seo-block {
  background: var(--bg2); border-radius: 16px;
  border: 1px solid var(--border); padding: 48px 52px;
  margin: 60px 0;
}
.seo-block h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 20px; line-height: 1.25; }
.seo-block h2 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 800; margin: 36px 0 12px; line-height: 1.3; padding-top: 4px; }
.seo-block h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; color: var(--lavender); }
.seo-block p { font-size: .97rem; color: rgba(255,255,255,.85); margin-bottom: 14px; line-height: 1.75; }
.seo-block a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.seo-block a:hover { color: var(--lavender); }
.seo-block ul, .seo-block ol { margin: 10px 0 14px 24px; }
.seo-block li { font-size: .97rem; color: rgba(255,255,255,.82); margin-bottom: 6px; line-height: 1.7; }
.seo-block strong { color: var(--white); font-weight: 700; }
.seo-block em { color: var(--lavender); font-style: italic; }

/* FAQ within seo-block */
.seo-block .faq-item { border-top: 1px solid var(--border); }
.seo-block .faq-item:last-child { border-bottom: 1px solid var(--border); }
.seo-block .faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; cursor: pointer;
  font-size: .97rem; font-weight: 700; color: var(--white); user-select: none;
}
.seo-block .faq-q::after { content: '+'; font-size: 1.3rem; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.seo-block .faq-item.open .faq-q::after { transform: rotate(45deg); }
.seo-block .faq-a { display: none; padding-bottom: 16px; }
.seo-block .faq-item.open .faq-a { display: block; }
.seo-block .faq-a p { margin-bottom: 0; }

/* SEO tables */
.seo-block table { margin: 18px 0; border-radius: 8px; overflow: hidden; table-layout: fixed; }
.seo-block th { background: rgba(0,117,255,.15); padding: 12px 14px; font-size: .85rem; font-weight: 700; text-align: left; color: var(--lavender); word-break: break-word; overflow-wrap: anywhere; }
.seo-block td { background: var(--bg3); padding: 10px 14px; font-size: .88rem; color: rgba(255,255,255,.82); border-top: 1px solid var(--border); word-break: break-word; overflow-wrap: anywhere; }

/* ----------------------------------------------------------------
   BREADCRUMB
---------------------------------------------------------------- */
.breadcrumb {
  padding: 16px 0 0;
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--lavender); font-weight: 600; }

/* ----------------------------------------------------------------
   DIVIDERS & GLOW
---------------------------------------------------------------- */
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.glow-bar {
  height: 3px; border-radius: 2px; background: var(--grad);
  margin-bottom: 32px;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand .wordmark { margin-bottom: 14px; }
.footer-brand p { font-size: .83rem; color: var(--muted); line-height: 1.65; }
.footer-col-title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--lavender); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: var(--muted); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .8rem; color: var(--muted); }
.footer-rg {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; color: var(--muted);
}
.badge-18 {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900; color: var(--muted);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 860px) {
  /* Header: show only wordmark + burger */
  .desktop-nav, .hdr-actions { display: none !important; }
  .burger-btn { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero-content { padding: 24px; }
  .hero-slide img { height: 280px; }

  /* App band */
  .app-band { grid-template-columns: 1fr; }
  .app-band-img { width: 100%; max-width: 320px; margin-inline: auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }

  /* SEO block */
  .seo-block { padding: 28px 22px; }
}

@media (max-width: 600px) {
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .odds-cells { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  /* Responsive tables */
  .seo-block table { font-size: .78rem; }
  .seo-block th, .seo-block td { padding: 7px 8px; font-size: .76rem; }
}

@media (max-width: 400px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
