
  .frumzi-games {
    max-width: 1200px;
    margin: 0 auto 40px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    position: relative;
  }
  .frumzi-games .fg-heading {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
  }
  .fg-viewport {
    overflow: hidden;
  }
  .fg-track {
    display: flex;
    gap: 20px;
    transition: transform .45s ease;
  }
  .fg-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #12102a;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    isolation: isolate;
    flex: 0 0 calc((100% - 60px) / 4);
  }
  @media (max-width: 900px) {
    .fg-card { flex: 0 0 calc((100% - 40px) / 3); }
  }
  @media (max-width: 640px) {
    .fg-card { flex: 0 0 calc((100% - 20px) / 2); }
  }
  .fg-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
  }
  .fg-card:hover img { transform: scale(1.06); }
  .fg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    z-index: 3;
  }
  .fg-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(10,8,30,0) 40%, rgba(10,8,30,.85) 75%, rgba(10,8,30,.97) 100%);
    z-index: 2;
  }
  .fg-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
    line-height: 1.25;
  }
  .fg-provider {
    color: #c9a24b;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 10px;
  }
  .fg-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .35s ease;
  }
  .fg-card:hover .fg-stats {
    max-height: 90px;
    opacity: 1;
  }
  .fg-stat {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #d8d5e8;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 2px;
  }
  .fg-stat b { color: #fff; font-weight: 600; }
  .fg-play {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    background: #c9a24b;
    color: #14112c;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: 8px;
    padding: 9px 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .35s ease .05s;
  }
  .fg-card:hover .fg-play {
    max-height: 40px;
    opacity: 1;
  }
  .fg-play:hover { background: #e0b95a; }

  /* Provider-only cards (no stats grid) — logo + name + link */
  .fg-card.fg-provider-card .fg-info {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,8,30,.55) 0%, rgba(10,8,30,.85) 100%);
  }
  .fg-card.fg-provider-card .fg-title {
    font-size: 17px;
  }
  .fg-card.fg-provider-card .fg-play {
    max-height: 40px;
    opacity: 1;
    position: static;
    margin-top: 14px;
  }

  .fg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(18,16,42,.85);
    border: 1px solid rgba(201,162,75,.5);
    color: #c9a24b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 20px;
    line-height: 1;
    transition: background .2s ease, transform .2s ease;
    user-select: none;
  }
  .fg-arrow:hover {
    background: #c9a24b;
    color: #14112c;
  }
  .fg-arrow:active { transform: translateY(-50%) scale(.92); }
  .fg-arrow.fg-prev { left: -18px; }
  .fg-arrow.fg-next { right: -18px; }
  .fg-arrow[disabled] {
    opacity: .35;
    cursor: default;
    pointer-events: none;
  }

  .fg-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }
  .fg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(201,162,75,.3);
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .fg-dot.active { background: #c9a24b; }