/* ============================================
   365paraguaybet-play-online.com — Global styles
   Palette: cold graphite + single vermillion accent
   Font: Saira Condensed (headings) + Saira (body)
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(0.433vw + 0.433vh + 0.3175vmin);
  scroll-behavior: smooth;
}

:root {
  /* ===== Background layers — cold graphite ===== */
  --bg-dark: #121317;
  --bg-surface: #1a1c22;
  --bg-elevated: #24272f;
  --bg-line: #343843;

  /* ===== Surface alphas (header / mobile menu / footer accents) ===== */
  --surface-bg: rgba(18, 19, 23, 0.78);
  --surface-bg-strong: rgba(18, 19, 23, 0.97);
  --surface-bg-deep: #0c0d10;

  /* ===== Accent — single, vermillion red ===== */
  --accent: #e23b2e;
  --accent-dark: #b32a1f;
  --accent-bright: #f5503f;
  --accent-soft: rgba(226, 59, 46, 0.12);
  --accent-glow: rgba(226, 59, 46, 0.35);
  --accent-glow-strong: rgba(226, 59, 46, 0.45);
  --accent-glow-bright: rgba(226, 59, 46, 0.6);
  --accent-line: rgba(226, 59, 46, 0.08);
  --accent-line-soft: rgba(226, 59, 46, 0.16);
  --accent-line-mid: rgba(226, 59, 46, 0.24);
  --accent-border: rgba(226, 59, 46, 0.34);

  /* ===== Accent 2 — neutral steel (preserves single-accent character) ===== */
  --accent-2: #c4c8d2;
  --accent-2-dark: #9a9faa;
  --accent-2-soft: rgba(196, 200, 210, 0.1);

  /* ===== Text ===== */
  --text: #f0f1f3;
  --text-muted: #a2a6b0;
  --text-dim: #6b6f7a;

  /* ===== Radius — sharp UI ===== */
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --radius-full: 999px;

  /* ===== Shadows ===== */
  --shadow-accent: 0 0 40px var(--accent-glow);
  --shadow-card: 0 14px 44px rgba(0, 0, 0, 0.6);
  --shadow-glow-soft: 0 0 24px rgba(226, 59, 46, 0.18);
  --shadow-push: 6px 6px 0 var(--bg-elevated);
  --shadow-push-pressed: 2px 2px 0 var(--bg-elevated);

  /* ===== Gradients ===== */
  --gradient-hero:
    radial-gradient(ellipse at 78% 20%, rgba(226, 59, 46, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 88%, rgba(226, 59, 46, 0.07) 0%, transparent 50%),
    linear-gradient(160deg, #121317 0%, #1a1c22 55%, #121317 100%);
  --gradient-accent: linear-gradient(135deg, #e23b2e 0%, #b32a1f 100%);
  --gradient-footer: linear-gradient(180deg, var(--bg-dark) 0%, var(--surface-bg-deep) 100%);

  /* ===== Spacing ===== */
  --main-padding: 50px;
}

body {
  font-family: "Saira", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  padding: 8rem var(--main-padding);
  position: relative;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  list-style: none;
}

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

/* ============================================
   Text scale — headings use Saira Condensed
   ============================================ */
.text-xxl {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 4.9rem;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.005em;
}
.text-xl {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.005em;
}
.text-l {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.14;
}
.text-ml {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.22;
}
.text-m {
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1.5;
}
.text-ms {
  font-size: 1.46rem;
  font-weight: 400;
  line-height: 1.55;
}
.text-s {
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.6;
}
.text-xs {
  font-size: 1.07rem;
  font-weight: 400;
  line-height: 1.55;
}
.text-xxs {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-accent {
  color: var(--accent);
}
.text-gold {
  color: var(--accent-2);
}
.text-muted {
  color: var(--text-muted);
}
.text-dim {
  color: var(--text-dim);
}

/* ============================================
   Buttons — sharp + hard-offset push
   ============================================ */
.primary_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 2.3rem;
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent);
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-push);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.primary_button:hover {
  background: var(--accent-bright);
  color: var(--bg-dark);
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-push-pressed);
}

.outline_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 2.3rem;
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 0;
  box-shadow: var(--shadow-push);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.outline_button:hover {
  background: var(--accent-soft);
  color: var(--accent-bright);
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-push-pressed);
}

/* ============================================
   Section tag — numeric index box + label
   ============================================ */
.section_tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section_tag > b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.45rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

/* ============================================
   Layout helper
   ============================================ */
.base_position {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   Check list — accent tick
   ============================================ */
.check_list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.check_list > li {
  position: relative;
  padding-left: 2.4rem;
  color: var(--text-muted);
  font-size: 1.22rem;
  line-height: 1.55;
}

.check_list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 0;
}

.check_list > li::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.28rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ============================================
   Tables — sharp, accent thead, hover
   ============================================ */
._table {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  box-shadow: var(--shadow-card);
}

._table > table {
  width: 100%;
  border-collapse: collapse;
}

._table > table > thead > tr {
  background: var(--bg-elevated);
}

._table > table > thead > tr > th {
  color: var(--accent);
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  padding: 1.5rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--accent);
}

._table > table > tbody > tr {
  transition: background 0.25s ease;
}

._table > table > tbody > tr:nth-child(even) {
  background: rgba(36, 39, 47, 0.45);
}

._table > table > tbody > tr:hover {
  background: var(--accent-soft);
}

._table > table > tbody > tr > td {
  padding: 1.4rem 1.8rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--bg-line);
  vertical-align: top;
}

._table > table > tbody > tr:last-child > td {
  border-bottom: none;
}

/* ============================================
   Inline section CTA row (universal)
   ============================================ */
.section_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}

.section_cta > .cta_note {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-left: 0.6rem;
  letter-spacing: 0.02em;
}

.section_cta > .cta_note > span {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   Selection
   ============================================ */
::selection {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  html {
    font-size: calc(0.333vw + 0.333vh + 0.2175vmin);
  }

  :root {
    --main-padding: 20px;
  }

  section {
    padding: 10rem var(--main-padding);
  }

  .text-xxl { font-size: 7.4rem; }
  .text-xl  { font-size: 5.6rem; }
  .text-l   { font-size: 4.3rem; }
  .text-ml  { font-size: 3.7rem; }
  .text-m   { font-size: 2.8rem; }
  .text-ms  { font-size: 2.6rem; }
  .text-s   { font-size: 2.4rem; }
  .text-xs  { font-size: 2.2rem; }
  .text-xxs { font-size: 2rem; }

  .primary_button,
  .outline_button {
    font-size: 3.5rem;
    padding: 2rem 3rem;
  }

  .primary_button {
    width: 90%;
    height: 16rem;
  }

  .section_tag {
    font-size: 2.2rem;
    letter-spacing: 0.22em;
  }

  .section_tag > b {
    min-width: 4.4rem;
    height: 4.4rem;
    font-size: 2.4rem;
  }

  .check_list > li {
    padding-left: 4.4rem;
    font-size: 2.4rem;
  }

  .check_list > li::before {
    width: 2.8rem;
    height: 2.8rem;
    top: 0.4rem;
  }

  .check_list > li::after {
    width: 1rem;
    height: 0.5rem;
    left: 0.9rem;
    top: 1.15rem;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }

  ._table > table > thead > tr > th,
  ._table > table > tbody > tr > td {
    padding: 2rem 1.8rem;
    font-size: 2.2rem;
  }

  .section_cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .section_cta > .cta_note {
    font-size: 2rem;
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
