/* Tablet Help / FAQ (sticky ? button) – scoped to rtp-help classes only */
.rtp-help-fab{
  position:fixed;
  left:14px;
  bottom:14px;
  z-index:999999;
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,15,18,.80);
  border:1px solid var(--rt-gold-a55);
  box-shadow:0 18px 55px rgba(0,0,0,.55);
  color:#fff;
  font:900 18px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor:pointer;
  user-select:none;
}
.rtp-help-fab:hover{ background:var(--rt-gold-a14); }
.rtp-help-fab:active{ transform: translateY(1px); }

.rtp-help-modal{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
}
.rtp-help-modal.is-open{ display:block; }
.rtp-help-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
}
.rtp-help-card{
  position:relative;
  width:min(980px, 96vw);
  max-height:min(80vh, 820px);
  overflow:auto;
  margin:8vh auto 0;
  border-radius:18px;
  border:1px solid var(--rt-gold-a35);
  background:
    radial-gradient(120% 120% at 50% 20%, var(--rt-gold-a14), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
  box-shadow:0 28px 80px rgba(0,0,0,.72);
  color:#fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.rtp-help-head{
  position:sticky;
  top:0;
  z-index:2;
  padding:14px 14px 12px;
  background:rgba(15,15,18,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.rtp-help-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.rtp-help-title .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--rt-gold);
  box-shadow:0 0 0 6px var(--rt-gold-a16);
}
.rtp-help-close{
  width:40px;
  height:40px;
  border-radius:12px;
  background:transparent;
  border:1px solid var(--rt-gold-a45);
  color:#fff;
  cursor:pointer;
  font-weight:900;
  font-size:18px;
}
.rtp-help-close:hover{ background:var(--rt-gold-a10); }

.rtp-help-body{ padding:12px 14px 16px; }
.rtp-help-search{
  width:100%;
  border-radius:14px;
  border:1px solid var(--rt-gold-a30);
  background:rgba(0,0,0,.35);
  color:#fff;
  padding:12px 12px;
  font:800 14px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  outline:none;
}
.rtp-help-search:focus{ border-color:var(--rt-gold-a70); box-shadow:0 0 0 5px var(--rt-gold-a14); }
.rtp-help-list{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }

.rtp-help-item{
  border-radius:16px;
  border:1px solid var(--rt-gold-a18);
  background:rgba(0,0,0,.28);
  overflow:hidden;
}
.rtp-help-q{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:12px 12px;
  color:#fff;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-weight:900;
  font-size:14px;
}
.rtp-help-q:hover{ background:var(--rt-gold-a06); }
.rtp-help-chev{ opacity:.85; font-size:14px; }
.rtp-help-a{
  padding:0 12px 12px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.55;
}
.rtp-help-empty{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--rt-gold-a18);
  background:var(--rt-gold-a06);
  color:rgba(255,255,255,.8);
  font-weight:800;
  font-size:12px;
}

@media (max-width: 520px){
  .rtp-help-card{ margin:4vh auto 0; max-height:88vh; }
  .rtp-help-fab{ left:12px; bottom:12px; }
}
