/* clone: 1xbetargentina.casino */
:root {
  --color-bg: #205583;
  --color-header: #1b4c7a;
  --color-text: #ffffff;
  --color-muted: #cbdaea;
  --color-accent: #82ac21;
  --color-accent-hover: #94c327;
  --color-link: #a9ccf2;
  --color-pill: #ffffff;
  --color-pill-text: #1b4377;
  --color-pill-divider: #d7e0ec;
  --color-toc-border: rgba(255, 255, 255, 0.28);
  --btn-text: #ffffff;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1180px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }

a { color: var(--color-link); text-decoration: underline; }
a:hover { color: #ffffff; }

h1, h2, h3, h4 { font-family: var(--font-body); color: var(--color-text); font-weight: 600; margin: 0 0 0.7rem; }
h1 { font-size: clamp(1.7rem, 3.6vw, 2.15rem); font-weight: 700; line-height: 1.18; }
h2 { font-size: clamp(1.35rem, 2.7vw, 1.7rem); text-align: center; margin: 2.4rem 0 1rem; line-height: 1.25; clear: both; }
h3 { font-size: 1.25rem; margin: 1.7rem 0 0.6rem; clear: both; }
h4 { font-size: 1.08rem; margin: 1.3rem 0 0.5rem; color: var(--color-muted); }
p { margin: 0 0 1rem; }
.site-main { padding: 1.5rem 0 2.5rem; }

/* ---------- Header ---------- */
.site-header { background-color: var(--color-header); border-bottom: 1px solid rgba(255,255,255,0.12); position: sticky; top: 0; z-index: 50; }
.site-header-inner { position: relative; display: flex; align-items: center; gap: 1rem; min-height: 64px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand-logo { height: 26px; width: auto; display: block; }
.primary-nav { display: flex; align-items: center; gap: 1.15rem; }
.nav-link { color: var(--color-text); text-decoration: none; font-weight: 500; font-size: 0.96rem; }
.nav-link:hover { color: var(--color-accent-hover); }
.hdr-btns { display: inline-flex; align-items: center; gap: 0.6rem; margin-left: 0.4rem; }
.hdr-btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.92rem;
  padding: 8px 18px; border-radius: var(--radius); color: var(--btn-text);
  background-color: var(--color-accent); border: 1px solid var(--color-accent); white-space: nowrap;
}
.hdr-btn:hover { background-color: var(--color-accent-hover); border-color: var(--color-accent-hover); color: var(--btn-text); }
.hdr-btn--ghost { background-color: transparent; color: var(--color-text); border-color: rgba(255,255,255,0.5); }
.hdr-btn--ghost:hover { background-color: rgba(255,255,255,0.12); color: #fff; }

.nav-toggle-input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.nav-toggle { display: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; }
.nav-toggle-input:focus-visible ~ .nav-toggle { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* ---------- Buttons (CTA) ---------- */
.cta-wrap { text-align: center; margin: 1.7rem 0; }
.cta-btn {
  display: inline-block; text-decoration: none; text-align: center;
  background-color: var(--color-accent); color: var(--btn-text);
  font-weight: 600; font-size: 1.02rem; padding: 13px 44px; border-radius: var(--radius);
  border: none; transition: background-color 0.18s ease;
}
.cta-btn:hover { background-color: var(--color-accent-hover); color: var(--btn-text); }

/* ---------- Hero ---------- */
.hero { padding: 1.4rem 0 0.6rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center; }
.hero h1 { text-align: left; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.3rem; }
.hero-cta .cta-btn { flex: 1 1 auto; min-width: 210px; }
.hero-img img { display: block; width: 100%; max-width: 700px; height: auto; margin: 0 auto; border-radius: 12px; }

/* ---------- Table of Contents (quick nav) ---------- */
.toc { border: 1px solid var(--color-toc-border); border-radius: 12px; margin: 1.8rem 0; overflow: hidden; }
.toc-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; }
.toc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: #fff;
}
.toc-arrow { transition: transform 0.2s ease; font-size: 0.9rem; }
.toc-toggle:checked ~ .toc-head .toc-arrow { transform: rotate(180deg); }
.toc-toggle:focus-visible ~ .toc-head { outline: 2px solid var(--color-accent); outline-offset: -2px; }
.toc-list { display: none; list-style: none; margin: 0; padding: 0 20px 14px; }
.toc-toggle:checked ~ .toc-list { display: block; }
.toc-list li { border-top: 1px solid rgba(255,255,255,0.12); }
.toc-list a { display: block; padding: 10px 2px; color: var(--color-text); text-decoration: none; font-size: 0.97rem; }
.toc-list a:hover { color: var(--color-accent-hover); }

/* ---------- Tables (white pill rows) ---------- */
.info-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; margin: 1.4rem 0; font-size: 0.97rem; clear: both; }
.info-table th, .info-table td {
  background-color: var(--color-pill); color: var(--color-pill-text);
  padding: 12px 18px; text-align: left; vertical-align: top;
}
.info-table th { font-weight: 700; }
.info-table td { font-weight: 400; }
.info-table tr > *:first-child { border-radius: 14px 0 0 14px; }
.info-table tr > *:last-child { border-radius: 0 14px 14px 0; }
.info-table td + td, .info-table th + th { border-left: 1px solid var(--color-pill-divider); }
.info-table a { color: #1a4a8f; }

/* ---------- Content lists ---------- */
.site-main ul { list-style: none; margin: 1rem 0; padding-left: 0; }
.site-main ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem; }
.site-main ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; background: var(--color-accent); border-radius: 2px; }
.site-main ol { margin: 1rem 0; padding-left: 1.4rem; }
.site-main ol li { margin-bottom: 0.55rem; }

/* ---------- Images ---------- */
.img-center { display: block; margin: 1.6rem auto; border-radius: 12px; }
.img-left { float: left; margin: 0.3rem 1.5rem 1rem 0; max-width: 46%; border-radius: 12px; }
.img-right { float: right; margin: 0.3rem 0 1rem 1.5rem; max-width: 46%; border-radius: 12px; }

/* ---------- FAQ accordion ---------- */
.faq-list { margin: 1.5rem 0; }
.faq-item { background-color: #346ba7; border-radius: 16px; margin-bottom: 12px; }
.faq-item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px;
  padding: 15px 20px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ''; }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2382ac21'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.faq-q { margin: 0; flex: 1; color: #fff; font-size: 1.02rem; font-weight: 600; text-align: left; clear: none; }
.faq-arrow { flex-shrink: 0; width: 16px; height: 16px; position: relative; transition: transform 0.25s ease; }
.faq-arrow::before {
  content: ''; position: absolute; left: 2px; top: 2px; width: 8px; height: 8px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg);
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-a { padding: 0 20px 16px 54px; color: #eaf1f8; }
.faq-a p { margin: 0 0 0.6rem; }
.faq-a p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .faq-a { padding: 0 18px 15px 20px; }
}

/* ---------- Footer ---------- */
.site-footer { background-color: var(--color-header); border-top: 3px solid var(--color-accent); margin-top: 2.5rem; padding: 2rem 0 2.3rem; }
.site-footer-inner { text-align: center; }
.footer-logo { height: 26px; width: auto; margin-bottom: 0.9rem; }
.footer-contact { color: var(--color-muted); margin: 0.35rem 0; }
.footer-nav { margin: 0.55rem 0; }
.footer-link { color: var(--color-text); text-decoration: none; font-weight: 600; }
.footer-link:hover { color: var(--color-accent-hover); }
.footer-copy { color: var(--color-muted); margin: 0.5rem 0 0.3rem; font-size: 0.92rem; }
.footer-note { color: var(--color-muted); font-size: 0.82rem; margin: 0.3rem auto 0; max-width: 640px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .hero-img img { max-width: 520px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; cursor: pointer; border-radius: var(--radius); }
  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background-color: var(--color-header); flex-direction: column; align-items: stretch;
    gap: 0; padding: 0.5rem 18px 1rem; border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav-toggle-input:checked ~ .primary-nav { display: flex; }
  .primary-nav .nav-link { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hdr-btns { margin: 0.7rem 0 0; gap: 0.7rem; }
  .hdr-btns .hdr-btn { flex: 1; text-align: center; }

  h2 { margin-top: 1.9rem; }
  .img-left, .img-right { float: none; display: block; margin: 1.4rem auto; max-width: 100%; }

  .info-table { border-spacing: 0; font-size: 0.95rem; }
  .info-table thead { display: none; }
  .info-table tr { display: block; background: var(--color-pill); border-radius: 14px; margin-bottom: 12px; padding: 4px 0; }
  .info-table td { display: flex; justify-content: space-between; gap: 14px; padding: 8px 16px; border-left: none !important; border-radius: 0 !important; }
  .info-table td::before { content: attr(data-label); font-weight: 700; color: var(--color-pill-text); flex-shrink: 0; text-align: left; }
}
