/* ============================================================
   Vavada Casino NL — affiliate landing
   No gradients. Content-first. Mobile-first tables scroll.
   ============================================================ */

   :root {
    --c-header: #242435;
    --c-bg: #212334;
    --c-footer: #191921;
    --c-cta: #FE284A;
    --c-cta-hover: #e51f3f;
    --c-text: #e8e9ee;
    --c-text-dim: #a4a7b8;
    --c-text-muted: #7a7d8e;
    --c-border: #2e3146;
    --c-card: #2a2c3f;
    --c-card-hover: #313449;
    --c-secondary: #4a4d63;
    --c-success: #22c55e;
    --c-warn: #f59e0b;
    --c-star: #fbbf24;
  
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
  
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
  
    --container: 1240px;
    --font-body: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
    --font-head: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: var(--c-text);
    text-decoration: none;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
  }
  
  /* ---------- Layout ---------- */
  :root {
    --font-body: "Manrope", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
    --font-head: "Manrope", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  }
  
  body {
    font-family: var(--font-body);
  }
  
  h1, h2, h3, .logo {
    font-family: var(--font-head);
  }
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-4);
  }
  
  .section {
    padding: var(--space-7) 0;
  }
  
  .section--tight {
    padding: var(--space-5) 0;
  }
  
  .section__title {
    font-size: clamp(22px, 2.4vw, 30px);
    margin: 0 0 var(--space-3);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  
  .section__lead {
    color: var(--c-text-dim);
    max-width: 780px;
    margin: 0 0 var(--space-5);
    font-size: 16px;
  }
  
  h3.section__sub {
    font-size: clamp(18px, 1.6vw, 22px);
    margin: var(--space-6) 0 var(--space-3);
    line-height: 1.3;
  }
  
  /* ---------- Header ---------- */
  
  .header {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-4);
  }
  
  .logo {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.04em;
    color: var(--c-cta);
  }
  
  .logo span {
    color: var(--c-text);
  }
  
  .header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  
  /* ---------- Buttons ---------- */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 12px 22px;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background-color .15s, transform .15s;
    white-space: nowrap;
    border: 1px solid transparent;
  }
  
  .btn--primary {
    background: var(--c-cta);
    color: #fff;
  }
  
  .btn--primary:hover {
    background: var(--c-cta-hover);
  }
  
  .btn--secondary {
    background: transparent;
    color: var(--c-text);
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 12px 8px;
  }
  
  .btn--secondary:hover {
    color: var(--c-cta);
  }
  
  .btn--ghost {
    background: var(--c-secondary);
    color: #fff;
  }
  
  .btn--ghost:hover {
    background: #5a5d75;
  }
  
  .btn--block {
    width: 100%;
  }
  
  .btn--lg {
    padding: 16px 30px;
    font-size: 15px;
  }
  
  /* ---------- Hero ---------- */
  
  .hero {
    padding: var(--space-7) 0 var(--space-6);
    border-bottom: 1px solid var(--c-border);
  }
  
  .hero__hook {
    display: inline-block;
    font-size: 13px;
    color: var(--c-text-muted);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: var(--space-4);
    letter-spacing: 0.01em;
  }
  
  .hero__hook strong {
    color: var(--c-text);
  }
  
  .hero__title {
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-4);
    max-width: 900px;
  }
  
  .hero__text {
    color: var(--c-text-dim);
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 var(--space-5);
  }
  
  .hero__text + .hero__text {
    margin-top: var(--space-3);
  }
  
  .hero__cta-row {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: var(--space-6);
  }
  
  /* Stat pills — non-standard placement of key facts */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-3);
  }
  
  .stat {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    padding: var(--space-4);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  
  .stat__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    background: #353753;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 18px;
  }
  
  .stat__num {
    font-weight: 800;
    font-size: 17px;
    line-height: 1.1;
  }
  
  .stat__label {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
  }
  
  /* ---------- Tabs ---------- */
  
  .tabs {
    display: flex;
    gap: var(--space-2);
    margin: var(--space-4) 0 var(--space-5);
    flex-wrap: wrap;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: var(--space-2);
  }
  
  .tab {
    padding: 10px 18px;
    border-radius: var(--r-md);
    background: transparent;
    color: var(--c-text-dim);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color .15s, background-color .15s;
  }
  
  .tab:hover {
    color: var(--c-text);
  }
  
  .tab--active {
    background: var(--c-cta);
    color: #fff;
  }
  
  .tab__count {
    opacity: 0.7;
    font-weight: 500;
    margin-left: 4px;
    font-size: 12px;
  }
  
  /* ---------- Game grid ---------- */
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-3);
  }
  
  .tile {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    transition: transform .15s, border-color .15s;
  }
  
  .tile:hover {
    border-color: #3d4163;
    transform: translateY(-2px);
  }
  
  .tile__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #1a1c2b;
    overflow: hidden;
  }
  
  /* Placeholder block (no logos, just a flat color block + alt) */
  .tile__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 8px;
    background: #1d1f30;
  }
  
  .tile__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--c-cta);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  
  .tile__badge--new {
    background: #22c55e;
  }
  
  .tile__badge--hot {
    background: #f97316;
  }
  
  .tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 14, 23, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .18s;
    padding: var(--space-3);
  }
  
  .tile:hover .tile__overlay,
  .tile:focus-within .tile__overlay {
    opacity: 1;
  }
  
  .tile__overlay .btn {
    min-width: 110px;
    padding: 9px 16px;
    font-size: 12px;
  }
  
  .tile__body {
    padding: 10px;
    text-align: center;
    border-top: 1px solid var(--c-border);
  }
  
  .tile__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .tile__provider {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px;
  }
  
  .tile.is-hidden {
    display: none;
  }
  
  /* Mobile tile overlay: tap to reveal handled via JS toggle .is-active */
  .tile.is-active .tile__overlay {
    opacity: 1;
  }
  
  .game-grid__more {
    display: flex;
    justify-content: center;
    margin-top: var(--space-5);
  }
  
  /* ---------- Scenario cards ---------- */
  
  .scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-4);
  }
  
  .card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
  }
  
  .card__head {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: var(--space-2);
  }
  
  .card__title {
    font-size: 19px;
    margin: 0 0 var(--space-3);
    line-height: 1.3;
  }
  
  .card__text {
    color: var(--c-text-dim);
    font-size: 15px;
    margin: 0 0 var(--space-4);
    flex-grow: 1;
  }
  
  .card__cta {
    margin-top: auto;
  }
  
  /* ---------- Quick facts table ---------- */
  
  .table-wrap {
    overflow-x: auto;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    -webkit-overflow-scrolling: touch;
  }
  
  .table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
  }
  
  .table th,
  .table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    vertical-align: top;
  }
  
  .table tr:last-child th,
  .table tr:last-child td {
    border-bottom: none;
  }
  
  .table th {
    background: #25273a;
    color: var(--c-text-dim);
    font-weight: 600;
    width: 38%;
  }
  
  .table td {
    color: var(--c-text);
  }
  
  .table--compare th,
  .table--compare td {
    text-align: center;
  }
  
  .table--compare th:first-child,
  .table--compare td:first-child {
    text-align: left;
  }
  
  /* ---------- Status badge ---------- */
  
  .status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-success);
    padding: 10px 14px;
    border-radius: var(--r-md);
    font-size: 14px;
    margin: var(--space-3) 0 var(--space-5);
  }
  
  .status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  }
  
  .status__url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    color: var(--c-text);
    font-size: 13px;
  }
  
  .status__meta {
    color: var(--c-text-muted);
    font-size: 12px;
  }
  
  /* ---------- Step list ---------- */
  
  .steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-2);
  }
  
  .steps li {
    counter-increment: step;
    padding: 12px 16px 12px 50px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    position: relative;
    font-size: 15px;
  }
  
  .steps li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: var(--c-cta);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
  }
  
  /* Checklist (registratie pre-flight) */
  .checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
  
  .checklist li {
    padding: 12px 14px 12px 42px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    position: relative;
    font-size: 14px;
  }
  
  .checklist li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-success);
    font-weight: 700;
    font-size: 16px;
  }
  
  /* ---------- Bonus codes ---------- */
  
  .bonus-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
  
  .bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .bonus-card__type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-cta);
    font-weight: 700;
  }
  
  .bonus-card__value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
  }
  
  .bonus-card__desc {
    color: var(--c-text-dim);
    font-size: 14px;
    margin: 0;
  }
  
  .bonus-card__code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1c1e2e;
    border: 1px dashed var(--c-border);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  
  .bonus-card__code-label {
    color: var(--c-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
  }
  
  .bonus-card__code-value {
    color: var(--c-text);
    font-weight: 700;
  }
  
  .bonus-card .btn {
    margin-top: auto;
  }
  
  /* ---------- Reviews / ratings ---------- */
  
  .ratings {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-5);
  }
  
  .ratings__meta {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: var(--space-3);
  }
  
  .rating-row {
    display: grid;
    grid-template-columns: 200px 1fr 50px;
    align-items: center;
    gap: var(--space-3);
    padding: 8px 0;
  }
  
  .rating-row__label {
    font-size: 14px;
    color: var(--c-text-dim);
  }
  
  .rating-bar {
    background: #1a1c2b;
    height: 10px;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .rating-bar__fill {
    background: var(--c-cta);
    height: 100%;
    border-radius: 6px;
  }
  
  .rating-row__score {
    font-weight: 700;
    text-align: right;
    font-size: 14px;
  }
  
  .reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
  
  .review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: var(--space-4);
  }
  
  .review__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
  }
  
  .review__name {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
  }
  
  .review__meta {
    color: var(--c-text-muted);
    font-size: 12px;
  }
  
  .review__stars {
    color: var(--c-star);
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .review__text {
    font-size: 14px;
    color: var(--c-text-dim);
    line-height: 1.55;
    margin: 0;
  }
  
  /* ---------- Sport section ---------- */
  
  .sport-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin: var(--space-4) 0 var(--space-5);
    list-style: none;
    padding: 0;
  }
  
  .sport-list li {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    padding: 14px 16px;
    border-radius: var(--r-md);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .sport-list li::before {
    content: "›";
    color: var(--c-cta);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
  }
  
  /* ---------- FAQ ---------- */
  
  .faq-group {
    margin-bottom: var(--space-5);
  }
  
  .faq-group__title {
    font-size: 17px;
    margin: 0 0 var(--space-3);
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    margin-bottom: var(--space-2);
    overflow: hidden;
  }
  
  .faq-item[open] {
    border-color: #3d4163;
  }
  
  .faq-item summary {
    list-style: none;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: var(--c-text-muted);
    font-weight: 400;
    transition: transform .15s;
  }
  
  .faq-item[open] summary::after {
    content: "−";
    color: var(--c-cta);
  }
  
  .faq-item__body {
    padding: 0 18px 18px;
    color: var(--c-text-dim);
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* ---------- Footer ---------- */
  
  .footer {
    background: var(--c-footer);
    padding: var(--space-7) 0 var(--space-5);
    margin-top: var(--space-7);
  }
  
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
    justify-content: center;
    margin-bottom: var(--space-5);
  }
  
  .footer__nav a {
    color: var(--c-text-dim);
    font-size: 14px;
    transition: color .15s;
  }
  
  .footer__nav a:hover {
    color: var(--c-cta);
  }
  
  .footer__apps {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
  }
  
  .footer__legal {
    border-top: 1px solid #25273a;
    padding-top: var(--space-5);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-5);
    align-items: center;
    font-size: 12px;
    color: var(--c-text-muted);
  }
  
  .footer__legal-block {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
  }
  
  .footer__badge {
    background: #1f7a3a;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    height: fit-content;
  }
  
  .footer__age {
    background: #b91c1c;
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
  }
  
  .footer__center {
    text-align: center;
  }
  
  /* ---------- Responsive ---------- */
  
  @media (max-width: 1100px) {
    .game-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .scenarios,
    .reviews,
    .bonus-list {
      grid-template-columns: 1fr;
    }
  
    .game-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .rating-row {
      grid-template-columns: 130px 1fr 40px;
    }
  
    .checklist {
      grid-template-columns: 1fr;
    }
  
    .sport-list {
      grid-template-columns: 1fr;
    }
  
    .footer__legal {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer__legal-block {
      justify-content: center;
    }
  }
  
  @media (max-width: 640px) {
    .section {
      padding: var(--space-6) 0;
    }
  
    .hero {
      padding: var(--space-5) 0;
    }
  
    .header__inner {
      height: 60px;
    }
  
    .header__actions .btn {
      padding: 9px 14px;
      font-size: 12px;
    }
  
    .header__actions .btn--secondary {
      display: none;
    }
  
    .game-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .tile__title {
      font-size: 12px;
    }
  
    .tabs {
      gap: 4px;
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: var(--space-3);
      -webkit-overflow-scrolling: touch;
    }
  
    .tab {
      padding: 8px 12px;
      font-size: 13px;
      white-space: nowrap;
    }
  
    .stat__icon {
      width: 32px;
      height: 32px;
      flex-basis: 32px;
      font-size: 15px;
    }
  
    .stat__num {
      font-size: 14px;
    }
  
    .hero__cta-row {
      flex-direction: column;
      align-items: stretch;
    }
  
    .hero__cta-row .btn {
      width: 100%;
    }
  
    .table th,
    .table td {
      padding: 10px 12px;
      font-size: 13px;
    }
  }
  
  @media (max-width: 420px) {
    .game-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-2);
    }
  
    .tile__overlay .btn {
      min-width: 0;
      padding: 7px 10px;
      font-size: 11px;
    }
  }
  
  /* ---------- Anchor offset for sticky header ---------- */
  [id] {
    scroll-margin-top: 90px;
  }
  body {
    margin: 0;
    background-image: url('assets/background.svg');
    background-repeat: repeat;
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
  }
  .tile__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #121522;
  }
  
  .tile__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 20, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 16px;
  }
  
  .tile:hover .tile__overlay {
    opacity: 1;
  }
  
  .tile__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
  }
  
  .tile__body {
    padding: 14px 14px 16px;
  }
  
  .tile__title {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .tile__provider {
    margin: 6px 0 0;
    opacity: 0.75;
    font-size: 14px;
  }
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  
  .tile {
    border-radius: 18px;
    overflow: hidden;
    background: #151827;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .center{
    margin: 0 auto;
    margin-top:20px;
  }
  #mobiel .container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: center;
  }
  
  #mobiel .section__title,
  #mobiel .section__lead,
  #mobiel .table-wrap,
  #mobiel p {
    grid-column: 1;
  }
  
  #mobiel .mobiel__media {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
  }
  
  #mobiel .mobiel__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
  }
  
  @media (max-width: 991px) {
    #mobiel .container {
      grid-template-columns: 1fr;
    }
  
    #mobiel .mobiel__media {
      grid-column: 1;
      grid-row: auto;
      order: -1;
      margin-bottom: 16px;
    }
  }
  #mobiel .container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.7fr);
    gap: 24px;
    align-items: start;
  }
  
  #mobiel .mobiel__media {
    width: 100%;
    max-width: 360px;
    justify-self: end;
  }
  
  #mobiel .mobiel__media img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
  }
  
  #mobiel .section__title {
    margin-bottom: 12px;
  }
  
  #mobiel .section__lead {
    max-width: 620px;
  }
  
  @media (max-width: 991px) {
    #mobiel .container {
      grid-template-columns: 1fr;
    }
  
    #mobiel .mobiel__media {
      max-width: 280px;
      justify-self: center;
      margin-bottom: 12px;
    }
  
    #mobiel .mobiel__media img {
      max-width: 280px;
    }
  }
  .hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background-image: linear-gradient(rgba(9, 12, 24, 0.72), rgba(9, 12, 24, 0.72)), url('/assets/vavada-hero-background.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  .hero .container {
    position: relative;
    z-index: 1;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(6, 8, 18, 0.88) 0%,
      rgba(6, 8, 18, 0.74) 42%,
      rgba(6, 8, 18, 0.52) 100%
    );
    z-index: 0;
  }
  
  .hero .container {
    position: relative;
    z-index: 1;
  }
  
  .hero__title,
  .hero__text {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }
  
  .hero__title {
    max-width: 720px;
  }
  
  .hero__text {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.9);
  }
  .footer {
    background: #141824;
    color: rgba(255, 255, 255, 0.78);
    padding: 28px 0 36px;
  }
  
  .footer .container {
    max-width: 1200px;
  }
  
  .footer__apps {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .footer__legal {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 0.9fr;
    gap: 24px;
    align-items: start;
  }
  
  .footer__legal-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-width: 0;
  }
  
  .footer__legal-block p {
    margin: 0;
    line-height: 1.65;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    word-break: normal;
    overflow-wrap: anywhere;
  }
  
  .footer__badge {
    flex: 0 0 auto;
    min-width: 84px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #238a41;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }
  
  .footer__center {
    justify-content: center;
  }
  
  .footer__age {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #cf2626;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
  }
  
  .footer__right {
    justify-content: flex-end;
    text-align: right;
  }
  
  .footer__right p {
    max-width: 260px;
  }
  
  @media (max-width: 991px) {
    .footer__legal {
      grid-template-columns: 1fr;
    }
  
    .footer__legal-block,
    .footer__right {
      justify-content: flex-start;
      text-align: left;
    }
  
    .footer__right p {
      max-width: none;
    }
  }
  
  @media (max-width: 640px) {
    .footer__apps {
      flex-direction: column;
      align-items: stretch;
    }
  
    .footer__legal-block {
      flex-direction: column;
    }
  
    .footer__badge,
    .footer__age {
      margin-bottom: 6px;
    }
  }
  #bonuscodes .bonus-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: var(--space-4);
  }
  
  #bonuscodes .bonus-card {
    min-width: 0;
  }
  
  #bonuscodes .bonus-card .btn--block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  
  #bonuscodes .bonus-card__desc {
    overflow-wrap: anywhere;
  }
  
  #bonuscodes img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  @media (max-width: 991px) {
    #bonuscodes .bonus-list {
      grid-template-columns: 1fr;
    }
  }
  #bonuscodes .bonus-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
  
  #bonuscodes .bonus-actions .btn {
    width: min(100%, 720px);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  
  @media (max-width: 640px) {
    #bonuscodes .bonus-actions {
      padding: 0;
    }
  
    #bonuscodes .bonus-actions .btn {
      width: 100%;
      font-size: 14px;
      line-height: 1.35;
    }
  }
  .logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
  }
  
  .logo__img {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 640px) {
    .logo__img {
      width: 118px;
    }
  }