  :root {
    --turf-dark: #CA1F25;
    --turf-deep: #CA1F25;
    --navy: #CA1F25;
    --paper: #EDEFE9;
    --paper-dim: #DDE1D8;
    --amber: #FBD170;
    --amber-glow: #FBD170;
    --live-red: #C0392B;
    --ink: #0E1A14;
    --line: rgba(14, 26, 20, 0.12);
    --board-line: rgba(232, 163, 61, 0.25);
      font-size: 16px;
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
  }

  h1,
  h2,
  h3,
  .display {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .mono {
    font-family: 'IBM Plex Mono', monospace;
  }

  a {
    color: inherit;
  }

  /* ===== Ticker ===== */
  .ticker-wrap {
    background: var(--turf-deep);
    color: var(--amber-glow);
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--board-line);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .ticker {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 28s linear infinite;
  }

  .ticker span {
    margin-right: 3rem;
    opacity: 0.9;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ticker {
      animation: none;
      padding-left: 1rem;
    }
  }
/* ===== Header ===== */
.site-header {
  background: var(--navy);
  color: var(--paper);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 2px solid var(--amber);
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Desktop Nav */
nav.primary {
  display: flex;
  gap: 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-items: center;
}

/* Links */
nav.primary a {
  text-decoration: none;
  opacity: 0.85;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: opacity .15s, border-color .15s;
  color: inherit;
}

nav.primary a:hover,
nav.primary a:focus-visible {
  opacity: 1;
  border-color: var(--amber);
}

/* CTA Button */
.cta-btn {
    background: var(--amber);
    color: var(--ink);
    border: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 3px;
    cursor: pointer;
    transition: transform .12s, background .15s;
}

.cta-btn:hover {
  transform: translateY(-1px);
}
/* CTA Button */
.cta-btn-main {
  background: var(--amber);
    color: var(--ink);
    border: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 3px;
    cursor: pointer;
    transition: transform .12s, background .15s;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-btn-main:hover {
  transform: translateY(-1px);
}

/* Menu Button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
}

/* ===== Mobile View ===== */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  nav.primary {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--navy);
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--amber);
  }

  nav.primary.active {
    display: flex;
  }

  nav.primary a {
    padding: 0.8rem 1rem;
    width: 100%;
  }

  .cta-btn {
    margin: 0.5rem 1rem;
    text-align: center;
  }
  .cta-btn-main {
    text-align: center;
  }
}

  /* ===== Hero ===== */
  .hero {
    background: url(../Images/skyvegas-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--paper);
    padding: 4.5rem 2rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 42px);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 0 auto;
    position: relative;
  }
  .img-hero img{
    border-radius: 10px;
    width: 100%;
  }
  .img-banner{
   
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
   .img-banner img{
     width: 100%;
    margin: auto;
    cursor: pointer;
   }
  .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--amber-glow);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display:inline-block;
    background-color: #CA1F25;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .eyebrow .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--live-red);
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
    animation: pulse 1.8s infinite;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55);
    }

    70% {
      box-shadow: 0 0 0 8px rgba(192, 57, 43, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
    }
  }

  h1.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.05;
    margin: 0 0 1.1rem;
  }

  h1.hero-title em {
    color: var(--amber);
    font-style: normal;
  }

  .hero p.lede {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--paper-dim);
    margin: 0 0 1.8rem;
  }

  .hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.82rem;
    color: var(--amber-glow);
  }

  .hero-meta strong {
    display: block;
    color: var(--paper);
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
  }

  /* ===== Board / Table ===== */
  main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section {
    padding: 3.2rem 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }

  .section-head h2 {
    font-size: 2rem;
    margin: 0;
  }

  .section-head .sub {
    font-size: 1rem;
    color: rgba(14, 26, 20, 0.65);
    max-width: 680px;
  }

  .board {
    background: var(--navy);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 30px -12px rgba(16, 32, 58, 0.4);
  }

  .board-row {
    display: grid;
    grid-template-columns: 44px 1.6fr 1fr 1fr 1.1fr 1fr;
    align-items: center;
    border-bottom: 1px solid var(--board-line);
    color: var(--paper);
  }

  .board-row.head {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-glow);
    background: rgba(232, 163, 61, 0.06);
    padding: 0.7rem 0;
  }

  .board-row:not(.head) {
    padding: 1rem 0;
    transition: background .15s;
  }

  .board-row:not(.head):hover {
    background: rgba(232, 163, 61, 0.05);
  }

  .board-row:last-child {
    border-bottom: none;
  }

  .cell {
    padding: 0 0.6rem;
  }

  .rank {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--amber);
    font-weight: 600;
    text-align: center;
  }

  .book-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
  }

  .book-name .tag {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 0.72rem;
    color: var(--paper-dim);
    letter-spacing: normal;
    margin-top: 0.15rem;
  }

  .score {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.1rem;
    color: var(--amber-glow);
  }

  .score .of {
    color: rgba(245, 200, 120, 0.5);
    font-size: 0.85rem;
  }

  .bonus-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--paper);
  }

  .cta-btn-board {
    background: var(--amber);
    color: var(--turf-deep);
    border: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 3px;
    cursor: pointer;
    transition: transform .12s, background .15s;
  }

  .cta-btn-board:hover,
  .cta-btn-board:focus-visible {
    background: var(--amber-glow);
    transform: translateY(-1px);
  }

@media (max-width: 760px) {
   .hero-inner {
    grid-template-columns:1fr;
   }

  .board-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;

    padding: 1rem;
    margin-bottom: 0.8rem;

    border: 1px solid var(--board-line);
    border-radius: 8px;
    background: var(--navy);
  }

  .board-row.head {
    display: none;
  }

  .board-row:not(.head) {
    padding: 1rem;
}
  .cell {
    padding: 0;
    width: 100%;
  }

  .rank {
    font-size: 0.85rem;
    opacity: 0.8;
  }

  .book-name {
    font-size: 1.1rem;
  }

  .score {
    font-size: 1rem;
  }

  .hide-mobile {
    display: none !important;
  }

  .cta-btn-board {
    width: 100%;
    margin-top: 0.6rem;
  }
}

  /* ===== Methodology ===== */
  .method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }

  .method-card {
    background: white;
    border: 1px solid var(--line);
    border-left: 4px solid var(--amber);
    padding: 1.3rem 1.4rem;
    border-radius: 2px;
  }

  .method-card .num {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--turf-dark);
    font-size: 0.78rem;
    opacity: 0.6;
  }

  .method-card h3 {
    font-size: 1.05rem;
    margin: 0.3rem 0 0.5rem;
  }

  .method-card p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(14, 26, 20, 0.72);
  }

  /* ===== Responsible gambling banner ===== */
  .rg-banner {
    background: var(--navy);
    color: var(--paper);
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    border-radius: 6px;
    margin: 2.6rem 0;
  }

  .rg-banner .badge {
    font-family: 'Oswald', sans-serif;
    background: var(--live-red);
    color: white;
    padding: 0.4rem 0.7rem;
    border-radius: 3px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
  }

  .rg-banner p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--paper-dim);
    line-height: 1.5;
  }

  .rg-banner a {
    color: var(--amber-glow);
    text-decoration: underline;
  }

  footer {
    background: var(--turf-deep);
    color: var(--paper-dim);
    padding: 2.5rem 2rem;
    font-size: 0.82rem;
    line-height: 1.6;
  }

  footer .foot-inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  footer a {
    text-decoration: underline;
  }

  .foot-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
  }

  /* ===== Featured spotlight ===== */
  .spotlight-card {
    background: linear-gradient(135deg, var(--turf-dark) 0%, var(--turf-deep) 100%);
    border-radius: 8px;
    padding: 2.2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .spotlight-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(232, 163, 61, 0.14), transparent 65%);
  }

  .spotlight-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--turf-deep);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.9rem;
  }

  .wordmark {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--paper);
    letter-spacing: 0.01em;
    margin: 0 0 0.6rem;
    position: relative;
  }

  .wordmark .accent {
    color: var(--amber);
  }

  .spotlight-card p.desc {
    color: var(--paper-dim);
    font-size: 1.05rem;
    line-height: 1.55;
    /* max-width: 440px; */
    margin: 0 0 1.4rem;
    position: relative;
  }

  .facts-panel {
    background: rgba(16, 32, 58, 0.55);
    border: 1px solid var(--board-line);
    border-radius: 6px;
    padding: 1.2rem 1.4rem;
    position: relative;
  }
  .facts-panel img{
    width: 100%;
  }

  .fact-row {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(232, 163, 61, 0.15);
    font-size: 0.85rem;
  }

  .fact-row:last-child {
    border-bottom: none;
  }

  .fact-row .k {
    color: var(--paper-dim);
    font-family: 'Inter', sans-serif;
  }

  .fact-row .v {
    color: var(--amber-glow);
    font-family: 'IBM Plex Mono', monospace;
    text-align: right;
  }

  @media (max-width:760px) {
    .spotlight-card {
      grid-template-columns: 1fr;
    }
  }

  /* ===== About / What is section ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.2rem;
    align-items: start;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(14, 26, 20, 0.82);
    margin: 0 0 1rem;
  }

  .quickfacts {
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.3rem 1.4rem;
  }

  .quickfacts h3 {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--turf-dark);
    margin: 0 0 0.9rem;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
  }

  .quickfacts .fr {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .quickfacts .fr:last-child {
    border-bottom: none;
  }

  .quickfacts .fr .k {
    color: rgba(14, 26, 20, 0.6);
  }

  .quickfacts .fr .v {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
  }

  @media (max-width:760px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ===== How it works / steps ===== */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }

  .step {
    background: var(--navy);
    color: var(--paper);
    border-radius: 6px;
    padding: 1.4rem 1.2rem;
    position: relative;
    min-height: 150px;
  }

  .step-num {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--amber);
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.6rem;
  }

  .step h3 {
    font-size: 0.98rem;
    margin: 0 0 0.5rem;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: normal;
  }

  .step p {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--paper-dim);
    margin: 0;
  }

  .step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -1.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--amber);
    font-size: 1.1rem;
    display: none;
  }

  @media (min-width:761px) {
    .step:not(:last-child)::after {
      display: block;
    }
  }

  @media (max-width:760px) {
    .steps {
      grid-template-columns: 1fr;
    }
  }

  /* ===== Bonus & Promotions ===== */
  .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
  }

  .promo-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .promo-op {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    color: var(--turf-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .promo-op .exp {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--live-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .promo-headline {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
  }

  .promo-desc {
    font-size: 0.84rem;
    color: rgba(14, 26, 20, 0.68);
    line-height: 1.5;
    margin: 0;
  }

  .promo-code {
    background: var(--paper);
    border: 1px dashed var(--amber);
    border-radius: 4px;
    padding: 0.5rem 0.7rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .promo-terms {
    font-size: 0.7rem;
    color: rgba(14, 26, 20, 0.45);
    margin: 0;
  }

  /* ===== FAQ ===== */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary .q-num {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--amber);
    font-weight: 600;
    font-size: 0.78rem;
    margin-right: 0.6rem;
  }

  .faq-item summary .chev {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--turf-dark);
    transition: transform .18s;
    flex-shrink: 0;
  }

  .faq-item[open] summary .chev {
    transform: rotate(45deg);
  }

  .faq-item .faq-a {
    padding: 0 1.2rem 1.1rem 2.4rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(14, 26, 20, 0.75);
    margin: 0;
  }

  .faq-item summary:hover {
    background: rgba(232, 163, 61, 0.05);
  }

  /* ===== Features ledger (full-bleed, non-card) ===== */
  .features-strip {
    background: var(--navy);
    color: var(--paper);
    padding: 3.6rem 2rem 3.2rem;
    position: relative;
    overflow: hidden;
  }

  .features-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(232, 163, 61, 0.035) 0px, rgba(232, 163, 61, 0.035) 1px, transparent 1px, transparent 120px);
    pointer-events: none;
  }

  .features-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
  }

  .features-inner .section-head h2 {
    color: var(--paper);
  }

  .features-inner .section-head .sub {
    color: var(--paper-dim);
  }

  .feature-ledger {
    border-top: 1px solid var(--board-line);
  }

  .feature-row {
    display: grid;
    grid-template-columns: 76px 250px 1fr;
    gap: 1.6rem;
    align-items: baseline;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--board-line);
    transition: background .15s;
  }

  .feature-row:hover {
    background: rgba(232, 163, 61, 0.045);
  }

  .feature-index {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(232, 163, 61, 0.32);
    transition: color .15s;
  }

  .feature-row:hover .feature-index {
    color: var(--amber);
  }

  .feature-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.02rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--amber-glow);
    margin: 0;
  }

  .feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--paper-dim);
    margin: 0;
  }

  @media (max-width:760px) {
    .faq-item summary {
        font-size: 0.9rem;
    }
    .faq-item .faq-a {
      font-size: 0.9rem;
    }
    .feature-row {
      grid-template-columns: 44px 1fr;
      grid-template-areas:
        "idx lbl"
        "gap desc";
    }

    .feature-index {
      grid-area: idx;
      font-size: 1.5rem;
    }

    .feature-label {
      grid-area: lbl;
    }

    .feature-desc {
      grid-area: desc;
      grid-column: 2;
      margin-top: 0.4rem;
    }
     .section-head h2 {
    font-size: 1.6rem;
  }
  }