/* RocketPlay32 styling — applied over the theme (loaded last). */

/* Buttons: rounded rectangles (8px); icon/slider stay round. */
.btn { border-radius: 8px; }
.btn-icon, .btn-slider { border-radius: 50%; }

/* Login button: outlined only (transparent fill + gradient border). */
.header__login {
  background: transparent; background-color: transparent;
  border: none; color: #ffa000; position: relative;
}
.header__login::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 8px; padding: 2px;
  background: linear-gradient(90deg, #ffa000, #ffff7b);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.header__login:hover, .header__login:focus, .header__login:active { background-color: transparent; }
.header__login:hover::before { filter: brightness(1.12); }

/* Header buttons: slightly larger. */
.header__login, .header__signup { font-size: 15px; padding: 10px 24px; }

/* Hero card background — red gradient (on ::before) → brand purple. */
.promo-card--main.promo-card--bg-3::before,
.promo-card--main.promo-card--bg-3 {
  background-image: linear-gradient(to right, rgb(70, 10, 190), rgb(128, 64, 255));
}

/* Category bar — like rocketplay32.com games toolbar (under hero, full width). */
.rp-catbar-section { width: 100%; margin: 4px 0 28px; }
.rp-catbar {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 6px 12px; background: #262a34; border-radius: 999px;
  overflow-x: auto; scrollbar-width: none;
}
.rp-catbar::-webkit-scrollbar { display: none; }
.rp-catbar__providers, .rp-catbar__item {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 10px;
  text-decoration: none; color: #e4e6eb; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
/* Hover: each item becomes a subtle rounded pill (matches rocketplay32.com). */
.rp-catbar__providers:hover, .rp-catbar__item:hover {
  background-color: rgba(182, 189, 204, .2); color: #fff;
}
.rp-catbar__divider { flex: 0 0 auto; width: 1px; height: 22px; background: rgba(255, 255, 255, .14); margin: 0 2px; }
.rp-catbar__icon { display: inline-flex; width: 22px; height: 22px; color: #fff; }
.rp-catbar__icon svg { width: 100%; height: 100%; }
.rp-catbar__img { width: 24px; height: 24px; object-fit: contain; }
.rp-catbar__label {
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1;
}
.rp-catbar__dots { position: relative; width: 24px; height: 24px; flex: 0 0 auto; }
.rp-catbar__dots::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 4px; height: 4px; margin: -2px 0 0 -2px;
  border-radius: 50%; background: #8b8f9c;
  box-shadow: -8px 0 #8b8f9c, 8px 0 #8b8f9c;
}

/* Winners sidebar removed → games span the full width. */
@media screen and (min-width: 1050px) {
  .main__blocks { width: 100%; }
}

/* Footer social: size the inline svg icons (rp32) inside the round buttons. */
.social-footer a svg { width: 24px; height: 24px; }

/* Footer trust block: same card style as Payments/Our partners, a bit bigger, with a divider. */
.footer-trust__hr { border: 0; border-top: 1px solid rgba(182, 189, 204, .2); width: 100%; margin: 22px 0 18px; }
.footer-trust__reviews .provider-card--footer,
.footer-trust__resp .provider-card--footer { max-width: 150px; }
.footer-trust__reviews .provider-card__img,
.footer-trust__resp .provider-card__img { width: 116px; min-width: 116px; height: 58px; }

/* Trust logos: no card background. */
.footer-trust__reviews .provider-card,
.footer-trust__resp .provider-card { background-color: transparent; padding: 0; }

/* Article H1 (visible) + tables + FAQ accordion. */
.content h1.entry-heading { font-size: 30px; line-height: 1.25; color: #fff; font-weight: 800; margin: 8px 0 18px; }
.content h3.entry-heading { font-size: 19px; color: #fff; margin: 20px 0 10px; }
.content table { width: 100%; }
.rp-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0 26px; }
.rp-faq { margin: 16px 0 8px; }
.rp-faq__q { cursor: pointer; list-style: none; padding: 16px 36px 16px 0; position: relative; }
.rp-faq__q::-webkit-details-marker { display: none; }
.content .rp-faq__q-h { display: inline; margin: 0; font-size: 19px; font-weight: 700; line-height: 1.4; color: #fff; }
.rp-faq__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: #b6bdcc; line-height: 1; }
.rp-faq__item[open] .rp-faq__q::after { content: "\2212"; }
.rp-faq__a { padding: 2px 0 18px; color: #b6bdcc; }
.rp-faq__a p { margin: 0; }

/* Internal page: content + Table of Contents side by side (desktop). */
@media screen and (min-width: 1050px) {
  .main__box--single { display: flex; flex-direction: row; gap: 0; align-items: flex-start; }
  .main__content--single { flex: 1; min-width: 0; }
}

/* Legal pages: last-updated line + contact form. */
.rp-updated { font-size: 13px; color: #8b8f9c; margin: -4px 0 18px; }
.rp-contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 520px; margin: 8px 0 24px; }
.rp-field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: #b6bdcc; }
.rp-field input, .rp-field textarea { background: rgba(255, 255, 255, .06); border: 1px solid rgba(182, 189, 204, .25); border-radius: 10px; padding: 10px 12px; color: #fff; font-size: 15px; font-family: inherit; }
.rp-field input:focus, .rp-field textarea:focus { outline: none; border-color: #ffa000; }
.rp-contact-form .btn-primary { align-self: flex-start; }
