/* ═══════════════════════════════
       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; }

    /* ═══════════════════════════════
       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      { display: none; }
      .offer-row .offer-btn-cell  { flex: 0 0 100%; }
      /* кнопка на мобільному: назва ліворуч + "Plus d'infos" праворуч */
      .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; }
    }