 :root{
  /* RocketRiches-inspired palette */
  --rr-bg: #07192a;
  --rr-frame: #0d2234;
  --rr-surface: #0a2237;
  --rr-surface2: #0b2b45;

  --rr-text: #ffffff;
  --rr-muted: #b9c7d8;
  --rr-border: rgba(255,255,255,.12);

  /* CTAs */
  --rr-primary: #fd3ab1; /* buttons */
  --rr-login: #0bbf71;   /* login button */
  --rr-review: #0e4b46;  /* reviews */

  /* Headings */
  --rr-title: #fd3ab1;
  --rr-titleHi: #74f4ff;
  --rr-titleLo: #7b61ff;

  --rr-container: 1200px;
  --rr-radius: 14px;

  /* subtle neon glow (unique) */
  --rr-glow: 0 18px 50px rgba(253, 58, 177, .22);
  --rr-glow2: 0 18px 50px rgba(116, 244, 255, .16);
}

/* Global reset (scoped for uniqueness) */
html, body.rr1f4c9a7e-page{ height:100%; }

body.rr1f4c9a7e-page,
body.rr1f4c9a7e-page *{ box-sizing:border-box; }

body.rr1f4c9a7e-page{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--rr-bg);
  color: var(--rr-text);
  line-height: 1.55;
}

body.rr1f4c9a7e-page a{ color:inherit; text-decoration:none; }
body.rr1f4c9a7e-page img{ max-width:100%; display:block; }
body.rr1f4c9a7e-page code{
  background: rgba(255,255,255,.08);
  border: 1px solid var(--rr-border);
  padding: .1rem .35rem;
  border-radius: 8px;
}

.rr1f4c9a7e-container{
  width: min(var(--rr-container), calc(100% - 2rem));
  margin: 0 auto;
}

/* HEADER */
.rr1f4c9a7e-site-header{
  background: var(--rr-frame); /* required */
  position: sticky;
  top:0;
  z-index: 50;
  border-bottom: 1px solid var(--rr-border);
}

.rr1f4c9a7e-header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.rr1f4c9a7e-brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-weight: 800;
  letter-spacing:.2px;
}
.rr1f4c9a7e-brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(253,58,177,.18);
  border: 1px solid rgba(253,58,177,.35);
  display:grid;
  place-items:center;
  color: var(--rr-primary);
}
.rr1f4c9a7e-brand-name{ font-size: 1.05rem; }

.rr1f4c9a7e-nav{
  display:none;
  gap: 1rem;
  color: var(--rr-muted);
  font-weight: 600;
}
.rr1f4c9a7e-nav a{ padding: .35rem .5rem; border-radius: 10px; }
.rr1f4c9a7e-nav a:hover{ background: rgba(255,255,255,.06); color: #fff; }

.rr1f4c9a7e-header-cta{ display:flex; gap:.6rem; align-items:center; }

/* BUTTONS */
.rr1f4c9a7e-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  border-radius: 12px;
  padding: .65rem .9rem;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.rr1f4c9a7e-btn:active{ transform: scale(.98); }

.rr1f4c9a7e-btn-primary{
  background: var(--rr-primary);
  color: #ffffff;
  border-color: rgba(255,255,255,.10);
  box-shadow: var(--rr-glow);
}
.rr1f4c9a7e-btn-primary:hover{ filter: brightness(1.06); }

/* Login button (green, as requested) */
.rr1f4c9a7e-btn-login{
  background: var(--rr-login);
  color: #ffffff;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(11, 191, 113, .18);
}
.rr1f4c9a7e-btn-login:hover{ filter: brightness(1.06); }


.rr1f4c9a7e-btn-ghost{
  background: transparent;
  border-color: var(--rr-border);
  color: #fff;
}
.rr1f4c9a7e-btn-ghost:hover{ background: rgba(255,255,255,.06); }

.rr1f4c9a7e-btn-lg{ padding: .85rem 1.1rem; border-radius: 14px; }
.rr1f4c9a7e-btn-sm{ padding: .5rem .7rem; border-radius: 12px; font-size: .92rem; }

/* HERO */
.rr1f4c9a7e-hero{
  background:
    radial-gradient(900px 460px at 75% 30%, rgba(253,58,177,.32), transparent 62%),
    radial-gradient(720px 420px at 18% 18%, rgba(11,191,113,.22), transparent 60%),
    radial-gradient(980px 560px at 55% 110%, rgba(116,244,255,.18), transparent 58%),
    linear-gradient(135deg, rgba(7,25,42,1) 0%, rgba(13,34,52,1) 55%, rgba(7,25,42,1) 100%);
  padding: 2.2rem 0 2.4rem;
}


.rr1f4c9a7e-hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.rr1f4c9a7e-hero-title{
  margin: 0 0 .8rem;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  line-height: 1.12;
}

.rr1f4c9a7e-hero-text{
  margin: 0 0 1.1rem;
  color: var(--rr-muted);
  max-width: 65ch;
}

.rr1f4c9a7e-hero-actions{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.rr1f4c9a7e-hero-badges{
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  gap: .7rem;
  flex-wrap: wrap;
  color: var(--rr-muted);
}
.rr1f4c9a7e-hero-badges li{
  padding: .45rem .7rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--rr-border);
  border-radius: 999px;
}

.rr1f4c9a7e-hero-banner{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 1.2rem;
  display:flex;
  flex-direction: column;
  justify-content:center;
  gap: .55rem;
  min-height: 260px;
}

.rr1f4c9a7e-banner-chip{
  width: fit-content;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .6px;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(253,58,177,.18);
  border: 1px solid rgba(253,58,177,.35);
  color: #e6fbff;
}
.rr1f4c9a7e-banner-title{
  font-weight: 900;
  font-size: 1.4rem;
}
.rr1f4c9a7e-banner-sub{
  color: var(--rr-muted);
  margin-bottom: .4rem;
}

/* SECTIONS */
.rr1f4c9a7e-section{ padding: 2.2rem 0; }
.rr1f4c9a7e-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom: 1rem;
}
.rr1f4c9a7e-section-title{
  margin:0;
  font-size: 1.35rem;
}

/* Flamez-like heading gradient */
.rr1f4c9a7e-hero-title,
.rr1f4c9a7e-section-title,
.rr1f4c9a7e-content h2,
.rr1f4c9a7e-content h3{
  color: var(--rr-title);
}

@supports (-webkit-background-clip: text) or (background-clip: text){
  .rr1f4c9a7e-hero-title,
  .rr1f4c9a7e-section-title,
  .rr1f4c9a7e-content h2,
  .rr1f4c9a7e-content h3{
    background-image: linear-gradient(180deg, var(--rr-titleHi), var(--rr-title) 55%, var(--rr-titleLo));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.rr1f4c9a7e-section-link{
  color: var(--rr-muted);
  font-weight: 700;
}
.rr1f4c9a7e-section-link:hover{ color: #fff; text-decoration: underline; }

/* TOP WINNINGS */
.rr1f4c9a7e-winnings-card{
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  overflow:hidden;
}
.rr1f4c9a7e-winnings-row{
  display:grid;
  grid-template-columns: 1.2fr 1fr .7fr .7fr;
  gap: .8rem;
  padding: .9rem 1rem;
  border-top: 1px solid var(--rr-border);
  align-items:center;
}
.rr1f4c9a7e-winnings-head{
  border-top: 0;
  background: rgba(255,255,255,.04);
  color: var(--rr-muted);
  font-weight: 800;
  letter-spacing: .2px;
}
.rr1f4c9a7e-player{ display:flex; align-items:center; gap:.6rem; min-width:0; }
.rr1f4c9a7e-avatar{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(253,58,177,.16);
  border: 1px solid rgba(253,58,177,.3);
  color: #ffe6ff;
  font-weight: 900;
  flex: 0 0 auto;
}
.rr1f4c9a7e-right{ text-align:right; }
.rr1f4c9a7e-win-amount{ font-weight: 900; color: var(--rr-titleHi); }
.rr1f4c9a7e-muted{ color: var(--rr-muted); }
.rr1f4c9a7e-small-note{ font-size: .92rem; }

/* GAMES */
.rr1f4c9a7e-games-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.rr1f4c9a7e-game-card{
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.rr1f4c9a7e-game-card:hover{
  transform: translateY(-3px);
  border-color: rgba(253,58,177,.45);
}
.rr1f4c9a7e-game-card img{ width:100%; height:auto; display:block; }
.rr1f4c9a7e-game-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: .8rem;
  padding: .8rem .85rem;
}
.rr1f4c9a7e-game-name{
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* PROVIDERS */
.rr1f4c9a7e-providers-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.rr1f4c9a7e-provider{
  background: var(--rr-surface);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--rr-radius);
  padding: 1rem;
  text-align:center;
  color: var(--rr-muted);
  font-weight: 800;
}
.rr1f4c9a7e-provider:hover{
  border-style: solid;
  border-color: rgba(253,58,177,.35);
  color: #fff;
}

/* CONTENT */
.rr1f4c9a7e-content{
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 1.2rem;
}
.rr1f4c9a7e-content h2{ margin:0 0 .8rem; }
.rr1f4c9a7e-content h3{ margin: 1.2rem 0 .6rem; }
.rr1f4c9a7e-content p{ margin: 0 0 .8rem; color: var(--rr-muted); }
.rr1f4c9a7e-content ul, .rr1f4c9a7e-content ol{ margin: .2rem 0 1rem 1.2rem; color: var(--rr-muted); }
.rr1f4c9a7e-content li{ margin: .35rem 0; }

.rr1f4c9a7e-table-wrap{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rr-border);
  border-radius: 12px;
  margin-top: .6rem;
  background: var(--rr-surface);
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
}

.rr1f4c9a7e-table-wrap table{
  width:100%;
  border-collapse: collapse;
  min-width: 680px;
}
.rr1f4c9a7e-table-wrap thead th{
  text-align:left;
  font-size:.86rem;
  color: var(--rr-titleHi);
  padding: .9rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--rr-border);
}
.rr1f4c9a7e-table-wrap tbody td{
  padding: .85rem .9rem;
  border-bottom: 1px solid var(--rr-border);
  color: var(--rr-muted);
}
.rr1f4c9a7e-table-wrap tbody tr:hover td{ background: rgba(255,255,255,.03); }


/* Table system (unique classes) */
.rr1f4c9a7e-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.rr1f4c9a7e-table th,
.rr1f4c9a7e-table td{
  padding: .85rem .9rem;
  border-bottom: 1px solid var(--rr-border);
  color: var(--rr-muted);
  vertical-align: top;
}

.rr1f4c9a7e-table th{
  text-align: left;
  font-size: .86rem;
  letter-spacing: .2px;
  color: var(--rr-titleHi);
  background: rgba(255,255,255,.04);
}

.rr1f4c9a7e-table td strong{
  color: #eaf4ff;
  font-weight: 700;
}

.rr1f4c9a7e-table tr:hover td{
  background: rgba(255,255,255,.03);
}

.rr1f4c9a7e-table tr:last-child td{
  border-bottom: none;
}

.rr1f4c9a7e-table caption{
  caption-side: top;
  text-align: left;
  padding: .65rem .9rem;
  color: var(--rr-text);
  font-weight: 700;
}

.rr1f4c9a7e-table--striped tr:nth-child(even) td{
  background: rgba(255,255,255,.02);
}

.rr1f4c9a7e-table--kv{
  min-width: 520px;
}
.rr1f4c9a7e-table--kv td:first-child{
  width: 36%;
  white-space: nowrap;
  color: #eaf4ff;
}
.rr1f4c9a7e-table--kv td:first-child strong{
  color: var(--rr-titleHi);
}

@media (max-width: 720px){
  .rr1f4c9a7e-table{ min-width: 560px; }
  .rr1f4c9a7e-table--kv{ min-width: 520px; }
}


.rr1f4c9a7e-ok{ color: #79ffa8; font-weight: 900; }
.rr1f4c9a7e-warn{ color: #ffd27a; font-weight: 900; }

/* REVIEWS */
.rr1f4c9a7e-reviews-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.rr1f4c9a7e-review-card{
  background: var(--rr-review);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--rr-radius);
  padding: 1rem;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.rr1f4c9a7e-review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  margin-bottom: .5rem;
}
.rr1f4c9a7e-stars{ color: var(--rr-titleHi); letter-spacing: .8px; }
.rr1f4c9a7e-review-card p{ margin: 0 0 .8rem; color: #eef2ff; }
.rr1f4c9a7e-reviewer{ text-align:right; color: var(--rr-muted); font-weight: 900; }

/* FAQ (no JS) */
.rr1f4c9a7e-faq{ display:flex; flex-direction:column; gap:.75rem; }
.rr1f4c9a7e-faq-item{
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  overflow:hidden;
}
.rr1f4c9a7e-faq-item summary{
  cursor:pointer;
  padding: .95rem 1rem;
  font-weight: 900;
  list-style: none;
}
.rr1f4c9a7e-faq-item summary::-webkit-details-marker{ display:none; }
.rr1f4c9a7e-faq-body{
  padding: 0 1rem 1rem;
  color: var(--rr-muted);
  border-top: 1px solid var(--rr-border);
}

/* FOOTER */
.rr1f4c9a7e-site-footer{
  border-top: 1px solid var(--rr-border);
  padding: 2rem 0 1.2rem;
  background: var(--rr-frame);
}
.rr1f4c9a7e-footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.rr1f4c9a7e-footer-title{
  font-weight: 900;
  margin-bottom: .6rem;
}
.rr1f4c9a7e-site-footer a{
  display:block;
  color: var(--rr-muted);
  padding: .2rem 0;
  font-weight: 700;
}
.rr1f4c9a7e-site-footer a:hover{ color:#fff; text-decoration: underline; }

.rr1f4c9a7e-trust-row{
  display:flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.rr1f4c9a7e-trust{
  padding: .45rem .6rem;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--rr-border);
  color: var(--rr-muted);
  font-weight: 900;
  font-size: .9rem;
}

.rr1f4c9a7e-footer-bottom{
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rr-border);
  display:flex;
  justify-content:space-between;
  gap: .8rem;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (min-width: 820px){
  .rr1f4c9a7e-nav{ display:flex; }
  .rr1f4c9a7e-hero-grid{ grid-template-columns: 1.25fr .85fr; gap: 1.4rem; }
  .rr1f4c9a7e-games-grid{ grid-template-columns: repeat(5, 1fr); }
  .rr1f4c9a7e-providers-grid{ grid-template-columns: repeat(4, 1fr); }
  .rr1f4c9a7e-reviews-grid{ grid-template-columns: repeat(3, 1fr); }
  .rr1f4c9a7e-footer-grid{ grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
}
/* =========================
   MOBILE FIXES / RESPONSIVE
   вставь в конец CSS
========================= */

/* 1) Мобильное меню (бургер + выпадашка) */
.rr1f4c9a7e-header-row{ position: relative; }

.rr1f4c9a7e-nav-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rr1f4c9a7e-hamburger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--rr-border);
  background: rgba(255,255,255,.04);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.rr1f4c9a7e-hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.rr1f4c9a7e-hamburger span + span{ margin-top: 4px; }

/* по умолчанию на мобилке nav прячем, открываем по чекбоксу */
@media (max-width: 819px){
  .rr1f4c9a7e-nav{
    position: absolute;
    top: calc(100% + .6rem);
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    gap: .25rem;

    padding: .6rem;
    background: var(--rr-surface);
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
  }

  .rr1f4c9a7e-nav a{
    padding: .75rem .8rem;
    border-radius: 12px;
  }

  .rr1f4c9a7e-nav-toggle:checked ~ .rr1f4c9a7e-nav{ display: flex; }

  /* бургер превращаем в X */
  .rr1f4c9a7e-nav-toggle:checked + .rr1f4c9a7e-hamburger span:nth-child(1){
    transform: translateY(6px) rotate(45deg);
  }
  .rr1f4c9a7e-nav-toggle:checked + .rr1f4c9a7e-hamburger span:nth-child(2){
    opacity: 0;
  }
  .rr1f4c9a7e-nav-toggle:checked + .rr1f4c9a7e-hamburger span:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (min-width: 820px){
  .rr1f4c9a7e-hamburger{ display:none; }
  .rr1f4c9a7e-nav-toggle{ display:none; }
}

/* 2) Top Winnings: делаем “карточную” сетку на телефоне */
@media (max-width: 560px){
  .rr1f4c9a7e-winnings-head{ display: none; }

  .rr1f4c9a7e-winnings-row{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "player win"
      "game time";
    row-gap: .35rem;
  }

  .rr1f4c9a7e-winnings-row > :nth-child(1){ grid-area: player; }
  .rr1f4c9a7e-winnings-row > :nth-child(2){ grid-area: game; }
  .rr1f4c9a7e-winnings-row > :nth-child(3){ grid-area: win; }
  .rr1f4c9a7e-winnings-row > :nth-child(4){ grid-area: time; }

  .rr1f4c9a7e-winnings-row{
    padding: .85rem .9rem;
  }
}

/* 3) Гриды: на очень узких экранах — 1 колонка */
@media (max-width: 520px){
  .rr1f4c9a7e-games-grid{ grid-template-columns: 1fr; }
  .rr1f4c9a7e-providers-grid{ grid-template-columns: 1fr; }

  .rr1f4c9a7e-hero-actions .rr1f4c9a7e-btn,
  .rr1f4c9a7e-hero-banner .rr1f4c9a7e-btn{
    width: 100%;
    justify-content: center;
  }
}

/* 4) (Не обязательно, но полезно) стили для intro-card/section-tight,
   у тебя эти классы есть в HTML, а CSS нет */
.rr1f4c9a7e-intro-card{
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 1.1rem;
}
.rr1f4c9a7e-intro-text{ margin: 0; color: var(--rr-muted); }
.rr1f4c9a7e-section-tight{ padding-top: 1.2rem; padding-bottom: 1.2rem; }
/* =========================
   FIRST SCREEN (H1 -> BANNER -> BUTTON)
   вставь в конец CSS
========================= */

.rr1f4c9a7e-hero{
  /* чтобы это был именно “первый экран” */
  min-height: calc(100svh - 78px); /* 78px примерно высота шапки */
  display: flex;
  align-items: center;
}

.rr1f4c9a7e-hero-grid--clean{
  max-width: 980px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 1.1rem;
}

.rr1f4c9a7e-hero-title{
  max-width: 22ch;
  margin: 0;
}

.rr1f4c9a7e-hero-banner--big{
  width: 100%;
  max-width: 980px;
  min-height: 340px;

  align-items: center;
  text-align: center;
}

.rr1f4c9a7e-hero-cta{
  width: 100%;
  display: flex;
  justify-content: center;
}

.rr1f4c9a7e-hero-cta .rr1f4c9a7e-btn{
  width: min(360px, 100%);
}

/* чуть адаптируем высоту под мобилку */
@media (max-width: 819px){
  .rr1f4c9a7e-hero{
    min-height: calc(100svh - 70px);
    padding: 1.8rem 0 2rem;
  }

  .rr1f4c9a7e-hero-banner--big{
    min-height: 280px;
  }
}
/* прибрати рамку/підкладку навколо hero-банера */
.rr1f4c9a7e-hero-banner.rr1f4c9a7e-hero-banner--big{
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;      /* щоб не було “внутрішнього поля” */
}
/* MOBILE: робимо hero компактнішим і банер більшим */
@media (max-width: 819px){

  /* прибираємо величезну висоту першого екрану */
  .rr1f4c9a7e-hero{
    min-height: auto;            /* було 100svh */
    padding: 1.2rem 0 1.6rem;
    align-items: flex-start;     /* щоб не центрувало по вертикалі */
  }

  /* банер займає ширину і має нормальну висоту */
  .rr1f4c9a7e-hero-banner--big{
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;        /* ключове */
    border-radius: var(--rr-radius);
    overflow: hidden;
  }

  /* картинка точно заповнює банер */
  .rr1f4c9a7e-hero-banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* трохи піджимаємо відступи між елементами */
  .rr1f4c9a7e-hero-grid--clean{
    gap: .9rem;
  }
}
.rr1f4c9a7e-signup-images{
  display: flex;
  gap: 1rem;              /* відстань між картинками */
}

.rr1f4c9a7e-signup-images img{
  width: 100%;
  max-width: 360px;       /* або будь-яка потрібна */
  height: auto;
  border-radius: 12px;    /* якщо хочеш */
}
@media (max-width: 600px){
  .rr1f4c9a7e-signup-images{
    flex-direction: column;
  }
}
.rr1f4c9a7e-signup-images{
  margin: 0 auto;
}
/* Footer responsible gaming logos */
.rr1f4c9a7e-trust-row--logos{
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.rr1f4c9a7e-trust-row--logos a{
  display: grid;
  place-items: center;
  padding: .4rem .55rem;
  border-radius: 10px;
  border: 1px solid var(--rr-border);
  background: rgba(255,255,255,.04);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.rr1f4c9a7e-trust-row--logos a:hover{
  transform: translateY(-1px);
  border-color: rgba(253,58,177,.45);
  background: rgba(255,255,255,.06);
}

.rr1f4c9a7e-trust-row--logos img{
  height: 26px;
  width: auto;
  display: block;
}

.rr1f4c9a7e-trust--age{
  font-weight: 900;
  font-size: .9rem;
  padding: .45rem .6rem;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--rr-border);
}
/* Footer payments */
.rr1f4c9a7e-footer-payments{
  margin-top: 1.4rem;
}

.rr1f4c9a7e-footer-payments .rr1f4c9a7e-footer-title{
  margin-bottom: .6rem;
}

.rr1f4c9a7e-payments-row{
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}

.rr1f4c9a7e-payments-row img{
  height: 28px;
  width: auto;
  display: block;
  padding: .35rem .5rem;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rr-border);
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
  opacity: .9;
}

.rr1f4c9a7e-payments-row img:hover{
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(253,58,177,.45);
}

/* Login form block */
.rr1f4c9a7e-login-card{ margin: 1.1rem 0 1.3rem; }

.rr1f4c9a7e-login-form{
  display: grid;
  gap: .55rem;
  margin-top: .75rem;
  max-width: 560px;
}

.rr1f4c9a7e-form-label{
  font-weight: 800;
  color: #fff;
}

.rr1f4c9a7e-form-input{
  width: 100%;
  border: 1px solid var(--rr-border);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #fff;
  padding: .72rem .82rem;
  font: inherit;
}

.rr1f4c9a7e-form-input::placeholder{ color: var(--rr-muted); }
.rr1f4c9a7e-form-input:focus{
  outline: none;
  border-color: rgba(253,58,177,.55);
  box-shadow: 0 0 0 3px rgba(253,58,177,.18);
}

.rr1f4c9a7e-login-actions{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .35rem;
}

.rr1f4c9a7e-contact-card{ margin: 1.1rem 0 1.3rem; }
.rr1f4c9a7e-contact-form{ max-width: 760px; }

.rr1f4c9a7e-form-grid{
  display: grid;
  gap: .6rem;
}

.rr1f4c9a7e-form-textarea{
  min-height: 130px;
  resize: vertical;
}

@media (min-width: 680px){
  .rr1f4c9a7e-form-grid{
    grid-template-columns: 1fr 1fr;
  }
}
/* =========================
   Smaller game + provider cards on mobile
   Paste at the END of style.css
========================= */

@media (max-width: 819px){
  /* Games: 3 колонки на телефонах -> картки менші */
  .rr1f4c9a7e-games-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
  }

  .rr1f4c9a7e-game-card{
    border-radius: 12px;
  }

  /* Картинка в картці: фіксуємо пропорції, щоб картка була компактніша */
  .rr1f4c9a7e-game-card img{
    width: 100%;
    aspect-ratio: 4 / 3;   /* можна 1 / 1 якщо хочеш квадратні */
    height: auto;
    object-fit: cover;
  }

  .rr1f4c9a7e-game-meta{
    padding: .55rem .6rem;
    gap: .5rem;
  }

  .rr1f4c9a7e-game-name{
    font-size: .9rem;
  }

  .rr1f4c9a7e-btn-sm{
    padding: .38rem .55rem;
    font-size: .85rem;
    border-radius: 10px;
  }

  /* Providers: 3–4 колонки + менший padding */
  .rr1f4c9a7e-providers-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: .55rem;
  }

  .rr1f4c9a7e-provider{
    padding: .6rem;
    border-radius: 12px;
  }

  .rr1f4c9a7e-providers-grid--logos img{
    height: 22px;   /* було “як є” — тепер менше */
    width: auto;
  }
}

/* Дуже вузькі екрани: не 1 колонка, а 2 (щоб не роздувало картки) */
@media (max-width: 520px){
  .rr1f4c9a7e-games-grid{ grid-template-columns: repeat(2, 1fr); }
  .rr1f4c9a7e-providers-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Якщо зовсім маленький екран — тоді вже 1 колонка */
@media (max-width: 360px){
  .rr1f4c9a7e-games-grid{ grid-template-columns: 1fr; }
  .rr1f4c9a7e-providers-grid{ grid-template-columns: repeat(2, 1fr); }
}
/* Обгортка для таблиці */
.rr1f4c9a7e-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .rr1f4c9a7e-table-wrap table{
    width: auto;
    min-width: 600px;
  }
}
.rr1f4c9a7e-provider--logo {
  display: grid;
  place-items: center;
}
