:root {
  --shb-bg-base: #05000d;
  --shb-bg-deep: #0d0520;
  --shb-card: #130826;
  --shb-card-border: rgba(139, 92, 246, 0.2);
  --shb-violet: #8b5cf6;
  --shb-violet-deep: #7c3aed;
  --shb-teal: #14b8a6;
  --shb-teal-deep: #0d9488;
  --shb-text: #e2d9f3;
  --shb-text-soft: #94a3b8;
  --shb-topbar: #030009;
  --shb-shadow: 0 4px 24px rgba(139, 92, 246, 0.12);
  --shb-radius: 12px;
  --shb-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--shb-text);
  background: url("bg3.webp") center / cover fixed no-repeat;
  background-color: var(--shb-bg-base);
  min-width: 320px;
  position: relative;
}

body.shb-lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.shb-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(
      1px 1px at 12% 18%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 34% 72%,
      rgba(200, 180, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 58% 9%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 81% 55%,
      rgba(160, 220, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 22% 88%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 65% 41%,
      rgba(200, 160, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 92% 27%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 47% 63%,
      rgba(140, 240, 230, 0.5) 0%,
      transparent 100%
    );
  background-size: 400px 400px;
  animation: shb-twinkle 6s ease-in-out infinite alternate;
}

@keyframes shb-twinkle {
  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.85;
  }
}

.shb-page {
  position: relative;
  z-index: 1;
}

.shb-container {
  width: min(calc(100% - 32px), var(--shb-container));
  margin: 0 auto;
}

.shb-topbar {
  background: var(--shb-topbar);
  border-bottom: 1px solid rgba(139, 92, 246, 0.14);
  color: #a78bfa;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.shb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  text-align: center;
}

.shb-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
  border-bottom: 2px solid transparent;
}

.shb-header.scrolled {
  background: #000;
  border-bottom-color: var(--shb-violet);
  box-shadow: 0 8px 28px rgba(5, 0, 13, 0.45);
  backdrop-filter: blur(12px);
}

.shb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.shb-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.shb-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 70% 28%,
      rgba(255, 255, 255, 0.9) 0 2px,
      transparent 3px
    ),
    linear-gradient(140deg, rgba(139, 92, 246, 0.94), rgba(20, 184, 166, 0.92));
  position: relative;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.42);
}

.shb-brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px 11px 11px 15px;
  background: rgba(5, 0, 13, 0.92);
  clip-path: polygon(0 55%, 52% 0, 46% 34%, 100% 30%, 42% 100%, 50% 62%);
}

.shb-brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(226, 217, 243, 0.82);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  right: 5px;
  bottom: 6px;
  transform: rotate(18deg);
}

.shb-logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #8b5cf6, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--shb-violet);
  white-space: nowrap;
}

.shb-nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 12px;
  background: rgba(19, 8, 38, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.shb-nav-toggle span,
.shb-nav-toggle::before,
.shb-nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #a78bfa;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.shb-nav-toggle::before {
  transform: translateY(-6px);
}

.shb-nav-toggle::after {
  transform: translateY(6px);
}

.shb-nav-toggle.shb-nav-open span {
  opacity: 0;
}

.shb-nav-toggle.shb-nav-open::before {
  transform: rotate(45deg) translate(1px, 1px);
}

.shb-nav-toggle.shb-nav-open::after {
  transform: rotate(-45deg) translate(1px, -1px);
}

.shb-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.shb-nav a {
  font-family: "Orbitron", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shb-text);
  position: relative;
  padding-bottom: 0.25rem;
}

.shb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--shb-violet), var(--shb-teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.shb-nav a:hover::after,
.shb-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.shb-main {
  position: relative;
}

.shb-hero {
  background: transparent;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 13, 0.78);
  z-index: 0;
}

.shb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 50% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 30% at 30% 60%,
      rgba(20, 184, 166, 0.06) 0%,
      transparent 70%
    );
  pointer-events: none;
}

.shb-hero > * {
  position: relative;
  z-index: 1;
}

.shb-hero-panel {
  text-align: center;
  padding: 5rem 0 4rem;
}

.shb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.08);
  color: #d8c8ff;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.shb-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shb-violet), var(--shb-teal));
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.45);
}

.shb-hero h1,
.shb-section-title,
.shb-page-title,
.shb-card-title,
.shb-footer-title,
.shb-faq-toggle span,
.shb-legal-title {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shb-hero h1 {
  margin: 0 auto 1.15rem;
  max-width: 980px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.08;
}

.shb-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--shb-text-soft);
  font-size: 1.04rem;
  line-height: 1.85;
}

.shb-trust-pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.shb-pill {
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--shb-text);
  background: rgba(139, 92, 246, 0.08);
}

.shb-section,
.shb-mini-hero,
.shb-footer {
  position: relative;
}

.shb-cards-section {
  background: rgba(5, 0, 13, 0.8);
}

.shb-about {
  background: rgba(8, 2, 18, 0.82);
}

.shb-why {
  background: rgba(5, 0, 13, 0.88);
}

.shb-pledge {
  background: rgba(10, 3, 22, 0.84);
}

.shb-disclosure {
  background: rgba(4, 0, 10, 0.9);
}

.shb-faq {
  background: rgba(7, 1, 16, 0.85);
}

.shb-footer {
  background: rgba(3, 0, 8, 0.95);
}

.shb-mini-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.shb-mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 13, 0.78);
}

.shb-mini-hero .shb-container {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3rem;
}

.shb-page-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.shb-page-lead {
  max-width: 760px;
  margin: 0;
  color: var(--shb-text-soft);
  line-height: 1.8;
}

.shb-section-block {
  padding: 5.4rem 0;
}

.shb-section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.shb-section-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.shb-section-copy {
  margin: 0;
  color: var(--shb-text-soft);
  line-height: 1.8;
}

.shb-card {
  background: var(--shb-card);
  border: 1px solid var(--shb-card-border);
  border-top: 3px solid var(--shb-violet);
  border-radius: var(--shb-radius);
  padding: 20px 24px;

  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shb-shadow);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.shb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.38);
}

.shb-card-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #14b8a6);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Orbitron", sans-serif;
}

.shb-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(139, 92, 246, 0.25);
  flex-shrink: 0;
  padding: 0.4rem;
}

.shb-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.shb-card-info {
  flex: 1;
  min-width: 0;
}

.shb-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.shb-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--shb-text-soft);
  margin-bottom: 0.75rem;
  font-size: 0.93rem;
}

.shb-rating-stars {
  color: var(--shb-teal);
  letter-spacing: 0.08em;
}

.shb-offer {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
  color: #f3ecff;
}

.shb-card-copy,
.shb-card-disclaimer,
.shb-min-deposit {
  margin: 0;
  color: var(--shb-text-soft);
  line-height: 1.75;
  font-size: 0.92rem;
}

.shb-card-copy {
  margin-bottom: 0.7rem;
}

.shb-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.shb-cta,
.shb-button,
.shb-form button {
  background: linear-gradient(135deg, #7c3aed 0%, #0d9488 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.35);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.shb-cta:hover,
.shb-button:hover,
.shb-form button:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #0f766e 100%);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.55);
  transform: translateY(-1px);
}

.shb-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.shb-inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(19, 8, 38, 0.58);
  color: #d8c8ff;
  font-size: 0.83rem;
}

.shb-about-layout,
.shb-pledge-grid,
.shb-contact-grid {
  display: grid;
  gap: 1.35rem;
}

.shb-about-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.shb-about-mark,
.shb-panel,
.shb-feature,
.shb-faq-item,
.shb-legal-card,
.shb-form,
.shb-contact-card {
  background: rgba(19, 8, 38, 0.74);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  box-shadow: var(--shb-shadow);
}

.shb-about-mark {
  min-height: 100%;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.shb-about-mark::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -70px;
  right: -40px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.24) 0%,
    transparent 70%
  );
}

.shb-orbit-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.4);
  position: relative;
  margin-bottom: 1.2rem;
}

.shb-orbit-icon::before,
.shb-orbit-icon::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
}

.shb-orbit-icon::before {
  border: 2px solid rgba(20, 184, 166, 0.52);
  transform: rotate(26deg);
}

.shb-orbit-icon::after {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--shb-violet), var(--shb-teal));
  top: 8px;
  left: 54px;
  box-shadow: 0 0 14px rgba(20, 184, 166, 0.5);
}

.shb-mark-title {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shb-mark-copy,
.shb-panel p,
.shb-richtext p,
.shb-richtext li {
  margin: 0 0 1rem;
  color: var(--shb-text-soft);
  line-height: 1.9;
}

.shb-panel {
  padding: 1.5rem;
}

.shb-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.shb-feature {
  padding: 1.4rem;
  background: rgba(139, 92, 246, 0.06);
}

.shb-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.22),
    rgba(20, 184, 166, 0.18)
  );
  border: 1px solid rgba(139, 92, 246, 0.22);
  margin-bottom: 0.95rem;
}

.shb-feature h3,
.shb-pledge-box h3,
.shb-contact-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shb-feature p,
.shb-pledge-box p,
.shb-contact-card p {
  margin: 0;
  color: var(--shb-text-soft);
  line-height: 1.82;
}

.shb-pledge-grid,
.shb-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shb-pledge-box,
.shb-contact-card {
  padding: 1.6rem;
  background: rgba(19, 8, 38, 0.72);
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 12px;
}

.shb-disclosure-box {
  padding: 1.65rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(19, 8, 38, 0.72);
  box-shadow: var(--shb-shadow);
}

.shb-disclosure-box p {
  margin: 0 0 0.9rem;
  color: var(--shb-text-soft);
  line-height: 1.85;
}

.shb-disclosure-box p:last-child {
  margin-bottom: 0;
}

.shb-warning {
  color: #f7d38b;
}

.shb-faq-list {
  display: grid;
  gap: 0.9rem;
}

.shb-faq-item {
  overflow: hidden;
}

.shb-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  background: transparent;
  border: 0;
  color: var(--shb-text);
  text-align: left;
  cursor: pointer;
}

.shb-faq-toggle span {
  font-size: 0.95rem;
}

.shb-faq-symbol {
  font-size: 1.4rem;
  color: #b8a1ff;
  line-height: 1;
}

.shb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.shb-faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
}

.shb-faq-answer p {
  margin: 0;
  color: var(--shb-text-soft);
  line-height: 1.85;
}

.shb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 1.4rem;
}

.shb-footer-col {
  min-width: 0;
}

.shb-footer-title {
  margin: 0 0 0.95rem;
  font-size: 0.95rem;
}

.shb-footer-copy,
.shb-footer-list a,
.shb-bottom-bar p {
  color: var(--shb-text-soft);
  line-height: 1.8;
}

.shb-footer-list {
  display: grid;
  gap: 0.55rem;
}

.shb-footer-list a {
  position: relative;
  padding-left: 1rem;
}

.shb-footer-list a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #b8a1ff;
}

.shb-18-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.34);
  color: #e6dbff;
  background: rgba(139, 92, 246, 0.08);
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.shb-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shb-help-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(19, 8, 38, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
}

.shb-help-grid img {
  width: 110px;
  height: 44px;
  object-fit: contain;
}

.shb-bottom-bar {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(139, 92, 246, 0.14);
}

.shb-bottom-bar p {
  margin: 0.3rem 0;
}

.shb-richtext ul,
.shb-richtext ol {
  margin: 0 0 1.15rem 1.2rem;
  padding: 0;
  color: var(--shb-text-soft);
}

.shb-legal-grid {
  display: grid;
  gap: 1rem;
}

.shb-legal-card {
  padding: 1.4rem;
}

.shb-legal-title {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.shb-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.shb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shb-form label {
  display: grid;
  gap: 0.45rem;
  color: #d8c8ff;
  font-size: 0.92rem;
}

.shb-form input,
.shb-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(5, 0, 13, 0.68);
  color: var(--shb-text);
  padding: 0.88rem 0.95rem;
}

.shb-form textarea {
  min-height: 180px;
  resize: vertical;
}

.shb-contact-card a {
  color: #d9c9ff;
}

.shb-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(5, 0, 13, 0.94);
  border: 1px solid rgba(139, 92, 246, 0.26);
  box-shadow: 0 12px 30px rgba(5, 0, 13, 0.42);
  backdrop-filter: blur(14px);
}

.shb-cookie-banner.shb-visible {
  display: flex;
}

.shb-cookie-copy {
  color: var(--shb-text-soft);
  line-height: 1.7;
}

.shb-cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.shb-cookie-actions button:last-child {
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: none;
}

.shb-age-gate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 0, 8, 0.94);
}

.shb-age-gate.shb-visible {
  display: grid;
}

.shb-age-card {
  width: min(100%, 460px);
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(19, 8, 38, 0.98),
    rgba(8, 2, 18, 0.96)
  );
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.shb-age-card h2 {
  margin: 0 0 0.85rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shb-age-card p {
  margin: 0 0 1.3rem;
  color: var(--shb-text-soft);
  line-height: 1.75;
}

.shb-age-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.shb-age-actions a,
.shb-age-actions button {
  min-width: 160px;
}

.shb-secondary {
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: none;
}

.shb-secondary:hover {
  box-shadow: none;
}

@media (max-width: 900px) {
  .shb-header-inner {
    position: relative;
  }

  .shb-nav-toggle {
    display: inline-flex;
  }

  .shb-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 14px;
    background: rgba(5, 0, 13, 0.96);
    border: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: 0 18px 34px rgba(5, 0, 13, 0.42);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
  }

  .shb-nav.shb-nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .shb-about-layout,
  .shb-pledge-grid,
  .shb-contact-grid,
  .shb-footer-grid,
  .shb-form-grid {
    grid-template-columns: 1fr;
  }

  .shb-card {
    flex-wrap: wrap;
  }

  .shb-card-actions {
    width: 100%;
    align-items: stretch;
  }

  .shb-cta {
    width: 100%;
    text-align: center;
  }

  .shb-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 550px) {
  body {
    overflow-x: hidden;
    background-attachment: scroll;
  }

  .shb-header-inner {
    padding: 0.65rem 0.75rem;
    position: relative;
  }

  .shb-logo-text {
    font-size: clamp(0.58rem, 2.9vw, 0.78rem);
    letter-spacing: 0.05em;
    word-break: break-word;
    white-space: normal;
  }

  .shb-nav {
    left: 8px;
    right: 8px;
    padding: 12px;
  }

  .shb-hero h1 {
    font-size: clamp(1.05rem, 5.8vw, 2rem);
    letter-spacing: 0.055em;
    word-break: break-word;
  }

  .shb-hero-panel {
    padding: 4rem 0 2.8rem;
  }

  .shb-mini-hero .shb-container {
    padding: 3.8rem 0 2.4rem;
  }

  .shb-trust-pills {
    flex-wrap: wrap;
    gap: 8px;
  }

  .shb-card {
    flex-wrap: wrap;
    gap: 12px;
  }

  .shb-card-actions {
    width: 100%;
    align-items: stretch;
  }

  .shb-cta {
    width: 100%;
    text-align: center;
  }

  .shb-logo-wrap {
    width: min(140px, 100%);
    height: auto;
    min-height: 4rem;
  }

  .shb-card-info {
    min-width: 0;
    width: 100%;
  }

  .shb-why-grid {
    grid-template-columns: 1fr !important;
  }

  .shb-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .shb-card:hover {
    transform: none;
  }

  table {
    font-size: 0.78rem;
    table-layout: fixed;
    width: 100%;
  }

  table th,
  table td {
    padding: 0.5rem 0.4rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .shb-stars {
    display: none;
  }

  .shb-topbar-inner {
    gap: 0.35rem;
    font-size: 0.7rem;
  }

  .shb-help-grid {
    grid-template-columns: 1fr;
  }

  .shb-age-card {
    padding: 1.5rem;
  }

  .shb-section-block {
    padding: 3.9rem 0;
  }
}

@media (max-width: 380px) {
  .shb-logo-text {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }

  .shb-hero h1 {
    font-size: clamp(1rem, 5.2vw, 1.75rem);
  }

  .shb-header-inner {
    padding: 0.55rem;
  }
}
