:root {
  --pb-navy: #07111f;
  --pb-navy-mid: #0e1c30;
  --pb-navy-soft: #162a45;
  --pb-teal: #2ec4b6;
  --pb-teal-deep: #1a9e92;
  --pb-gold: #d4b06a;
  --pb-gold-soft: #e8d4a8;
  --pb-ivory: #f3f0e8;
  --pb-muted: #8fa0b5;
  --pb-text: #e8eef6;
  --pb-text-dim: #a8b6c8;
  --pb-border: rgba(212, 176, 106, 0.22);
  --pb-font-display: "Cormorant Garamond", Georgia, serif;
  --pb-font-body: "Manrope", "Segoe UI", sans-serif;
  --pb-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --pb-radius: 0.35rem;
  --pb-transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pb-font-body);
  font-weight: 400;
  color: var(--pb-text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(46, 196, 182, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(212, 176, 106, 0.08), transparent 50%),
    linear-gradient(180deg, var(--pb-navy) 0%, #050b14 100%);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pb-teal);
  text-decoration: none;
  transition: color var(--pb-transition), opacity var(--pb-transition);
}

a:hover,
a:focus-visible {
  color: var(--pb-gold-soft);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #050910, var(--pb-navy-mid), #050910);
  border-top: 1px solid rgba(46, 196, 182, 0.18);
  border-bottom: 1px solid rgba(46, 196, 182, 0.18);
  color: var(--pb-text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
}

.topbar i {
  color: var(--pb-gold);
  margin-right: 0.4rem;
}

.topbar strong {
  color: var(--pb-gold-soft);
  font-weight: 600;
}

.site-navbar {
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid var(--pb-border);
  padding: 0.85rem 0;
  position: relative;
  z-index: 1030;
}

.site-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pb-ivory) !important;
  text-decoration: none;
  padding: 0;
}

.brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(46, 196, 182, 0.35), transparent 55%),
    linear-gradient(145deg, var(--pb-navy-soft), var(--pb-navy));
  border: 1px solid rgba(212, 176, 106, 0.45);
  color: var(--pb-gold);
  font-size: 1.05rem;
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.08);
  transition: transform var(--pb-transition), box-shadow var(--pb-transition);
}

.site-navbar .navbar-brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.04);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy .brand-name {
  font-family: var(--pb-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--pb-ivory);
}

.brand-copy .brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pb-teal);
  margin-top: 0.15rem;
}

.navbar-toggler {
  border: 1px solid rgba(212, 176, 106, 0.4);
  border-radius: var(--pb-radius);
  padding: 0.45rem 0.65rem;
  background: transparent;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(46, 196, 182, 0.25) !important;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.35rem;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pb-gold-soft);
  border-radius: 2px;
  transition: transform var(--pb-transition), opacity var(--pb-transition);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-navbar .navbar-nav {
  gap: 0.15rem;
}

.site-navbar .nav-link {
  color: var(--pb-text-dim) !important;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.85rem !important;
  border-radius: var(--pb-radius);
  position: relative;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus-visible,
.site-navbar .nav-link.active {
  color: var(--pb-ivory) !important;
  background: rgba(46, 196, 182, 0.08);
}

.site-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pb-gold), transparent);
}

.hero {
  position: relative;
  min-height: clamp(34rem, 88vh, 48rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(5, 11, 20, 0.92) 0%, rgba(7, 17, 31, 0.72) 48%, rgba(7, 17, 31, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 11, 20, 0.85) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5rem;
  max-width: 42rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pb-teal);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--pb-gold);
}

.hero-title {
  font-family: var(--pb-font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.05;
  color: var(--pb-ivory);
  margin: 0 0 1.15rem;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: riseIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero-title span {
  display: block;
  color: var(--pb-gold-soft);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  color: var(--pb-text-dim);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.btn-pb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--pb-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--pb-radius);
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
  transition: transform var(--pb-transition), background var(--pb-transition), border-color var(--pb-transition), color var(--pb-transition), box-shadow var(--pb-transition);
}

.btn-pb-primary {
  background: linear-gradient(135deg, var(--pb-teal), var(--pb-teal-deep));
  color: #041018;
  box-shadow: 0 12px 28px rgba(46, 196, 182, 0.25);
}

.btn-pb-primary:hover,
.btn-pb-primary:focus-visible {
  color: #041018;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(46, 196, 182, 0.35);
}

.btn-pb-ghost {
  background: transparent;
  color: var(--pb-ivory);
  border-color: rgba(232, 212, 168, 0.45);
}

.btn-pb-ghost:hover,
.btn-pb-ghost:focus-visible {
  color: var(--pb-gold-soft);
  border-color: var(--pb-gold);
  background: rgba(212, 176, 106, 0.08);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-meta-item {
  min-width: 8rem;
}

.hero-meta-item .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pb-gold);
  margin-bottom: 0.35rem;
}

.hero-meta-item .value {
  font-family: var(--pb-font-display);
  font-size: 1.35rem;
  color: var(--pb-ivory);
}

.intro-strip {
  padding: 4.5rem 0 1rem;
}

.section-heading {
  font-family: var(--pb-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--pb-ivory);
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.section-lead {
  color: var(--pb-text-dim);
  max-width: 36rem;
  margin-bottom: 0;
}

.feature-grid {
  padding: 2rem 0 5rem;
}

.feature-card {
  height: 100%;
  padding: 1.85rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  background:
    linear-gradient(160deg, rgba(22, 42, 69, 0.55), rgba(7, 17, 31, 0.7));
  box-shadow: var(--pb-shadow);
  transition: transform var(--pb-transition), border-color var(--pb-transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 196, 182, 0.35);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1.15rem;
  color: var(--pb-navy);
  background: linear-gradient(135deg, var(--pb-gold-soft), var(--pb-gold));
  font-size: 1.15rem;
}

.feature-card h3 {
  font-family: var(--pb-font-display);
  font-size: 1.55rem;
  color: var(--pb-ivory);
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--pb-text-dim);
  margin: 0;
  font-size: 0.95rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pb-teal);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-copy {
  color: var(--pb-text-dim);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.split-section {
  padding: 4.5rem 0;
}

.split-section-alt {
  background: linear-gradient(180deg, rgba(14, 28, 48, 0.55), transparent);
}

.split-media {
  position: relative;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--pb-shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-media:hover img {
  transform: scale(1.04);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--pb-text);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.check-list i {
  color: var(--pb-teal);
  margin-top: 0.25rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.75rem;
}

.stat-item {
  min-width: 5.5rem;
}

.stat-num {
  display: block;
  font-family: var(--pb-font-display);
  font-size: 2rem;
  color: var(--pb-gold-soft);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-text-dim);
}

.games-section {
  padding: 4.5rem 0;
}

.game-tile {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(46, 196, 182, 0.18);
  background: rgba(7, 17, 31, 0.65);
  transition: border-color var(--pb-transition), transform var(--pb-transition);
}

.game-tile:hover {
  border-color: rgba(212, 176, 106, 0.45);
  transform: translateY(-4px);
}

.game-tile-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--pb-teal);
  border: 1px solid rgba(46, 196, 182, 0.35);
  background: rgba(46, 196, 182, 0.08);
}

.game-tile h3 {
  font-family: var(--pb-font-display);
  font-size: 1.5rem;
  color: var(--pb-ivory);
  margin-bottom: 0.55rem;
}

.game-tile p {
  color: var(--pb-text-dim);
  margin: 0;
  font-size: 0.94rem;
}

.event-banner {
  position: relative;
  isolation: isolate;
  padding: 5rem 0;
  overflow: hidden;
}

.event-banner-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.event-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(5, 11, 20, 0.92) 0%, rgba(7, 17, 31, 0.78) 55%, rgba(7, 17, 31, 0.55) 100%);
}

.event-banner-content {
  max-width: 36rem;
}

.hours-section {
  padding: 4.5rem 0;
}

.hours-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  background: linear-gradient(160deg, rgba(22, 42, 69, 0.55), rgba(7, 17, 31, 0.75));
  padding: 0.35rem 1.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--pb-text-dim);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row strong {
  color: var(--pb-ivory);
  font-weight: 600;
}

.hours-row-muted span,
.hours-row-muted strong {
  color: var(--pb-muted);
}

.cta-band {
  padding: 0 0 4.5rem;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(212, 176, 106, 0.3);
  background:
    radial-gradient(circle at 0% 50%, rgba(46, 196, 182, 0.14), transparent 45%),
    linear-gradient(135deg, rgba(14, 28, 48, 0.95), rgba(7, 17, 31, 0.98));
}

.cta-band-inner p {
  color: var(--pb-text-dim);
  max-width: 28rem;
}

.disclaimer-band {
  padding: 0 0 4rem;
}

.disclaimer-panel {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(212, 176, 106, 0.28);
  background: rgba(10, 18, 32, 0.9);
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  color: var(--pb-gold);
  background: rgba(212, 176, 106, 0.12);
  border: 1px solid rgba(212, 176, 106, 0.3);
}

.disclaimer-title {
  font-family: var(--pb-font-display);
  font-size: 1.35rem;
  color: var(--pb-ivory);
  margin-bottom: 0.5rem;
}

.disclaimer-panel p {
  color: var(--pb-text-dim);
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.disclaimer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.disclaimer-links a {
  color: var(--pb-gold-soft);
  font-size: 0.85rem;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--pb-border);
  background: #050910;
  padding: 2.75rem 0 2rem;
  color: var(--pb-text-dim);
  font-size: 0.9rem;
}

.site-footer .footer-brand {
  font-family: var(--pb-font-display);
  font-size: 1.45rem;
  color: var(--pb-ivory);
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  margin-top: 0.35rem;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--pb-muted);
  margin-bottom: 0.75rem;
}

.footer-heading {
  font-family: var(--pb-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pb-gold);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links-stack {
  flex-direction: column;
  gap: 0.45rem !important;
}

.site-footer .footer-links a {
  color: var(--pb-text-dim);
  font-size: 0.88rem;
}

.site-footer .footer-links a:hover {
  color: var(--pb-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom a {
  color: var(--pb-text-dim);
}

.footer-bottom a:hover {
  color: var(--pb-teal);
}

html.age-locked,
html.age-locked body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(3, 8, 16, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate.is-visible {
  opacity: 1;
  visibility: visible;
}

.age-gate-card {
  width: 100%;
  max-width: 26rem;
  padding: 2rem 1.6rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(212, 176, 106, 0.35);
  background: linear-gradient(160deg, #12233a, #0a1422);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.age-gate-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pb-navy);
  background: linear-gradient(135deg, var(--pb-gold-soft), var(--pb-gold));
  font-size: 1.15rem;
}

.age-gate-icon-warn {
  background: linear-gradient(135deg, #c46b6b, #8f3d3d);
  color: #fff;
}

.age-gate-card h2 {
  font-family: var(--pb-font-display);
  font-size: 1.85rem;
  color: var(--pb-ivory);
  margin-bottom: 0.65rem;
}

.age-gate-card p {
  color: var(--pb-text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.age-gate-actions .btn-pb {
  width: 100%;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(46, 196, 182, 0.28);
  background: rgba(8, 16, 28, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(16px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-consent-inner {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.cookie-consent p {
  margin: 0;
  color: var(--pb-text-dim);
  font-size: 0.88rem;
}

.cookie-consent a {
  color: var(--pb-gold-soft);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-consent-actions .btn-pb {
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(46, 196, 182, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(14, 28, 48, 0.5), transparent);
}

.page-hero h1 {
  font-family: var(--pb-font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--pb-ivory);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.page-hero p {
  color: var(--pb-text-dim);
  max-width: 38rem;
  margin: 0;
}

.page-content {
  padding: 3.5rem 0 4.5rem;
}

.content-card {
  height: 100%;
  padding: 1.6rem 1.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(22, 42, 69, 0.5), rgba(7, 17, 31, 0.7));
}

.content-card h2,
.content-card h3 {
  font-family: var(--pb-font-display);
  color: var(--pb-ivory);
}

.content-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.content-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.content-card p,
.content-card li {
  color: var(--pb-text-dim);
  font-size: 0.95rem;
}

.content-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
  font-family: var(--pb-font-display);
  font-size: 1.25rem;
  color: var(--pb-ivory);
  margin: 0 0 0.25rem;
}

.menu-item p {
  margin: 0;
  color: var(--pb-text-dim);
  font-size: 0.88rem;
}

.menu-item .price {
  color: var(--pb-gold);
  font-weight: 600;
  white-space: nowrap;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--pb-text-dim);
}

.info-list i {
  color: var(--pb-teal);
  margin-top: 0.2rem;
}

.legal-block + .legal-block {
  margin-top: 2rem;
}

.legal-block h2 {
  font-family: var(--pb-font-display);
  font-size: 1.55rem;
  color: var(--pb-ivory);
  margin-bottom: 0.65rem;
}

.legal-block p,
.legal-block li {
  color: var(--pb-text-dim);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.75rem;
    border: 1px solid var(--pb-border);
    border-radius: 0.55rem;
    background: rgba(10, 20, 36, 0.98);
  }

  .site-navbar .nav-link {
    padding: 0.7rem 0.9rem !important;
  }

  .site-navbar .nav-link.active::after {
    display: none;
  }

  .site-footer .footer-links {
    justify-content: flex-start;
  }

  .hero-content {
    padding: 3.25rem 0 3.75rem;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .disclaimer-panel {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .brand-copy .brand-name {
    font-size: 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-pb,
  .cta-band-inner > .btn-pb {
    width: 100%;
  }

  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .btn-pb {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media {
    transform: none;
  }

  .hero-kicker,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .hero-meta {
    opacity: 1;
  }
}
