* { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
      line-height: 1.7;
      color: #1f2937;
      background: #f3f4f6;
      overflow-wrap: break-word;
    }
    .container {
      width: min(100% - 32px, 1200px);
      margin: 0 auto;
    }
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #111827;
      color: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
    }
    .logo a {
      color: #fff;
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    nav {
      flex: 1;
    }
    nav ul {
      list-style: none;
      display: flex;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 12px 20px;
    }
    nav a {
      color: #dbeafe;
      text-decoration: none;
      font-weight: 600;
      padding-bottom: 2px;
    }
    nav a:hover {
      color: #fff;
      text-decoration: underline;
    }
    nav a.active {
      color: #fff;
      border-bottom: 2px solid #60a5fa;
    }
    .lang-switch {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .lang-switch a {
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #dbeafe;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.22);
    }
    .lang-switch a:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.45);
    }
    .lang-switch a.active {
      background: #2563eb;
      color: #fff;
      border-color: #2563eb;
    }
    main {
      width: min(100% - 32px, 1200px);
      margin: 24px auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }
    article {
      padding: 32px;
    }
    h1, h2, h3 {
      color: #111827;
      line-height: 1.25;
    }
    h1 {
      font-size: clamp(2rem, 4vw, 2.9rem);
      margin-bottom: 24px;
    }
    h2 {
      font-size: clamp(1.45rem, 3vw, 1.9rem);
      margin: 36px 0 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid #e5e7eb;
    }
    h3 {
      font-size: clamp(1.15rem, 2.4vw, 1.35rem);
      margin: 28px 0 12px;
    }
    p, ul, dl {
      margin-bottom: 16px;
    }
    ul {
      padding-left: 20px;
    }
    li + li {
      margin-top: 8px;
    }
    dt {
      font-weight: 700;
      margin-top: 16px;
      color: #111827;
    }
    dd {
      margin-top: 6px;
      margin-left: 0;
    }
    .topic-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin: 18px 0 8px;
    }
    .topic-card {
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      padding: 18px;
      background: #f9fafb;
    }
    .topic-card h3 {
      margin: 0 0 10px;
      font-size: 1.05rem;
    }
    .topic-card p {
      margin-bottom: 12px;
      color: #4b5563;
    }
    .topic-card a {
      color: #2563eb;
      font-weight: 700;
      text-decoration: none;
    }
    .topic-card a:hover {
      text-decoration: underline;
    }
    .table-scroll {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 16px 0 20px;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
    }
    .casino-cards-wrap {
      margin: 16px 0 24px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }
    .casino-cards {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 20px;
      align-items: stretch;
    }
    .casino-cards > .casino-card {
      margin: 0;
    }
    @media (min-width: 960px) {
      .casino-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    .casino-card {
      display: flex;
      flex-direction: column;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
      min-width: 0;
      align-self: stretch;
      height: 100%;
    }
    .casino-card__hero {
      position: relative;
      background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
      padding: 18px 14px 16px 48px;
      min-height: 84px;
      display: flex;
      align-items: center;
      box-sizing: border-box;
    }
    .casino-card__rank {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #000;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .casino-card__brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .casino-card__logo {
      width: auto;
      max-width: 128px;
      height: 44px;
      min-height: 44px;
      object-fit: contain;
      object-position: left center;
      border-radius: 8px;
      background: transparent;
      flex-shrink: 0;
    }
    .casino-card__logo--fallback {
      width: 52px;
      height: 52px;
      max-width: 52px;
      min-height: 52px;
      object-fit: cover;
      border-radius: 12px;
      background: #fff;
      padding: 0;
    }
    .casino-card__titles {
      min-width: 0;
    }
    .casino-card__name {
      font-weight: 800;
      font-size: 1.05rem;
      color: #fff;
      line-height: 1.25;
    }
    .casino-card__tagline {
      margin-top: 4px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.35;
    }
    .casino-card__bonus-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid #e5e7eb;
    }
    .casino-card__bonus-col {
      padding: 14px 10px;
      text-align: center;
    }
    .casino-card__bonus-col--deposit {
      border-right: 1px solid #e5e7eb;
    }
    .casino-card__muted {
      display: block;
      font-size: 0.7rem;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 6px;
    }
    .casino-card__deposit-line {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: center;
      gap: 4px 6px;
    }
    .casino-card__pct,
    .casino-card__amount {
      font-size: clamp(1.1rem, 3.5vw, 1.35rem);
      font-weight: 800;
      color: #dc2626;
    }
    .casino-card__bonus-word {
      display: block;
      margin-top: 4px;
      font-size: 0.92rem;
      font-weight: 700;
      color: #dc2626;
    }
    .casino-card__bonus-col--spins {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .casino-card__spins-count {
      font-size: clamp(1.45rem, 4.5vw, 1.85rem);
      font-weight: 800;
      color: #2563eb;
      line-height: 1;
    }
    .casino-card__spins-label {
      margin-top: 6px;
      font-size: 0.88rem;
      font-weight: 700;
      color: #2563eb;
    }
    .casino-card__features {
      list-style: none;
      margin: 0;
      padding: 12px 14px 6px;
    }
    .casino-card__features li {
      position: relative;
      padding-left: 16px;
      margin-bottom: 8px;
      font-size: 0.875rem;
      color: #374151;
      line-height: 1.4;
    }
    .casino-card__features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.22);
    }
    .casino-card__payments {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 14px;
      padding: 10px 14px 12px;
      background: #f9fafb;
      border-top: 1px solid #eef2f7;
    }
    .casino-card__pay-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 0;
    }
    .casino-card__pay-svg {
      display: block;
      height: 20px;
      width: auto;
      max-width: 100%;
      opacity: 0.94;
    }
    .casino-card__meta {
      padding: 10px 14px;
      font-size: 0.8rem;
      color: #6b7280;
      text-align: center;
      border-top: 1px solid #eef2f7;
    }
    .casino-card__meta strong {
      color: #111827;
      font-weight: 700;
    }
    .casino-card__meta span::before {
      content: ' · ';
      color: #d1d5db;
    }
    .casino-card__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: auto;
      padding: 14px 16px;
      background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
      color: #fff !important;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
      transition: filter 0.15s ease;
    }
    .casino-card__cta:hover {
      filter: brightness(1.06);
      background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    }
    table {
      width: 100%;
      min-width: 680px;
      border-collapse: collapse;
      background: #fff;
    }
    th, td {
      padding: 14px 16px;
      border-bottom: 1px solid #e5e7eb;
      text-align: left;
      vertical-align: top;
    }
    th {
      background: #111827;
      color: #fff;
      font-weight: 700;
    }
    tr:nth-child(even) td {
      background: #f9fafb;
    }
    footer {
      background: #111827;
      color: #fff;
      margin-top: 32px;
    }
    footer .container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      padding: 24px 0;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
    }
    footer a {
      color: #bfdbfe;
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }
    .footer-copy {
      display: grid;
      gap: 6px;
      text-align: right;
    }
    @media (max-width: 900px) {
      header .container {
        align-items: flex-start;
        flex-direction: column;
      }
      nav {
        width: 100%;
      }
      .lang-switch {
        width: 100%;
        justify-content: flex-start;
      }
      nav ul {
        justify-content: flex-start;
      }
    }
    @media (max-width: 640px) {
      .container,
      main {
        width: min(100% - 20px, 1200px);
      }
      header {
        position: static;
      }
      article {
        padding: 20px 16px 24px;
      }
      h1 {
        margin-bottom: 20px;
      }
      h2 {
        margin-top: 28px;
      }
      .casino-cards {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .casino-card__hero {
        padding: 16px 12px 14px 46px;
      }
      th, td {
        padding: 12px;
      }
      footer .container {
        flex-direction: column;
      }
      .footer-copy {
        text-align: left;
      }
    }
