/* 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%;
      }
    }
/* review */
/* Hallmark · macrostructure: Feature Stack · nav: N1 · footer: Ft1 · hero: H1 · theme: fintech-clean
   · knobs: layout=subpage · pre-emit: P4 H5 E5 S5 R4 V4
   · contrast: pass (40-41) · slop: pass (42-45) · mobile: pass (34,49,50-57) */

.fcs-review {
  max-width: var(--fcs-wrap);
  margin: 0 auto;
  padding: 24px 20px 80px;
  font-family: var(--fcs-font);
  color: var(--fcs-ink);
  box-sizing: border-box;
  position: relative;
}

.fcs-review *,
.fcs-review *::before,
.fcs-review *::after {
  box-sizing: border-box;
}

/* Decorative 3D Spheres */
.fcs-glow-sphere-1 {
  position: absolute;
  top: 40px;
  right: 5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--fcs-blue-2), var(--fcs-blue-wash) 60%, rgba(234, 241, 254, 0) 80%);
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.fcs-glow-sphere-2 {
  position: absolute;
  top: 900px;
  left: 2%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--fcs-gold), var(--fcs-gold-wash) 65%, rgba(255, 246, 224, 0) 85%);
  filter: blur(48px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.fcs-glow-sphere-3 {
  position: absolute;
  bottom: 400px;
  right: 3%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--fcs-blue-2), var(--fcs-blue-wash) 70%, rgba(234, 241, 254, 0) 90%);
  filter: blur(45px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* R1: Breadcrumb */
.fcs-bc-nav {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.fcs-bc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--fcs-muted);
}

.fcs-bc-link {
  color: var(--fcs-muted);
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.fcs-bc-link:hover {
  color: var(--fcs-blue);
}

.fcs-bc-link:focus-visible {
  outline: 2px solid var(--fcs-blue);
  outline-offset: 2px;
}

.fcs-bc-sep {
  color: var(--fcs-line);
  user-select: none;
}

.fcs-bc-current {
  color: var(--fcs-ink);
  font-weight: 600;
}

/* R2: Header Panel */
.fcs-summary-panel {
  background: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-l);
  padding: 36px;
  box-shadow: var(--fcs-shadow);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.fcs-summary-top {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.fcs-brand-box {
  background: var(--fcs-navy);
  border-radius: var(--fcs-r-m);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.fcs-brand-img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.fcs-summary-main {
  min-width: 0;
}

.fcs-brand-h1 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fcs-navy);
  margin: 0 0 14px 0;
  overflow-wrap: anywhere;
}

.fcs-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.fcs-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--fcs-gold);
}

.fcs-star-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.fcs-rating-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--fcs-ink);
  background: var(--fcs-gold-wash);
  padding: 3px 8px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}

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

.fcs-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.fcs-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--fcs-blue-wash);
  color: var(--fcs-navy-2);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--fcs-r-s);
  border: 1px solid rgba(63, 123, 240, 0.15);
}

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

.fcs-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fcs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  background: var(--fcs-gold);
  color: var(--fcs-navy);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--fcs-r-s);
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(245, 179, 1, 0.3);
}

.fcs-btn-primary:hover {
  background: #e2a500;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 179, 1, 0.4);
}

.fcs-btn-primary:active {
  transform: translateY(0);
}

.fcs-btn-primary:focus-visible {
  outline: 2px solid var(--fcs-navy);
  outline-offset: 2px;
}

.fcs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--fcs-bg);
  color: var(--fcs-navy-2);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--fcs-r-s);
  border: 1px solid var(--fcs-line);
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.fcs-btn-secondary:hover {
  background: var(--fcs-surface);
  border-color: var(--fcs-blue-2);
  color: var(--fcs-blue);
}

.fcs-btn-secondary:focus-visible {
  outline: 2px solid var(--fcs-blue);
  outline-offset: 2px;
}

.fcs-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--fcs-line);
  padding-top: 24px;
}

.fcs-stat-card {
  background: var(--fcs-bg);
  padding: 16px 18px;
  border-radius: var(--fcs-r-s);
  border: 1px solid rgba(227, 232, 242, 0.7);
}

.fcs-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fcs-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.fcs-stat-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--fcs-navy);
  line-height: 1.2;
}

/* Common Section Layout */
.fcs-section {
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.fcs-sec-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fcs-navy);
  margin: 0 0 20px 0;
}

/* R3: Quick Verdict */
.fcs-verdict-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fcs-verdict-card {
  background: var(--fcs-surface);
  border-radius: var(--fcs-r-m);
  padding: 24px;
  border: 1px solid var(--fcs-line);
  box-shadow: var(--fcs-shadow);
}

.fcs-verdict-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 800;
}

.fcs-pros-card .fcs-verdict-head {
  color: #1b8743;
}

.fcs-cons-card .fcs-verdict-head {
  color: var(--fcs-muted);
}

.fcs-verdict-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.fcs-pros-icon {
  background: #e6f7ec;
  color: #1b8743;
}

.fcs-cons-icon {
  background: var(--fcs-line);
  color: var(--fcs-muted);
}

.fcs-verdict-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcs-verdict-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fcs-ink);
}

.fcs-item-bullet {
  flex-shrink: 0;
  margin-top: 2px;
}

/* R4: At a Glance Table */
.fcs-glance-wrapper {
  background: var(--fcs-surface);
  border-radius: var(--fcs-r-m);
  border: 1px solid var(--fcs-line);
  box-shadow: var(--fcs-shadow);
  overflow: hidden;
}

.fcs-glance-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fcs-glance-row {
  border-bottom: 1px solid var(--fcs-line);
}

.fcs-glance-row:last-child {
  border-bottom: none;
}

.fcs-glance-row:nth-child(even) {
  background: rgba(245, 247, 251, 0.4);
}

.fcs-glance-label {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fcs-muted);
  width: 32%;
  min-width: 140px;
  vertical-align: middle;
}

.fcs-glance-val {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fcs-navy);
  vertical-align: middle;
}

.fcs-licence-badges {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.fcs-licence-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
}

/* R5: Promo Banner */
.fcs-banner-container {
  border-radius: var(--fcs-r-l);
  overflow: hidden;
  box-shadow: var(--fcs-shadow);
  border: 1px solid var(--fcs-line);
  background: var(--fcs-navy);
}

.fcs-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* R6: Provider Grid */
.fcs-provider-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.fcs-provider-item {
  background: 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;
  justify-content: center;
  min-height: 84px;
  box-shadow: 0 1px 3px rgba(18, 32, 63, 0.03);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.fcs-provider-item:hover {
  transform: translateY(-2px);
  border-color: var(--fcs-blue-2);
  box-shadow: 0 6px 16px rgba(18, 32, 63, 0.08);
}

.fcs-provider-img {
  max-width: 100%;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  display: block;
}

/* R7: Promotions */
.fcs-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fcs-promo-card {
  background: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--fcs-shadow);
  position: relative;
  overflow: hidden;
}

.fcs-promo-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--fcs-blue-wash);
  color: var(--fcs-blue);
  margin-bottom: 12px;
}

.fcs-promo-h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--fcs-navy);
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.fcs-promo-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fcs-muted);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.fcs-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--fcs-bg);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-s);
  color: var(--fcs-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.fcs-promo-btn:hover {
  background: var(--fcs-gold);
  border-color: var(--fcs-gold);
  color: var(--fcs-navy);
}

.fcs-promo-btn:focus-visible {
  outline: 2px solid var(--fcs-navy);
  outline-offset: 2px;
}

/* R8: Long-form Section */
.fcs-longform {
  background: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-m);
  padding: 32px;
  margin-bottom: 44px;
  box-shadow: var(--fcs-shadow);
  position: relative;
  z-index: 1;
}

.fcs-lf-demo {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fcs-ink);
  margin: 0 0 12px 0;
}

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

/* R9: Compare Brands */
.fcs-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fcs-compare-card {
  background: var(--fcs-surface);
  border: 1px solid var(--fcs-line);
  border-radius: var(--fcs-r-m);
  padding: 24px;
  box-shadow: var(--fcs-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fcs-compare-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.fcs-compare-logo-box {
  background: var(--fcs-navy);
  border-radius: var(--fcs-r-s);
  padding: 12px;
  width: 130px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcs-compare-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.fcs-compare-brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--fcs-navy);
  margin: 0;
}

.fcs-compare-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--fcs-muted);
  line-height: 1.45;
}

.fcs-compare-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fcs-compare-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fcs-blue);
  margin-top: 6px;
  flex-shrink: 0;
}

.fcs-compare-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--fcs-blue-wash);
  color: var(--fcs-navy-2);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--fcs-r-s);
  text-decoration: none;
  transition: all 0.15s ease;
}

.fcs-compare-link:hover {
  background: var(--fcs-blue);
  color: #ffffff;
}

.fcs-compare-link:focus-visible {
  outline: 2px solid var(--fcs-blue);
  outline-offset: 2px;
}

/* R10: Final CTA */
.fcs-final-cta-box {
  background: var(--fcs-navy);
  color: #ffffff;
  border-radius: var(--fcs-r-l);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--fcs-shadow);
  position: relative;
  overflow: hidden;
}

.fcs-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.fcs-cta-h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.fcs-cta-sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fcs-blue-2);
  margin: 0 0 24px 0;
}

.fcs-cta-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 36px;
  background: var(--fcs-gold);
  color: var(--fcs-navy);
  font-weight: 800;
  font-size: 16px;
  border-radius: var(--fcs-r-s);
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 20px rgba(245, 179, 1, 0.35);
  margin-bottom: 16px;
}

.fcs-cta-btn-gold:hover {
  background: #e2a500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 179, 1, 0.45);
}

.fcs-cta-btn-gold:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.fcs-cta-terms {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .fcs-provider-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fcs-review {
    padding: 16px 14px 60px;
  }
  
  .fcs-summary-panel {
    padding: 24px 18px;
  }

  .fcs-summary-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fcs-brand-box {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .fcs-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fcs-verdict-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fcs-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fcs-promo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fcs-compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fcs-final-cta-box {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .fcs-stat-grid {
    grid-template-columns: 1fr;
  }

  .fcs-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fcs-glance-label {
    width: 40%;
    padding: 12px 14px;
  }

  .fcs-glance-val {
    padding: 12px 14px;
  }

  .fcs-btn-row {
    flex-direction: column;
  }

  .fcs-btn-primary,
  .fcs-btn-secondary {
    width: 100%;
  }

  .fcs-compare-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* brand accent */
.fcs-b-cmc88{--fcs-accent:#7C3AED;--fcs-accent-2:#A78BFA;
--fcs-accent-wash:#F3EEFF;--fcs-plate:linear-gradient(135deg,#1B1035,#2E1B5B)}
.fcs-b-tgb88{--fcs-accent:#B8860B;--fcs-accent-2:#E3B341;
--fcs-accent-wash:#FBF4E3;--fcs-plate:linear-gradient(135deg,#1A1509,#3A2E10)}
.fcs-b-mcc888{--fcs-accent:#9333EA;--fcs-accent-2:#C084FC;
--fcs-accent-wash:#F7EDFF;--fcs-plate:linear-gradient(135deg,#1E0B33,#3B1364)}

.fcs-review .fcs-brand-box,.fcs-review .fcs-compare-logo-box{background:var(--fcs-plate)!important}
.fcs-review .fcs-chip-dot{background:var(--fcs-accent)!important}
.fcs-review .fcs-stat-value{color:var(--fcs-accent)}
.fcs-review .fcs-promo-tag{background:var(--fcs-accent-wash);color:var(--fcs-accent)}
.fcs-review .fcs-sec-title::after{content:"";display:block;width:56px;height:4px;border-radius:4px;
 background:linear-gradient(90deg,var(--fcs-accent),var(--fcs-accent-2));margin-top:12px}

/* ---- section bo sung ---- */
.fcs-xsec{max-width:var(--fcs-wrap);margin:0 auto;padding:44px 20px}
.fcs-xhead{margin-bottom:22px}
.fcs-xeyebrow{display:inline-block;padding:5px 13px;border-radius:999px;background:var(--fcs-accent-wash);
 color:var(--fcs-accent);font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.fcs-xtitle{font-size:clamp(22px,3vw,30px);font-weight:800;letter-spacing:-.02em;color:var(--fcs-navy);
 margin:12px 0 6px}
.fcs-xsub{color:var(--fcs-muted);margin:0;max-width:62ch;line-height:1.65}

.fcs-promo-stack{display:grid;gap:16px}
.fcs-promo-shot{display:block;width:100%;height:auto;border-radius:var(--fcs-r-m);
 border:1px solid var(--fcs-line);box-shadow:var(--fcs-shadow)}
.fcs-tile-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px}
.fcs-tile-img{display:block;width:100%;height:auto;border-radius:var(--fcs-r-s);border:1px solid var(--fcs-line)}

.fcs-game-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(126px,1fr));gap:14px}
.fcs-game-cell{background:var(--fcs-surface);border:1px solid var(--fcs-line);border-radius:var(--fcs-r-m);
 padding:8px;box-shadow:var(--fcs-shadow);transition:transform .18s ease}
.fcs-game-cell:hover{transform:translateY(-3px)}
.fcs-game-img{display:block;width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:10px}
.fcs-game-cap{display:block;margin-top:8px;font-size:12px;font-weight:700;color:var(--fcs-muted);
 text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

.fcs-prov2-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(112px,1fr));gap:12px}
.fcs-prov2-cell{background:var(--fcs-surface);border:1px solid var(--fcs-line);border-radius:var(--fcs-r-s);
 display:grid;place-items:center;padding:14px;min-height:74px}
.fcs-prov2-img{max-width:100%;height:auto;max-height:42px;width:auto}

.fcs-device{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;
 background:var(--fcs-surface);border:1px solid var(--fcs-line);border-radius:var(--fcs-r-l);
 padding:28px;box-shadow:var(--fcs-shadow)}
.fcs-device-copy p{color:var(--fcs-muted);line-height:1.7;margin:10px 0 0}
.fcs-device-img{display:block;width:100%;height:auto}
@media (max-width:820px){.fcs-device{grid-template-columns:1fr;padding:20px}}
