/* Hallmark · macrostructure: Index-First · nav: N1b · footer: Ft4 · hero: H7 · theme: Light Fintech Portal
       · knobs: density=compact, elevation=soft, contrast=high · pre-emit: P4 H5 E4 S5 R5 V4
       · contrast: pass (40-41) · slop: pass (42-45) · mobile: pass (34,49,50-57) */

    :root {
      --fcs-navy: #12203F;
      --fcs-navy-2: #1E3260;
      --fcs-ink: #0C1526;
      --fcs-blue: #3F7BF0;
      --fcs-blue-2: #8FB8FF;
      --fcs-blue-wash: #EAF1FE;
      --fcs-gold: #F5B301;
      --fcs-gold-wash: #FFF6E0;
      --fcs-bg: #F5F7FB;
      --fcs-surface: #FFFFFF;
      --fcs-line: #E3E8F2;
      --fcs-muted: #5C6B87;
      --fcs-r-s: 10px;
      --fcs-r-m: 18px;
      --fcs-r-l: 26px;
      --fcs-shadow: 0 2px 4px rgba(18, 32, 63, .04), 0 12px 32px rgba(18, 32, 63, .07);
      --fcs-wrap: 1200px;
      --fcs-font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
    }

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

    html, body {
      font-family: var(--fcs-font);
      background-color: var(--fcs-bg);
      color: var(--fcs-ink);
      line-height: 1.55;
      -webkit-text-size-adjust: 100%;
      overflow-x: clip;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Layout Wrappers */
    .fcs-shell {
      width: 100%;
      max-width: var(--fcs-wrap);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    .fcs-section-gap {
      padding-top: 56px;
      padding-bottom: 56px;
      position: relative;
    }

    .fcs-section-head {
      margin-bottom: 32px;
      text-align: center;
    }

    .fcs-eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--fcs-blue);
      background-color: var(--fcs-blue-wash);
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
    }

    .fcs-heading-2 {
      font-size: clamp(24px, 3.2vw, 34px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--fcs-navy);
      line-height: 1.25;
    }

    .fcs-subtext {
      font-size: 16px;
      color: var(--fcs-muted);
      max-width: 680px;
      margin: 8px auto 0;
    }

    /* S1: Header */
    .fcs-site-header {
      position: sticky;
      top: 0;
      background-color: var(--fcs-surface);
      border-bottom: 1px solid var(--fcs-line);
      z-index: 300;
      box-shadow: 0 2px 10px rgba(18, 32, 63, 0.04);
    }

    .fcs-nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .fcs-brand-link {
      display: flex;
      align-items: center;
      min-height: 44px;
      min-width: 44px;
    }

    .fcs-header-brand-img {
      height: 34px;
      width: auto;
    }

    .fcs-nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
    }

    .fcs-nav-item a {
      font-size: 14px;
      font-weight: 700;
      color: var(--fcs-navy);
      padding: 10px 4px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      transition: color 0.15s ease;
    }

    .fcs-nav-item a:hover {
      color: var(--fcs-blue);
    }

    .fcs-nav-action {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .fcs-btn-primary {
      background-color: var(--fcs-blue);
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      padding: 12px 22px;
      border-radius: var(--fcs-r-s);
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.15s ease;
      white-space: nowrap;
    }

    .fcs-btn-primary:hover {
      background-color: #2b67db;
    }

    .fcs-btn-gold {
      background-color: var(--fcs-gold);
      color: var(--fcs-ink);
      font-size: 15px;
      font-weight: 800;
      padding: 12px 24px;
      border-radius: var(--fcs-r-s);
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }

    .fcs-btn-gold:hover {
      background-color: #e0a300;
    }

    .fcs-btn-outline {
      background-color: transparent;
      color: var(--fcs-navy);
      border: 1px solid var(--fcs-line);
      font-size: 14px;
      font-weight: 700;
      padding: 10px 18px;
      border-radius: var(--fcs-r-s);
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }

    .fcs-btn-outline:hover {
      border-color: var(--fcs-blue);
      color: var(--fcs-blue);
    }

    /* Mobile Nav Hack */
    .fcs-menu-toggle {
      display: none;
    }

    .fcs-hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .fcs-hamburger-bar {
      width: 24px;
      height: 2px;
      background-color: var(--fcs-navy);
      border-radius: 2px;
    }

    /* S2: Thin Hero */
    .fcs-hero-compact {
      position: relative;
      padding-top: 32px;
      padding-bottom: 24px;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--fcs-bg) 100%);
      border-bottom: 1px solid var(--fcs-line);
      overflow: clip;
    }

    .fcs-orb-1 {
      position: absolute;
      width: 280px;
      height: 280px;
      top: -100px;
      left: 5%;
      background: radial-gradient(circle, rgba(63, 123, 240, 0.22) 0%, rgba(63, 123, 240, 0.03) 70%, transparent 100%);
      filter: blur(36px);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .fcs-orb-2 {
      position: absolute;
      width: 260px;
      height: 260px;
      top: -60px;
      right: 8%;
      background: radial-gradient(circle, rgba(245, 179, 1, 0.2) 0%, rgba(245, 179, 1, 0.02) 70%, transparent 100%);
      filter: blur(32px);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .fcs-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
    }

    .fcs-hero-title {
      font-size: clamp(26px, 3.8vw, 40px);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--fcs-navy);
      line-height: 1.18;
      margin-bottom: 10px;
    }

    .fcs-hero-lede {
      font-size: 16px;
      color: var(--fcs-muted);
      margin-bottom: 18px;
    }

    .fcs-trust-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .fcs-trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--fcs-navy-2);
      background-color: var(--fcs-surface);
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid var(--fcs-line);
      box-shadow: 0 1px 3px rgba(18, 32, 63, 0.04);
    }

    .fcs-trust-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #10B981;
    }

    /* S3: TOP-LIST 3 BRAND */
    .fcs-toplist-section {
      padding-top: 36px;
      padding-bottom: 56px;
    }

    .fcs-brand-stack {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .fcs-brand-entry {
      position: relative;
      background-color: var(--fcs-surface);
      border-radius: var(--fcs-r-m);
      border: 1px solid var(--fcs-line);
      box-shadow: var(--fcs-shadow);
      padding: 28px;
      display: grid;
      grid-template-columns: 240px 1fr 220px;
      gap: 28px;
      align-items: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .fcs-brand-entry:hover {
      box-shadow: 0 6px 20px rgba(18, 32, 63, 0.09);
    }

    .fcs-brand-entry.fcs-is-leader {
      border: 2px solid var(--fcs-gold);
    }

    .fcs-leader-ribbon {
      position: absolute;
      top: -12px;
      left: 28px;
      background: linear-gradient(135deg, #F5B301 0%, #D99B00 100%);
      color: #12203F;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 4px 12px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(245, 179, 1, 0.35);
    }

    .fcs-brand-rank-tag {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: var(--fcs-blue-wash);
      color: var(--fcs-blue);
      font-size: 13px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fcs-brand-col-media {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }

    .fcs-brand-logo-box {
      width: 100%;
      height: 90px;
      background-color: var(--fcs-navy);
      border-radius: var(--fcs-r-s);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
    }

    .fcs-brand-logo-box img {
      max-height: 56px;
      width: auto;
      object-fit: contain;
    }

    .fcs-brand-score-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .fcs-star-row {
      display: flex;
      gap: 3px;
      color: var(--fcs-gold);
    }

    .fcs-rating-text {
      font-size: 13px;
      font-weight: 700;
      color: var(--fcs-muted);
    }

    .fcs-brand-col-details {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 0;
    }

    .fcs-brand-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--fcs-navy);
      line-height: 1.2;
    }

    .fcs-brand-bullet-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .fcs-brand-bullet-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 14px;
      color: var(--fcs-ink);
    }

    .fcs-check-icon {
      color: var(--fcs-blue);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .fcs-brand-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }

    .fcs-feature-chip {
      font-size: 12px;
      font-weight: 600;
      background-color: var(--fcs-bg);
      color: var(--fcs-navy-2);
      border: 1px solid var(--fcs-line);
      padding: 4px 10px;
      border-radius: 6px;
    }

    .fcs-brand-col-cta {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: stretch;
      justify-content: center;
    }

    .fcs-cta-disclaimer {
      font-size: 11px;
      color: var(--fcs-muted);
      text-align: center;
    }

    /* S4: Quick Comparison Table */
    .fcs-table-container {
      background-color: var(--fcs-surface);
      border-radius: var(--fcs-r-m);
      border: 1px solid var(--fcs-line);
      box-shadow: var(--fcs-shadow);
      overflow-x: auto;
    }

    .fcs-compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 680px;
    }

    .fcs-compare-table th,
    .fcs-compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--fcs-line);
      vertical-align: middle;
    }

    .fcs-compare-table th {
      background-color: var(--fcs-bg);
      font-size: 14px;
      font-weight: 800;
      color: var(--fcs-navy);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .fcs-compare-table tr:last-child td {
      border-bottom: none;
    }

    .fcs-table-brand-cell {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .fcs-table-logo-box {
      width: 100px;
      height: 44px;
      background-color: var(--fcs-navy);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px;
    }

    .fcs-table-logo-box img {
      max-height: 28px;
      width: auto;
    }

    .fcs-table-brand-name {
      font-weight: 800;
      color: var(--fcs-navy);
      font-size: 15px;
    }

    /* S5: 4 Category Icons */
    .fcs-category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .fcs-category-card {
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      border-radius: var(--fcs-r-m);
      padding: 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      box-shadow: var(--fcs-shadow);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .fcs-category-card:hover {
      transform: translateY(-4px);
      border-color: var(--fcs-blue-2);
    }

    .fcs-category-icon-box {
      width: 72px;
      height: 72px;
      background-color: var(--fcs-blue-wash);
      border-radius: var(--fcs-r-s);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fcs-category-icon-box img {
      width: 52px;
      height: auto;
    }

    .fcs-category-name {
      font-size: 17px;
      font-weight: 800;
      color: var(--fcs-navy);
    }

    .fcs-category-desc {
      font-size: 13px;
      color: var(--fcs-muted);
      line-height: 1.4;
    }

    /* S6: How We Rate */
    .fcs-rate-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .fcs-rate-card {
      position: relative;
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      border-radius: var(--fcs-r-m);
      padding: 28px 22px;
      overflow: clip;
      box-shadow: var(--fcs-shadow);
    }

    .fcs-rate-ghost-num {
      position: absolute;
      top: -10px;
      right: 12px;
      font-size: 72px;
      font-weight: 900;
      color: var(--fcs-bg);
      line-height: 1;
      pointer-events: none;
      z-index: 0;
      letter-spacing: -0.05em;
    }

    .fcs-rate-card-content {
      position: relative;
      z-index: 1;
    }

    .fcs-rate-step-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      color: var(--fcs-blue);
      background-color: var(--fcs-blue-wash);
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .fcs-rate-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--fcs-navy);
      margin-bottom: 8px;
    }

    .fcs-rate-desc {
      font-size: 13px;
      color: var(--fcs-muted);
      line-height: 1.45;
    }

    /* S7: Provider Showcase */
    .fcs-provider-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .fcs-provider-card {
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      border-radius: var(--fcs-r-s);
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 84px;
      box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .fcs-provider-card:hover {
      transform: translateY(-3px);
      border-color: var(--fcs-blue);
    }

    .fcs-provider-card img {
      max-height: 48px;
      width: auto;
      object-fit: contain;
    }

    /* S8: Live Casino Showcase */
    .fcs-live-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 14px;
    }

    .fcs-live-card {
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      border-radius: var(--fcs-r-s);
      overflow: clip;
      display: flex;
      flex-direction: column;
      box-shadow: var(--fcs-shadow);
      transition: transform 0.2s ease;
    }

    .fcs-live-card:hover {
      transform: translateY(-4px);
    }

    .fcs-live-thumb-wrap {
      aspect-ratio: 3 / 4;
      width: 100%;
      overflow: clip;
      background-color: var(--fcs-navy);
    }

    .fcs-live-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .fcs-live-info {
      padding: 10px 8px;
      text-align: center;
    }

    .fcs-live-name {
      font-size: 12px;
      font-weight: 700;
      color: var(--fcs-navy);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* S9: 4D Lottery Showcase */
    .fcs-lottery-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .fcs-lottery-card {
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      border-radius: var(--fcs-r-s);
      padding: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      box-shadow: 0 1px 3px rgba(18, 32, 63, 0.04);
      transition: transform 0.2s ease;
    }

    .fcs-lottery-card:hover {
      transform: translateY(-3px);
    }

    .fcs-lottery-card img {
      width: 68px;
      height: 68px;
      object-fit: contain;
    }

    .fcs-lottery-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--fcs-navy);
      text-align: center;
    }

    /* S10: Payments */
    .fcs-payment-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 900px;
      margin: 0 auto;
    }

    .fcs-pay-chip {
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      color: var(--fcs-navy);
      font-size: 14px;
      font-weight: 700;
      padding: 10px 18px;
      border-radius: 999px;
      box-shadow: 0 1px 3px rgba(18, 32, 63, 0.04);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .fcs-pay-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--fcs-blue);
    }

    /* S11: Game Showcase */
    .fcs-games-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .fcs-game-tile {
      background-color: var(--fcs-surface);
      border-radius: var(--fcs-r-s);
      border: 1px solid var(--fcs-line);
      overflow: clip;
      aspect-ratio: 3 / 4;
      box-shadow: var(--fcs-shadow);
      transition: transform 0.2s ease;
    }

    .fcs-game-tile:hover {
      transform: translateY(-4px);
    }

    .fcs-game-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* S12: FAQ Accordion */
    .fcs-faq-stack {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .fcs-faq-item {
      background-color: var(--fcs-surface);
      border: 1px solid var(--fcs-line);
      border-radius: var(--fcs-r-s);
      box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
      overflow: clip;
    }

    .fcs-faq-item summary {
      padding: 18px 22px;
      font-size: 15px;
      font-weight: 700;
      color: var(--fcs-navy);
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
      min-height: 44px;
    }

    .fcs-faq-item summary::-webkit-details-marker {
      display: none;
    }

    .fcs-faq-item summary::after {
      content: "+";
      font-size: 20px;
      font-weight: 400;
      color: var(--fcs-blue);
      margin-left: 12px;
      transition: transform 0.2s ease;
    }

    .fcs-faq-item[open] summary::after {
      content: "−";
    }

    .fcs-faq-content {
      padding: 0 22px 20px 22px;
      font-size: 14px;
      color: var(--fcs-muted);
      line-height: 1.6;
      border-top: 1px solid var(--fcs-bg);
    }

    /* S13: Longform Slot */
    .fcs-longform {
      padding: 40px 0;
    }

    .fcs-lf-slot {
      display: block;
      border: 2px dashed var(--fcs-gold);
      background-color: var(--fcs-gold-wash);
      min-height: 220px;
      border-radius: var(--fcs-r-l);
      padding: 32px;
    }

    .fcs-lf-demo {
      font-size: 15px;
      color: var(--fcs-navy);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .fcs-lf-hint {
      font-size: 13px;
      color: var(--fcs-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
    }

    /* S14: Footer */
    .fcs-site-footer {
      background-color: var(--fcs-navy);
      color: #E3E8F2;
      padding-top: 60px;
      padding-bottom: 36px;
      border-top: 1px solid var(--fcs-navy-2);
    }

    .fcs-footer-cols {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .fcs-footer-brand-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .fcs-footer-brand-img {
      height: 38px;
      width: auto;
    }

    .fcs-footer-desc {
      font-size: 14px;
      color: var(--fcs-blue-2);
      line-height: 1.55;
      max-width: 320px;
    }

    .fcs-footer-title {
      font-size: 14px;
      font-weight: 800;
      color: #FFFFFF;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }

    .fcs-footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .fcs-footer-links a {
      font-size: 13px;
      color: #A0B2D4;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      transition: color 0.15s ease;
    }

    .fcs-footer-links a:hover {
      color: #FFFFFF;
    }

    .fcs-footer-bottom {
      border-top: 1px solid var(--fcs-navy-2);
      padding-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: center;
    }

    .fcs-legal-notice {
      font-size: 12px;
      color: #889BBF;
      line-height: 1.5;
    }

    .fcs-age-badge {
      display: inline-block;
      align-self: center;
      background-color: #EF4444;
      color: #FFFFFF;
      font-weight: 800;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 6px;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .fcs-brand-entry {
        grid-template-columns: 200px 1fr;
      }
      .fcs-brand-col-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
      }
      .fcs-brand-col-cta .fcs-btn-gold,
      .fcs-brand-col-cta .fcs-btn-outline {
        flex: 1;
      }
      .fcs-provider-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .fcs-live-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .fcs-games-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .fcs-footer-cols {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .fcs-nav-menu,
      .fcs-nav-action {
        display: none;
      }
      .fcs-hamburger-btn {
        display: flex;
      }
      .fcs-menu-toggle:checked ~ .fcs-mobile-drawer {
        display: block;
      }
      .fcs-mobile-drawer {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--fcs-surface);
        border-bottom: 1px solid var(--fcs-line);
        padding: 20px;
        box-shadow: 0 10px 25px rgba(18, 32, 63, 0.1);
      }
      .fcs-mobile-menu-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
      }
      .fcs-mobile-menu-links a {
        font-size: 15px;
        font-weight: 700;
        color: var(--fcs-navy);
        padding: 8px 0;
        display: block;
      }
      .fcs-brand-entry {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
      }
      .fcs-brand-col-media {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
      }
      .fcs-brand-logo-box {
        width: 140px;
        height: 70px;
      }
      .fcs-category-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .fcs-rate-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .fcs-lottery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .fcs-live-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .fcs-games-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .fcs-footer-cols {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 480px) {
      .fcs-category-grid,
      .fcs-rate-grid,
      .fcs-provider-grid,
      .fcs-lottery-grid {
        grid-template-columns: 1fr;
      }
      .fcs-live-grid,
      .fcs-games-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .fcs-brand-col-cta {
        flex-direction: column;
      }
      .fcs-brand-col-cta .fcs-btn-gold,
      .fcs-brand-col-cta .fcs-btn-outline {
        width: 100%;
      }
    }