/* ═══════════════════════════════
       BASE
    ═══════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Lato', sans-serif;
      background: #f4f7fb;
      color: #1a2332;
      margin: 0;
    }
    @media (max-width:991px) {.lg-show{display: none !important;}}
    @media (min-width:991px) {.mb-show{display: none !important;}}

    /* ═══════════════════════════════
       NAVBAR
    ═══════════════════════════════ */
    .navbar-custom {
      background: #0d1b2e;
      border-bottom: 2px solid #1565c0;
      padding: 0.65rem 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }
    .navbar-custom .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 1.25rem;
      color: #fff;
      text-decoration: none;
      letter-spacing: 0.5px;
    }
    .navbar-custom .navbar-brand:hover { color: #90caf9; }
    .navbar-custom .nav-link {
      color: #cdd9e8 !important;
      font-size: 0.88rem;
      font-weight: 700;
      padding: 0.4rem 0.9rem !important;
      border-radius: 4px;
      transition: background 0.2s, color 0.2s;
    }
    .navbar-custom .nav-link:hover {
      background: #1565c0;
      color: #fff !important;
    }
    .navbar-custom .navbar-toggler { border-color: #1565c0; }
    .navbar-custom .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero-section {
      position: relative;
      overflow: hidden;
      background: #0d1b2e;
      padding: 72px 0 56px;
      min-height: 520px;
    }
    /* animated gradient orbs */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.45;
      animation: orbFloat 12s ease-in-out infinite;
    }
    .hero-orb-1 { width: 500px; height: 500px; background: #1565c0; top: -160px; left: -120px; animation-delay: 0s; }
    .hero-orb-2 { width: 380px; height: 380px; background: #0d47a1; top: 100px; right: -80px; animation-delay: 4s; }
    .hero-orb-3 { width: 260px; height: 260px; background: #42a5f5; bottom: -80px; left: 40%; animation-delay: 8s; }
    @keyframes orbFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50%       { transform: translateY(-40px) scale(1.07); }
    }
    .hero-content { position: relative; z-index: 1; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(21,101,192,0.5);
      border: 1px solid #42a5f5;
      color: #90caf9;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero-badge .material-icons { font-size: 16px; }

    .hero-section h1 {
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 16px;
    }
    .hero-section h1 span { color: #42a5f5; }
    .hero-lead {
      color: #b0c4de;
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 680px;
      margin-bottom: 28px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 36px;
    }
    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #90caf9;
      font-size: 0.85rem;
      font-weight: 700;
    }
    .hero-meta-item .material-icons { font-size: 17px; color: #42a5f5; }

    /* hero stat cards */
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 40px;
    }
    .hero-stat-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(66,165,245,0.25);
      border-radius: 12px;
      padding: 18px 24px;
      min-width: 160px;
      flex: 1 1 160px;
      text-align: center;
    }
    .hero-stat-card .stat-value {
      font-size: 2rem;
      font-weight: 900;
      color: #42a5f5;
      line-height: 1;
    }
    .hero-stat-card .stat-label {
      font-size: 0.8rem;
      color: #90caf9;
      margin-top: 5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ═══════════════════════════════
       MAIN OFFERS TABLE
    ═══════════════════════════════ */
    .offers-section { padding: 60px 0 40px; }
    .section-title {
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 900;
      color: #0d1b2e;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .section-sub {
      color: #546e7a;
      font-size: 0.95rem;
      margin-bottom: 32px;
    }
    .section-divider {
      width: 48px;
      height: 4px;
      background: #1565c0;
      border-radius: 2px;
      margin-bottom: 14px;
    }

    /* accordion-style offer rows */
    .offer-table-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(13,27,46,0.10); }
    .offer-table-header {
      display: grid;
      grid-template-columns: 2fr 1.8fr 130px 1fr 150px;
      align-items: center;
      background: #0d1b2e;
      color: #90caf9;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      padding: 14px 20px;
      gap: 12px;
    }
    .offer-row-wrap { background: #fff; border-bottom: 1px solid #e8edf4; }
    .offer-row-wrap:last-child { border-bottom: none; }
    .offer-row {
      display: grid;
      grid-template-columns: 2fr 1.8fr 130px 1fr 150px;
      align-items: center;
      padding: 16px 20px;
      gap: 12px;
      cursor: pointer;
      transition: background 0.18s;
    }
    .offer-row:hover { background: #f0f6ff; }
    .offer-logo-cell { display: flex; align-items: center; gap: 12px; }
    .offer-logo {
      width: 80px;
      height: 50px;
      background: #1a2332;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .offer-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
    .offer-name { font-weight: 700; font-size: 0.88rem; color: #fff; }
    .offer-bonus { font-weight: 700; color: #1565c0; font-size: 0.92rem; }
    .offer-mise { font-size: 0.88rem; color: #546e7a; }
    .offer-fr-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
    }
    .offer-fr-badge.yes { background: #e8f5e9; color: #2e7d32; }
    .offer-fr-badge .material-icons { font-size: 15px; }
    .btn-more-info {
      background: #1565c0;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      width: 100%;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex-direction: column;
      line-height: 1.2;
    }
    .btn-more-info:hover { background: #0d47a1; color: #fff; }
    /* hide casino name inside button on desktop */
    .btn-more-info .offer-name { display: none; }
    .btn-more-info .btn-more-label {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.82rem;
      opacity: 1;
    }
    /* name shown next to logo in desktop row */
    .offer-logo-name { font-weight: 700; font-size: 0.95rem; color: #0d1b2e; }

    /* expanded detail panel */
    .offer-detail {
      display: none;
      background: #f0f6ff;
      border-top: 1px solid #d0e4f7;
      padding: 20px 24px 24px;
    }
    .offer-detail.open { display: block; }
    .offer-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
    .offer-feature-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      border: 1px solid #bbdefb;
      border-radius: 8px;
      padding: 6px 14px;
      font-size: 0.84rem;
      font-weight: 700;
      color: #1565c0;
    }
    .offer-feature-tag .material-icons { font-size: 16px; color: #42a5f5; }
    .offer-detail-text { color: #37474f; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
    .offer-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-bonus {
      background: #1565c0;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 24px;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .btn-bonus:hover { background: #0d47a1; }
    .btn-copy-promo {
      background: #fff;
      color: #1565c0;
      border: 2px solid #1565c0;
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .btn-copy-promo:hover { background: #1565c0; color: #fff; }
    .btn-copy-promo .material-icons { font-size: 17px; }

    /* ═══════════════════════════════
       TABLE OF CONTENTS
    ═══════════════════════════════ */
    .toc-section { padding: 20px 0 40px; }
    .toc-box {
      background: #fff;
      border: 1px solid #d0e4f7;
      border-left: 5px solid #1565c0;
      border-radius: 12px;
      padding: 28px 32px;
      box-shadow: 0 2px 12px rgba(13,27,46,0.07);
    }
    .toc-box h2 {
      font-size: 1.05rem;
      font-weight: 900;
      color: #0d1b2e;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    .toc-list { list-style: none; padding: 0; margin: 0; }
    .toc-list li {
      border-bottom: 1px solid #e8edf4;
      padding: 8px 0;
    }
    .toc-list li:last-child { border-bottom: none; }
    .toc-list a {
      color: #1565c0;
      text-decoration: none;
      font-size: 0.92rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.15s;
    }
    .toc-list a:hover { color: #0d47a1; }
    .toc-list .toc-num {
      background: #1565c0;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 900;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════
       GUIDE SECTION
    ═══════════════════════════════ */
    .guide-section { padding: 60px 0; }
    .guide-image-wrap {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(13,27,46,0.13);
    }
    .guide-image-wrap img { width: 100%; height: auto; display: block; }

    /* ═══════════════════════════════
       NEW CASINOS
    ═══════════════════════════════ */
    .new-casinos-section { padding: 60px 0; background: #eef3fa; }
    .features-list-styled { list-style: none; padding: 0; margin: 0 0 8px; }
    .features-list-styled li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid #e0e8f4;
      font-size: 0.95rem;
      color: #1a2332;
    }
    .features-list-styled li:last-child { border-bottom: none; }
    .features-list-styled .feat-num {
      background: #1565c0;
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      font-size: 0.8rem;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* casino review card */
    .casino-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #d0e4f7;
      overflow: hidden;
      margin-bottom: 32px;
      box-shadow: 0 3px 16px rgba(13,27,46,0.08);
    }
    .casino-card-screenshot {
      width: 100%;
      height: auto;
      display: block;
    }
    .casino-card-body { padding: 24px; }
    .casino-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    .casino-card-logo {
      width: 110px;
      height: 70px;
      background: #1a2332;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }
    .casino-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .casino-card-title { font-size: 1.2rem; font-weight: 900; color: #0d1b2e; margin: 0; }
    .casino-card-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }
    .casino-metric {
      border-radius: 8px;
      padding: 9px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 7px;
      flex: 1 1 auto;
      min-width: 160px;
    }
    .casino-metric .material-icons { font-size: 17px; }
    .metric-date    { background: #e3f2fd; color: #0d47a1; }
    .metric-license { background: #f3e5f5; color: #6a1b9a; }
    .metric-bonus   { background: #e8f5e9; color: #1b5e20; }
    .metric-payment { background: #fff8e1; color: #e65100; }
    .metric-games   { background: #fce4ec; color: #880e4f; }
    .metric-support { background: #e0f7fa; color: #006064; }
    .casino-card-text { font-size: 0.92rem; color: #37474f; line-height: 1.7; margin-bottom: 16px; }
    .btn-visit {
      background: #1565c0;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 28px;
      font-size: 0.92rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }
    .btn-visit:hover { background: #0d47a1; color: #fff; }
    .btn-review {
      background: #fff;
      color: #1565c0;
      border: 2px solid #1565c0;
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 0.92rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }
    .btn-review:hover { background: #e3f2fd; color: #0d47a1; }

    /* ═══════════════════════════════
       WHY US / METHODOLOGY
    ═══════════════════════════════ */
    .methodology-section { padding: 60px 0; }
    .method-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #d0e4f7;
      padding: 24px;
      height: 100%;
      box-shadow: 0 2px 12px rgba(13,27,46,0.07);
    }
    .method-icon {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .method-icon .material-icons { font-size: 24px; color: #fff; }
    .method-card h4 { font-size: 1rem; font-weight: 900; color: #0d1b2e; margin-bottom: 8px; }
    .method-card p { font-size: 0.88rem; color: #546e7a; line-height: 1.65; margin: 0; }

    .icon-bg-1 { background: #1565c0; }
    .icon-bg-2 { background: #00897b; }
    .icon-bg-3 { background: #7b1fa2; }
    .icon-bg-4 { background: #e65100; }

    /* ═══════════════════════════════
       TOP 10
    ═══════════════════════════════ */
    .top10-section { padding: 60px 0; background: #eef3fa; }
    .top10-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #d0e4f7;
      padding: 22px;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      box-shadow: 0 2px 10px rgba(13,27,46,0.07);
      transition: box-shadow 0.2s;
    }
    .top10-card:hover { box-shadow: 0 6px 22px rgba(21,101,192,0.14); }
    .top10-num {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      background: #1565c0;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .top10-body h4 { font-size: 1rem; font-weight: 900; color: #0d1b2e; margin-bottom: 6px; }
    .top10-body p { font-size: 0.87rem; color: #546e7a; line-height: 1.6; margin: 0; }
    .top10-body a { color: #1565c0; font-weight: 700; text-decoration: none; }
    .top10-body a:hover { text-decoration: underline; }
    .top10-bonus-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #e8f5e9;
      color: #2e7d32;
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 8px;
      white-space: nowrap;
    }
    .top10-bonus-badge .material-icons { font-size: 14px; }

    /* ═══════════════════════════════
       EXPERTISE GRID
    ═══════════════════════════════ */
    .expertise-section { padding: 60px 0; }
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }
    .expertise-item {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #d0e4f7;
      padding: 20px 16px;
      text-align: center;
      font-size: 0.88rem;
      font-weight: 700;
      color: #1a2332;
      box-shadow: 0 2px 8px rgba(13,27,46,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .expertise-item .material-icons { font-size: 28px; }

    /* ═══════════════════════════════
       TRUST / FIABILITY
    ═══════════════════════════════ */
    .trust-section { padding: 60px 0; background: #eef3fa; }
    .trust-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #d0e4f7;
      padding: 28px;
      height: 100%;
      box-shadow: 0 2px 12px rgba(13,27,46,0.07);
    }
    .trust-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .trust-icon .material-icons { font-size: 26px; color: #fff; }
    .trust-card h4 { font-size: 1rem; font-weight: 900; color: #0d1b2e; margin-bottom: 10px; }
    .trust-card p { font-size: 0.88rem; color: #546e7a; line-height: 1.7; margin: 0; }
    .ti-1 { background: #1565c0; }
    .ti-2 { background: #00897b; }
    .ti-3 { background: #f9a825; }
    .ti-4 { background: #c62828; }

.trust-card{
  padding: 22px 22px;          
}

.trust-card h4{
  margin: 10px 0 10px;
  line-height: 1.25;
}

.trust-card p,
.trust-card li{
  color:#263238;                 
  font-size: 0.98rem;          
  line-height: 1.75;           
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;


  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.trust-card p{
  margin: 0 0 12px;
}
.trust-card p:last-child{
  margin-bottom: 0;
}

.trust-card strong{
  color:#0f172a;
  font-weight: 700;
}
.trust-card em{
  color:#455a64;
}


.trust-card ul,
.trust-card ol{
  margin: 10px 0 12px;
  padding-left: 18px;           
}
.trust-card li{
  margin: 6px 0;
}


@media (min-width: 992px){
  .trust-card p,
  .trust-card li{
    font-size: 1rem;
    line-height: 1.8;
  }
}
    /* ═══════════════════════════════
       SPECIAL TABLES (New Casinos 2026, Bitcoin)
    ═══════════════════════════════ */
    .special-tables-section { padding: 60px 0; }
    .table-styled { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 16px rgba(13,27,46,0.09); }
    .table-styled thead tr th {
      background: #0d1b2e;
      color: #90caf9;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      padding: 14px 18px;
      border: none;
    }
    .table-styled tbody tr { background: #fff; transition: background 0.15s; }
    .table-styled tbody tr:nth-child(even) { background: #f4f8fe; }
    .table-styled tbody tr:hover { background: #e8f1fd; }
    .table-styled tbody td {
      padding: 14px 18px;
      border-bottom: 1px solid #e8edf4;
      font-size: 0.9rem;
      color: #1a2332;
      vertical-align: middle;
    }
    .table-styled tbody tr:last-child td { border-bottom: none; }
    .tbl-logo-cell {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .tbl-logo {
      width: 70px;
      height: 44px;
      background: #1a2332;
      border-radius: 7px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tbl-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
    .tbl-bonus { font-weight: 700; color: #1565c0; }
    .btn-tbl-visit {
      background: #1565c0;
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 7px 16px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      transition: background 0.2s;
      margin-right: 6px;
    }
    .btn-tbl-visit:hover { background: #0d47a1; color: #fff; }
    .btn-tbl-review {
      background: transparent;
      color: #1565c0;
      border: 1.5px solid #1565c0;
      border-radius: 7px;
      padding: 6px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
    }
    .btn-tbl-review:hover { background: #1565c0; color: #fff; }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .footer-custom {
      background: #0d1b2e;
      border-top: 2px solid #1565c0;
      padding: 48px 0 24px;
      color: #8ca4bf;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 10px;
      text-decoration: none;
    }
    .footer-desc { font-size: 0.87rem; color: #7a95b0; line-height: 1.65; max-width: 320px; }
    .footer-heading {
      font-size: 0.82rem;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a {
      color: #7a95b0;
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: #90caf9; }
    .footer-bottom {
      border-top: 1px solid #1a2d45;
      margin-top: 36px;
      padding-top: 20px;
      font-size: 0.82rem;
      color: #526a82;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom a { color: #7a95b0; text-decoration: none; }
    .footer-bottom a:hover { color: #90caf9; }

    /* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
    @media (max-width: 991px) {
      .offer-table-header,
      .offer-row { grid-template-columns: 1.8fr 1.6fr 100px 1fr 130px; }
      .offer-table-header > *:nth-child(4),
      .offer-row > *:nth-child(4) { display: none; }
    }
    @media (max-width: 767px) {
      .offer-table-header { display: none; }
      /* перебудовуємо рядок у flex-картку */
      .offer-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 16px;
        gap: 8px;
      }
      .offer-row .offer-logo-cell { flex: 0 0 auto; }
      .offer-row .offer-bonus     { flex: 1 1 0; min-width: 0; font-size: 0.85rem; line-height: 1.3; }
      .offer-row .offer-fr-cell   { flex: 0 0 auto; }
      .offer-row .offer-mise      { flex: 1 1 0; min-width: 0; font-size: 0.85rem; line-height: 1.3; }
      .offer-row .offer-btn-cell  { flex: 0 0 100%; }
      /* кнопка на мобільному: назва ліворуч + "Plus d'infos" праворуч { display: none; } */
      .offer-btn-cell .btn-more-info {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 14px;
      }
      .offer-btn-cell .btn-more-info .offer-name {
        display: inline;
        font-size: 0.85rem;
        font-weight: 700;
        color: #fff;
      }
      .offer-btn-cell .btn-more-info .btn-more-label { margin-left: auto; opacity: 0.85; }
      .hero-section { padding: 48px 0 36px; }
      .hero-stats { gap: 10px; }
      .hero-stat-card { min-width: 130px; }
      .casino-card-metrics .casino-metric { min-width: 100%; }
      .top10-card { flex-direction: column; }
    }
    @media (max-width: 575px) {
      .tbl-logo { width: 50px; height: 32px; }
      .btn-tbl-visit, .btn-tbl-review { padding: 6px 10px; font-size: 0.78rem; }
    }

    /* Bonus visual block */
.bonus-visual{
  background: #f7f9fc;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.bonus-visual img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.bonus-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.bonus-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  color: #263238;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
}

.bonus-badge .material-icons{
  font-size: 18px;
  color: #546e7a;
}


@media (max-width: 991px){
  .bonus-visual{ padding: 12px; }
}

.games-visual-card .games-visual-figure{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 0;

  height: 340px;            
  overflow: hidden;
}

.games-visual-card .games-visual-img{

  width: var(--img-scale, 100%) !important;
  max-width: none !important;           
  height: auto !important;

  max-height: 340px;

  object-fit: contain;
  display:block;
  border-radius:14px;

  
  transform: scale(var(--img-zoom, 1.15));
  transform-origin: center;
}

@media (min-width: 1200px){
  .games-visual-card .games-visual-figure{ height: 360px; }
  .games-visual-card .games-visual-img{
    max-height: 360px;
    transform: scale(var(--img-zoom, 1.18));
  }
}

@media (max-width: 991px){
  .games-visual-card .games-visual-figure{ height: 260px; }
  .games-visual-card .games-visual-img{
    max-height: 260px;
    width: min(var(--img-scale, 95%), 100%) !important;
    transform: scale(var(--img-zoom, 1.08));
  }
}


.games-visual-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
  justify-content:flex-start;
}

.games-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  color:#263238;
  font-size:0.92rem;
  line-height:1;
  white-space:nowrap;
}

.games-badge .material-icons{
  font-size:18px;
  color:#546e7a;
}


@media (max-width: 991px){
  .games-visual-card .games-visual-figure{ min-height: 260px; }
  .games-visual-card .games-visual-img{ max-width: 360px; }
}


.payments-visual-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  height:100%;
}

.payments-visual-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.payments-visual-title{
  font-weight:800;
  color:#0f172a;
  font-size:1.02rem;
  line-height:1.25;
}

.payments-visual-sub{
  color:#607d8b;
  font-size:0.92rem;
  margin-top:2px;
}

.payments-visual-icon{
  font-size:28px;
  color:#1e88e5;
  background:#eef5ff;
  border:1px solid rgba(30,136,229,.18);
  border-radius:12px;
  padding:8px;
}

.payments-kpis{
  display:grid;
  gap:10px;
  margin:10px 0 12px;
}

.payments-kpi{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  background:#f7f9fc;
  border:1px solid rgba(0,0,0,.05);
}

.payments-kpi .material-icons{
  font-size:20px;
  color:#546e7a;
  margin-top:1px;
}

.kpi-label{
  font-size:0.82rem;
  color:#607d8b;
  line-height:1.2;
}

.kpi-value{
  font-size:0.95rem;
  color:#263238;
  line-height:1.35;
  font-weight:700;
}

.kpi-muted{
  font-weight:600;
  color:#78909c;
  font-size:0.86rem;
}

/* ===== FORCE SHOW THE WHITE CARD (highest priority) ===== */
#games .games-visual-card--force{
  background:#fff !important;
  border:1px solid rgba(0,0,0,.06) !important;
  border-radius:18px !important;
  padding:16px !important;
  box-shadow:0 10px 25px rgba(0,0,0,.06) !important;
  display:block !important;
}

/* Figure frame */
#games .games-visual-card--force .games-visual-figure{
  margin:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height: 340px !important;
  overflow:hidden !important;
  padding: 8px 0 !important;
}

/* Image scale + zoom */
#games .games-visual-card--force .games-visual-img{
  width: var(--img-scale, 100%) !important;
  max-width: none !important;
  height: auto !important;
  max-height: 340px !important;
  object-fit: contain !important;
  display:block !important;
  border-radius:14px !important;
  transform: scale(var(--img-zoom, 1.15)) !important;
  transform-origin:center !important;
}

/* Badges under image */
#games .games-visual-card--force .games-visual-badges{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  margin-top:12px !important;
}

#games .games-visual-card--force .games-badge{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:8px 10px !important;
  border-radius:999px !important;
  background:#fff !important;
  border:1px solid rgba(0,0,0,.06) !important;
  color:#263238 !important;
  font-size:0.92rem !important;
  line-height:1 !important;
  white-space:nowrap !important;
}

#games .games-visual-card--force .games-badge .material-icons{
  font-size:18px !important;
  color:#546e7a !important;
}

/* Responsive */
@media (min-width: 1200px){
  #games .games-visual-card--force .games-visual-figure{ height: 360px !important; }
  #games .games-visual-card--force .games-visual-img{ max-height: 360px !important; }
}
@media (max-width: 991px){
  #games .games-visual-card--force .games-visual-figure{ height: 260px !important; }
  #games .games-visual-card--force .games-visual-img{ max-height: 260px !important; transform: scale(var(--img-zoom, 1.08)) !important; }
}

.catalog-img-wrap{
  width: 80%;
  height: 500px;
  margin: 24px auto 0; 
  border-radius: 14px;
  overflow: hidden;
  background: #0b0f14;
}

.catalog-img{
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;         
  object-fit: cover;
  object-position: center;
}


/* =========================
   HEADER PERKS (Navbar)
   ========================= */

.sd-brand__text { display:flex; flex-direction:column; line-height:1.05; }
.sd-brand__name { font-weight: 900; font-size: 1.05rem; }
.sd-brand__tagline { font-weight: 700; font-size: 0.72rem; color: #90caf9; opacity: 0.95; }

.nav-perks{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-left:14px;
  align-items:center;
}

.nav-perk{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.2px;
  color:#e3f2fd;
  background: rgba(66,165,245,0.10);
  border: 1px solid rgba(144,202,249,0.25);
  white-space:nowrap;
}

.nav-perk .material-icons{
  font-size:16px;
  color:#42a5f5;
}

.nav-perks--mobile{
  padding: 10px 0 6px;
  margin: 6px 0 10px;
  border-bottom: 1px solid rgba(144,202,249,0.18);
}

.navbar-custom{
  backdrop-filter: blur(10px);
  background: rgba(13, 27, 46, 0.92);
}

.navbar-custom .nav-link{
  position: relative;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover{
  color:#fff !important;
}

/* =========================
   REVIEW HERO (typical casino review)
   ========================= */

.review-topline{
  display:flex;
  flex-wrap:wrap;
  gap:12px 14px;
  align-items:center;
  margin-bottom: 14px;
}

.review-mini-meta{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 0.90rem;
}

.review-dot{
  width:8px; height:8px; border-radius:50%;
  background:#42a5f5;
  box-shadow: 0 0 0 4px rgba(66,165,245,.16);
}

.review-sep{ opacity: .8; }

.casino-identity{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.casino-logo-box{
  width:76px;
  height:76px;
  border-radius:18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  flex: 0 0 auto;
  overflow:hidden;
}

.casino-logo-box img{
  width:80%;
  height:auto;
  display:block;
}

.casino-title-wrap{ flex:1 1 auto; min-width: 0; }

.casino-kicker{
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(144,202,249,.95);
  margin-bottom: 6px;
}

.casino-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.05;
}

.casino-title span{
  display:block;
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  color:#42a5f5;
}

.casino-rating-line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 12px;
  margin-top: 10px;
}

.casino-rating-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  color:#fff;
}

.casino-rating-badge .material-icons{
  font-size: 18px;
  color: #ffb300;
}

.casino-rating-badge .muted{ opacity: .85; font-weight: 900; }

.casino-rating-text{
  color: rgba(255,255,255,.80);
  font-weight: 800;
  font-size: .92rem;
}

.review-perks{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.review-perk{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.review-perk .material-icons{
  font-size: 20px;
  color:#90caf9;
  margin-top: 1px;
}

.perk-title{
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .35px;
  color: rgba(255,255,255,.78);
  margin-bottom: 2px;
}

.perk-value{
  font-weight: 900;
  font-size: 1.02rem;
  color:#fff;
  line-height: 1.15;
}

.review-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
  margin-top: 18px;
}

.review-cta-main{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius: 14px;
  font-weight: 900;
  padding: 12px 16px;
}

.review-cta-secondary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius: 14px;
  font-weight: 900;
  padding: 12px 16px;
  border-color: rgba(255,255,255,.35);
  color:#fff;
}

.review-cta-secondary:hover{
  border-color: rgba(255,255,255,.55);
  color:#fff;
}

.review-warn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: .88rem;
}

.review-warn .material-icons{
  font-size: 18px;
  color:#90caf9;
}

/* Right media card */
.casino-media-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.casino-media-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding: 14px 14px 10px;
}

.casino-media-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width:0;
}

.casino-media-logo{
  width:44px;
  height:44px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex: 0 0 auto;
}

.casino-media-logo img{ width:82%; height:auto; display:block; }

.casino-media-name{
  font-weight: 900;
  color:#fff;
  line-height: 1.1;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.casino-media-sub{
  font-weight: 800;
  font-size: .86rem;
  color: rgba(255,255,255,.78);
}

.casino-media-score{
  display:flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(66,165,245,.14);
  border: 1px solid rgba(144,202,249,.22);
  flex: 0 0 auto;
}

.score-big{
  font-weight: 900;
  font-size: 1.25rem;
  color:#fff;
}

.score-small{
  font-weight: 900;
  color: rgba(255,255,255,.86);
}

.casino-media-image{
  padding: 0 14px 14px;
}

.casino-media-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}

.casino-media-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 0 14px 14px;
}

.media-badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .80rem;
  color:#e3f2fd;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.media-badge .material-icons{
  font-size: 16px;
  color:#90caf9;
}

.casino-media-actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 14px 14px;
}

/* Responsive */
@media (max-width: 991px){
  .review-perks{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino-logo-box{ width:64px; height:64px; border-radius:16px; }
}

@media (max-width: 575px){
  .review-perks{ grid-template-columns: 1fr; }
  .casino-identity{ align-items: flex-start; }
  .casino-title span{ font-size: 1.05rem; }
}

@media (max-width: 991px){
  .hero-content .row > .col-lg-5 { order: -1; }
}