/* ============================================================
   STARR BOXING — Global Stylesheet
   Brand: Black / Fire Engine Red (#CC0000) / White
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #1a1a1a;
  --gold: #CC0000;
  --gold-light: #E84040;
  --gold-dark: #991100;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #888888;
  --gray-dark: #333333;
  --red: #CC0000;
  --font-heading: 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.25s ease;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 4px 24px rgba(204,0,0,0.35);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-black { background: var(--black); }
.bg-card { background: var(--black-card); }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.hidden { display: none; }

/* Section Labels */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* Divider */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 1.5rem;
}
.gold-line--left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204,0,0,0.15);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  border-bottom-color: rgba(204,0,0,0.3);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
}
.navbar__logo:hover { color: var(--white); }
.navbar__logo span { color: var(--gold); }
.navbar__logo img { display:block; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__nav a:hover, .navbar__nav a.active { color: var(--gold); }
.navbar__nav a:hover::after, .navbar__nav a.active::after { width: 100%; }
.navbar__cta { margin-left: 1rem; }

/* Dropdown */
.navbar__nav .dropdown { position: relative; }
.navbar__nav .dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-card);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--white);
  border-bottom: none;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(204,0,0,0.1); color: var(--gold); }

/* Mobile nav */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .mobile-cta { margin-top: 2rem; display: block; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 65% center;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  max-width: 680px;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-item .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.hero__trust-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 140px 0 70px;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(204,0,0,0.1) 0%, transparent 60%);
  z-index: 0;
}
.page-hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0.22;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.5) 100%);
  z-index: 0;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero h1 span { color: var(--gold); }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gray-mid); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(204,0,0,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card__link:hover { color: var(--gold-light); gap: 10px; }

/* ============================================================
   ABOUT / TRAINER SECTION
   ============================================================ */
.trainer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.trainer-section__image {
  position: relative;
}
.trainer-section__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-card);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trainer-section__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trainer-section__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.trainer-section__image-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--black-card);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
}
.trainer-section__image-badge .years {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.trainer-section__image-badge .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.credential-list { margin: 1.5rem 0; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.credential-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: rgba(204,0,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(204,0,0,0.07) 100%);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.pricing-card__desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.pricing-card__price .currency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
}
.pricing-card__price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.pricing-card__price .period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.pricing-card__features {
  margin-bottom: 1.75rem;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.pricing-card__features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(204,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-card__author-name {
  font-weight: 700;
  font-size: 0.88rem;
}
.testimonial-card__author-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.faq-item.open .faq-item__answer { display: block; }

/* ============================================================
   LEAD CAPTURE / CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 50%, #1a0000 100%);
  border-top: 1px solid rgba(204,0,0,0.2);
  border-bottom: 1px solid rgba(204,0,0,0.2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(204,0,0,0.1) 0%, transparent 70%);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Lead Capture Form */
.lead-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.lead-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(204,0,0,0.3);
  border-right: none;
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.95rem;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.lead-form input:focus { border-color: var(--gold); }
.lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.lead-form button:hover { background: var(--gold-light); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
}
.contact-detail__text strong { display: block; font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-detail__text span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.form-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(204,0,0,0.05);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--black-card); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(204,0,0,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card__image {
  background: rgba(204,0,0,0.1);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.blog-card__body { padding: 1.5rem; }
.blog-card__meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 12px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card h3 a { color: var(--white); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ============================================================
   CELEBRITIES / SOCIAL PROOF
   ============================================================ */
.social-proof-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}
.social-proof-bar p {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.proof-items {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.proof-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.proof-item:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   TRAP BOXING HERO — Two-column: text left, Mike cutout right
   ============================================================ */
.trap-hero {
  position: relative;
  min-height: calc(85vh - 60px);
  display: block;
  overflow: visible;
  background: #030008;
}
.trap-hero__bg-blur {
  position: absolute;
  inset: 0;
  background-image: url('../images/trap-uv-3.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(4px) saturate(1.3);
  opacity: 0.55;
}
.trap-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3,0,8,0.85) 0%,
    rgba(3,0,8,0.55) 45%,
    rgba(3,0,8,0.45) 100%
  );
}
.trap-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 90% at 75% 55%, rgba(0,70,220,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 25% 35%, rgba(0,160,60,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 90% 45% at 50% 100%, rgba(60,0,120,0.28) 0%, transparent 65%);
}
.trap-hero__inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 0;
  align-items: stretch;
  min-height: calc(85vh - 60px);
  padding-top: 110px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}
.trap-hero__content {
  padding: 1rem 1.5rem 1rem 0;
  align-self: center;
}
.trap-hero__logo {
  height: 78px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.trap-hero__sub {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.trap-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.trap-hero__desc {
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.trap-hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-left: -2rem;
  /* Drop-shadow on the parent — follows the masked silhouette instead of being clipped by the mask */
  filter: drop-shadow(0 0 50px rgba(0,200,80,0.25)) drop-shadow(0 0 100px rgba(0,80,220,0.18));
}
.trap-hero__cutout {
  height: 92vh;
  max-height: 92vh;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom left;
  display: block;
  margin-bottom: -110px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
}

/* ============================================================
   TRAP BOXING PHOTO GALLERY — 6 equal tiles, no gaps
   ============================================================ */
.trap-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 8px;
}
.trap-gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-card);
}
.trap-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.4s ease;
}
.trap-gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .trap-hero__inner { gap: 1rem; }
  .trap-hero__title { font-size: clamp(2rem, 4vw, 3rem); }
}
@media (max-width: 1024px) {
  .trap-hero__inner { gap: 1rem; }
  .trap-hero__title { font-size: clamp(2rem, 4vw, 3rem); }
  .trap-hero__logo { height: 62px; }
  .trap-hero__image { margin-left: 0; }
  .trap-hero__cutout { height: 80vh; max-height: 80vh; }
}
@media (max-width: 768px) {
  .trap-hero {
    min-height: auto;
    overflow: hidden;
  }
  .trap-hero__logo {
    height: 110px;
    margin: 0 auto 1.25rem;
  }
  .trap-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 110px 0 50px;
    align-items: center;
  }
  .trap-hero__content {
    padding: 0;
    text-align: center;
    order: 1;
  }
  .trap-hero__content .breadcrumb { justify-content: center; }
  .trap-hero__sub { text-align: center; }
  .trap-hero__title { margin-bottom: 1rem; }
  .trap-hero__desc { max-width: 100%; margin: 0 auto 1.5rem; }
  .trap-hero__content > div:last-child { justify-content: center; }
  /* Hide Mike cutout on mobile — logo carries the brand */
  .trap-hero__image { display: none; }
  .trap-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}
@media (max-width: 480px) {
  .trap-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.celebrity-card {
  background: var(--black-card);
  border: 1px solid rgba(204,0,0,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.celebrity-card__emoji { font-size: 2rem; margin-bottom: 0.75rem; color: var(--gold); }
.celebrity-card h4 { font-size: 1rem; color: var(--gold); }
.celebrity-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }

/* ============================================================
   LOCATION BADGES
   ============================================================ */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.location-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.location-card h4 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1rem; }
.location-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }
.location-card .schedule { margin-top: 0.75rem; font-size: 0.8rem; color: var(--gold); }

/* ============================================================
   LEAD CAPTURE STRIP
   ============================================================ */
.lead-strip {
  background: linear-gradient(135deg, #0f0000 0%, #1a0000 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(204,0,0,0.25);
  border-bottom: 1px solid rgba(204,0,0,0.25);
  padding: 2.25rem 0;
}
.lead-strip__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.lead-strip__text {
  flex: 1;
  min-width: 220px;
}
.lead-strip__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.lead-strip__text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.lead-strip__form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex: 2;
  min-width: 280px;
}
.lead-strip__form input {
  flex: 1;
  min-width: 150px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(204,0,0,0.35);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}
.lead-strip__form input::placeholder { color: rgba(255,255,255,0.35); }
.lead-strip__form input:focus { border-color: var(--gold); }

/* ============================================================
   SOCIAL LINKS (footer)
   ============================================================ */
.success-msg {
  display: none;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--gold);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trainer-section { grid-template-columns: 1fr; gap: 3rem; }
  .trainer-section__image { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LEAD POP-UP (slide-in)
   ============================================================ */
.lead-popup {
  position: fixed;
  bottom: -420px;
  right: 1.5rem;
  width: 320px;
  background: var(--black-card);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: var(--radius-lg, 12px);
  padding: 1.75rem;
  z-index: 9000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lead-popup.is-open { bottom: 1.5rem; }
.lead-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.lead-popup__close:hover { color: var(--white); }
.lead-popup__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.lead-popup h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.lead-popup p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.lead-popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lead-popup__form input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(204,0,0,0.35);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.lead-popup__form input::placeholder { color: rgba(255,255,255,0.3); }
.lead-popup__form input:focus { border-color: var(--gold); }
.lead-popup__form .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }
.lead-popup__success {
  display: none;
  text-align: center;
  padding: 1rem 0;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--gold);
  padding: 0.85rem 1.25rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.sticky-cta-bar a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lead-form { flex-direction: column; }
  .lead-form input { border-right: 1px solid rgba(204,0,0,0.3); border-radius: var(--radius) var(--radius) 0 0; }
  .lead-form button { border-radius: 0 0 var(--radius) var(--radius); }
  .proof-items { gap: 1.5rem; }
  .cta-banner__ctas { flex-direction: column; align-items: center; }
  .sticky-cta-bar { display: block; }
  .lead-strip__form { flex-direction: column; }
  .lead-strip__inner { gap: 1.25rem; }
  .lead-popup { width: calc(100vw - 2rem); right: 1rem; }
  body.lead-popup-open { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 55px 0; }
  .hero__content { padding: 110px 0 60px; }
  .page-hero { padding: 120px 0 50px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}


/* ============================================================
   URGENCY BANNER (top of trap-boxing page)
   ============================================================ */
.urgency-banner {
  background: linear-gradient(90deg, #FF1F1F 0%, #CC0000 50%, #FF1F1F 100%);
  background-size: 200% 100%;
  animation: urgency-pulse 6s ease-in-out infinite;
  color: #FFFFFF;
  padding: 0.75rem 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  line-height: 1.3;
  box-shadow: 0 2px 12px rgba(204, 0, 0, 0.5);
}
.urgency-banner strong { color: #FFEB3B; }
.urgency-banner em { font-style: normal; }
.urgency-banner__icon { display: inline-block; margin-right: 0.4rem; animation: urgency-flicker 1.4s ease-in-out infinite; }
@keyframes urgency-pulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes urgency-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.15); }
}
@media (max-width: 600px) {
  .urgency-banner { font-size: 0.78rem; padding: 0.6rem 0.5rem; letter-spacing: 0.02em; }
}

/* ============================================================
   LITE YOUTUBE FACADE
   ============================================================ */
.video-section { position: relative; }
.lite-yt {
  position: relative;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(204, 0, 0, 0.3);
  isolation: isolate;
}
.lite-yt__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.lite-yt:hover .lite-yt__poster { transform: scale(1.03); filter: brightness(1); }
.lite-yt__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
  transition: transform 0.2s ease;
}
.lite-yt:hover .lite-yt__play { transform: translate(-50%, -50%) scale(1.1); }
.lite-yt iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: inherit;
}

/* ============================================================
   TICKET COUNTER (live capacity tracker on trap-boxing hero)
   ============================================================ */
.ticket-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid rgba(204, 0, 0, 0.4);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.ticket-counter__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 10px #2ecc71;
  animation: dot-pulse 1.6s ease-in-out infinite;
}
.ticket-counter--low .ticket-counter__dot { background: #FFC107; box-shadow: 0 0 10px #FFC107; }
.ticket-counter--sold-out .ticket-counter__dot { background: #FF1F1F; box-shadow: 0 0 10px #FF1F1F; }
.ticket-counter--sold-out .ticket-counter__text { color: #FFEB3B; }
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ============================================================
   HERO REASSURANCE STRIP (under CTA buttons)
   ============================================================ */
.trap-hero__reassurance {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}
.trap-hero__reassurance i { color: var(--gold); margin-right: 0.3rem; }

/* ============================================================
   SOLD-OUT PROOF BLOCK
   ============================================================ */
.sold-out-proof {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.sold-out-proof__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sold-out-proof__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem 1.5rem;
}
.sold-out-proof__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.sold-out-proof__list span { color: rgba(255, 255, 255, 0.65); }
.sold-out-proof__list strong {
  color: #FF3838;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 3px 10px;
  border: 1px solid rgba(255, 56, 56, 0.5);
  border-radius: 100px;
  background: rgba(255, 56, 56, 0.1);
  text-transform: uppercase;
}
.sold-out-proof__note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

/* ============================================================
   TICKET TIERS (pricing reveal on tickets section)
   ============================================================ */
.ticket-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.ticket-tier {
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.ticket-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.4);
}
.ticket-tier--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.15), var(--black-card));
  box-shadow: 0 8px 32px rgba(204, 0, 0, 0.25);
}
.ticket-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.ticket-tier__price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ticket-tier__label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ticket-tier__detail {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}
.ticket-tier__detail code {
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid rgba(204, 0, 0, 0.4);
  padding: 1px 8px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #FFEB3B;
}

/* ============================================================
   CHECKOUT PAGE — /trap-boxing/checkout
   ============================================================ */
.checkout-page main { padding-top: 0; }
.checkout-main {
  padding: 110px 0 80px;
  background: var(--black);
  min-height: 100vh;
}
.checkout-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.checkout-back {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.checkout-back:hover { color: var(--gold); }
.checkout-h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.checkout-event {
  padding: 1rem 1.25rem;
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.checkout-event__date {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.checkout-event__venue {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.cfg-block { margin-bottom: 2rem; }
.cfg-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* Quantity selector */
.cfg-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cfg-qty__btn {
  width: 44px;
  height: 44px;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.cfg-qty__btn:hover { border-color: var(--gold); color: var(--gold); }
.cfg-qty input {
  width: 80px;
  height: 44px;
  text-align: center;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  -moz-appearance: textfield;
}
.cfg-qty input::-webkit-outer-spin-button,
.cfg-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cfg-qty__price {
  margin-left: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}
.cfg-hint { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; margin-top: 0.5rem; }
.cfg-hint code {
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid rgba(204, 0, 0, 0.4);
  padding: 1px 7px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #FFEB3B;
}

/* Tee toggle */
.cfg-toggle {
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  padding: 1rem 1.25rem;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.cfg-toggle:hover { border-color: rgba(204, 0, 0, 0.4); }
.cfg-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cfg-toggle__box {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  position: relative;
  transition: all var(--transition);
}
.cfg-toggle input:checked ~ .cfg-toggle__box {
  background: var(--gold);
  border-color: var(--gold);
}
.cfg-toggle input:checked ~ .cfg-toggle__box::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cfg-toggle__copy { line-height: 1.4; }
.cfg-toggle__copy strong { display: block; color: var(--white); font-size: 0.98rem; }
.cfg-toggle__copy small { color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; }

.cfg-tee-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cfg-row label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}
.cfg-row select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

/* Coupon row */
.cfg-coupon {
  display: flex;
  gap: 0.5rem;
}
.cfg-coupon input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cfg-coupon__msg {
  font-size: 0.82rem;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
}
.cfg-coupon__msg--ok { color: #2ecc71; }
.cfg-coupon__msg--err { color: #FF5050; }

/* Order summary */
.checkout-side { position: sticky; top: 100px; }
.checkout-summary {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.checkout-summary h2 {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row--discount { color: #2ecc71; }
.summary-row--total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
  border-bottom: none !important;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.checkout-summary__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.checkout-summary--mobile { display: none; margin: 1.5rem 0; }

/* CTA */
.checkout-cta {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.05rem;
}
.checkout-cta:disabled { opacity: 0.6; cursor: progress; }
.checkout-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.5);
  color: #FFB3B3;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* Trust row */
.trust-row {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.trust-row li i { color: var(--gold); margin-right: 0.4rem; }

/* Inline quote */
.checkout-quote {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(204, 0, 0, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.checkout-quote__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.checkout-quote p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.checkout-quote__author {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Stripe Embedded Checkout overlay */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.checkout-overlay__inner {
  background: #FFFFFF;
  border-radius: var(--radius);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}
.checkout-overlay__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
}
.checkout-overlay__close:hover { background: rgba(0, 0, 0, 0.1); }
#checkoutMount { padding: 1rem; }

/* Mobile */
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .checkout-side { display: none; }
  .checkout-summary--mobile { display: block; }
}
@media (max-width: 600px) {
  .checkout-main { padding: 95px 0 60px; }
  .checkout-h1 { font-size: 1.6rem; }
  .cfg-tee-options { grid-template-columns: 1fr; }
}

/* ============================================================
   UPSELL PAGE — /trap-boxing/upsell
   ============================================================ */
.upsell-page {
  background: radial-gradient(ellipse at top, rgba(204,0,0,0.08) 0%, transparent 70%), var(--black);
  min-height: 100vh;
}
.upsell-main { padding: 60px 0 80px; }
.upsell-receipt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
}
.upsell-receipt__check {
  font-size: 1.5rem;
  color: #2ecc71;
  flex-shrink: 0;
}
.upsell-receipt__copy { font-size: 0.92rem; line-height: 1.4; }
.upsell-receipt__copy strong { display: block; color: var(--white); margin-bottom: 0.1rem; }
.upsell-receipt__copy span { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

.upsell-card {
  background: linear-gradient(180deg, var(--black-card), var(--black-soft));
  border: 2px solid rgba(204, 0, 0, 0.35);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.upsell-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #FFEB3B, var(--gold));
}
.upsell-card__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFEB3B;
  background: rgba(255, 235, 59, 0.1);
  border: 1px solid rgba(255, 235, 59, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.upsell-card__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.upsell-card__hero {
  margin: 0 -2rem 1.5rem;
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--black);
}
.upsell-card__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upsell-card__offer {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.upsell-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.upsell-card__strike {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
}
.upsell-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.upsell-card__save {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.upsell-card__bullets {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.upsell-card__bullets li {
  display: flex;
  gap: 0.7rem;
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.upsell-card__bullets li i { color: #2ecc71; flex-shrink: 0; margin-top: 0.25rem; }
.upsell-cta { width: 100%; font-size: 1.05rem; }
.upsell-cta:disabled { opacity: 0.7; cursor: progress; }
.upsell-card__safe {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.upsell-card__safe i { color: var(--gold); margin-right: 0.3rem; }
.upsell-decline {
  display: block;
  margin: 1.5rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.upsell-decline:hover { color: rgba(255, 255, 255, 0.75); }
.upsell-error {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.5);
  color: #FFB3B3;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================================
   THANK-YOU PAGE — /trap-boxing/thank-you
   ============================================================ */
.thank-you-page {
  background: radial-gradient(ellipse at top, rgba(46,204,113,0.08) 0%, transparent 70%), var(--black);
  min-height: 100vh;
}
.thank-you-main { padding: 60px 0 80px; }
.thanks-hero { text-align: center; padding: 2rem 0; }
.thanks-hero__check {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(46, 204, 113, 0.5));
}
.thanks-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.thanks-hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}
.thanks-hero__upsell {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 235, 59, 0.08);
  border: 1px solid rgba(255, 235, 59, 0.3);
  border-radius: var(--radius);
  display: inline-block;
  color: rgba(255, 235, 59, 0.95);
  font-size: 0.95rem;
}

.thanks-summary {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.thanks-summary h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.thanks-summary dl { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1rem; margin: 0; }
.thanks-summary dt { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; }
.thanks-summary dd {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.thanks-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.thanks-refer {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.thanks-refer h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.thanks-refer p { color: rgba(255, 255, 255, 0.7); margin-bottom: 1rem; }
.thanks-refer__link {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.thanks-refer__link input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: monospace;
  font-size: 0.85rem;
}

.thanks-classes {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.thanks-classes h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.thanks-classes p { color: rgba(255, 255, 255, 0.65); margin-bottom: 1.25rem; }
.thanks-classes > div { justify-content: center; display: flex; }

@media (max-width: 600px) {
  .upsell-card { padding: 1.5rem; }
  .upsell-card__hero { margin: 0 -1.5rem 1.25rem; }
  .upsell-card__title { font-size: 1.7rem; }
  .upsell-card__price { font-size: 1.6rem; }
  .upsell-cta { font-size: 0.92rem; }
  .thanks-hero__check { font-size: 3rem; }
  .thanks-hero__title { font-size: 2.2rem; }
}

/* ============================================================
   MY TICKETS PAGE
   ============================================================ */
.my-tickets-page { background: var(--black); min-height: 100vh; }
.my-tickets-main { padding: 100px 0 60px; }
.mt-loggedout {
  text-align: center;
  max-width: 460px;
  margin: 4rem auto 0;
}
.mt-loggedout h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.mt-loggedout p { color: rgba(255, 255, 255, 0.65); margin-bottom: 1.5rem; }
.mt-email-form { display: flex; gap: 0.5rem; }
.mt-email-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
}
.mt-msg {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.mt-msg--error {
  background: rgba(255, 80, 80, 0.1);
  border-color: rgba(255, 80, 80, 0.4);
  color: #FFB3B3;
}

.mt-header { margin-bottom: 1.5rem; }
.mt-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.25rem; }
.mt-email { color: rgba(255, 255, 255, 0.55); font-size: 0.92rem; }

.mt-tickets { display: grid; gap: 1rem; }

.mt-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.mt-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mt-card__head h3 { font-size: 1.2rem; margin: 0 0 0.2rem; }
.mt-card__date { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; }
.mt-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
.mt-badge--check {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}
.mt-badge--gone {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.mt-card__qr {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.mt-card__qr img { display: block; margin: 0 auto; max-width: 100%; height: auto; }
.mt-card__addon {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}
.mt-card__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.mt-empty { text-align: center; padding: 3rem 1rem; }
.mt-empty p { color: rgba(255, 255, 255, 0.6); margin-bottom: 1rem; }

/* Transfer modal */
.mt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.mt-modal__inner {
  background: var(--black-card);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  position: relative;
}
.mt-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.mt-modal h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.mt-modal p { color: rgba(255, 255, 255, 0.65); margin-bottom: 1rem; font-size: 0.9rem; }
.mt-transfer-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.6rem 0 0.3rem;
  text-transform: uppercase;
}
.mt-transfer-form input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.mt-transfer-form button { margin-top: 1rem; }

/* ============================================================
   SCAN PAGE — buyer landing for /scan/{id}.{sig}
   ============================================================ */
.scan-page {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.scan-main { padding: 2rem 0; width: 100%; }
.scan-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(204, 0, 0, 0.2);
}
.scan-card__icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.scan-card h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.scan-card__intro {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}
.scan-card__qr-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.scan-card__qr-wrap img { display: block; }
.scan-card__hint { color: rgba(255, 255, 255, 0.5); font-size: 0.88rem; margin-bottom: 0.75rem; }
.scan-card__safe {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.scan-card__safe i { color: var(--gold); margin-right: 0.3rem; }

/* ============================================================
   STAFF DOOR SCANNER (/checkin)
   ============================================================ */
.checkin-app {
  margin: 0;
  padding: 0;
}
.checkin-root { min-height: 100vh; display: flex; flex-direction: column; }

/* Login */
.checkin-login {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at top, rgba(204, 0, 0, 0.12), transparent 60%), #000;
}
.checkin-login__inner {
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.checkin-login__brand { margin-bottom: 2rem; }
.checkin-login__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.checkin-login__logo span { color: var(--gold); }
.checkin-login__brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.checkin-login__form { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.checkin-login__form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.checkin-login__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.1rem;
}
.checkin-login__form button { margin-top: 1.5rem; }
.checkin-login__error {
  margin-top: 1rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.4);
  border-radius: var(--radius);
  color: #FFB3B3;
  font-size: 0.9rem;
  text-align: center;
}

/* Scanner */
.checkin-scanner {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #000;
  position: relative;
}
.checkin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
}
.checkin-bar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.checkin-bar__date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}
.checkin-bar__logout {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.checkin-viewport {
  flex: 1;
  width: 100%;
  height: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}
.checkin-viewport video { width: 100% !important; height: 100% !important; object-fit: cover; }

.checkin-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
}
.checkin-counter__main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.checkin-counter__main strong { color: var(--gold); font-size: 1.3rem; }
.checkin-counter__sub { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); }

/* Scan result overlay */
.scan-result {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.scan-result__inner {
  width: 100%;
  max-width: 380px;
  background: var(--black-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 3px solid var(--gold);
}
.scan-result--allow .scan-result__inner { border-color: #2ecc71; }
.scan-result--deny .scan-result__inner { border-color: #FF3838; }
.scan-result__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.scan-result--allow .scan-result__icon { color: #2ecc71; filter: drop-shadow(0 0 16px rgba(46, 204, 113, 0.6)); }
.scan-result--deny .scan-result__icon { color: #FF3838; filter: drop-shadow(0 0 16px rgba(255, 56, 56, 0.6)); }
.scan-result__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.scan-result__detail { color: rgba(255, 255, 255, 0.7); margin-bottom: 1rem; }
.scan-result__notes {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.scan-result__notes li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0;
}

/* ============================================================
   ADMIN DASHBOARD (/admin)
   ============================================================ */
.admin-app { background: var(--black); color: var(--white); }

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at top, rgba(204, 0, 0, 0.12), transparent 60%), #000;
}
.admin-login__inner { width: 100%; max-width: 420px; text-align: center; }
.admin-login__brand { margin-bottom: 2rem; }
.admin-login__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.admin-login__logo span { color: var(--gold); }
.admin-login__form { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.admin-login__form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}
.admin-login__form input {
  padding: 0.85rem 1rem;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
}
.admin-login__form button { margin-top: 1.25rem; }
.admin-login__msg {
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  text-align: center;
}

/* Header bar */
.admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-bar__brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.admin-bar__brand span { color: var(--gold); }
.admin-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.admin-tab {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.admin-tab:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.admin-tab--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.admin-bar__right { display: flex; align-items: center; gap: 0.75rem; }
.admin-bar__who { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }
.admin-bar__logout {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.admin-bar__logout:hover { color: var(--white); border-color: var(--gold); }

/* Main */
.admin-main { padding: 2rem 1.5rem; }
.admin-h2 { font-size: 1.05rem; letter-spacing: 0.06em; margin: 1.5rem 0 0.75rem; color: rgba(255, 255, 255, 0.6); }
.admin-h3 { font-size: 0.92rem; letter-spacing: 0.08em; margin: 1.5rem 0 0.5rem; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.admin-stat span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 0.4rem;
}
.admin-stat strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.admin-stat small {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.admin-stat--event {
  border-color: rgba(204, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.08), var(--black-card));
}

/* Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-table th, .admin-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.admin-table th {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.admin-table small { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; }
.admin-pill {
  display: inline-block;
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 100px;
  margin: 0 4px 4px 0;
}

/* Search */
.admin-search {
  width: 100%;
  max-width: 460px;
  padding: 0.7rem 1rem;
  background: var(--black-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.admin-empty {
  padding: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  background: var(--black-card);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

/* Live event card */
.admin-event-card {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.08), var(--black-card));
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.admin-event-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.admin-event-card__date { color: rgba(255, 255, 255, 0.6); margin-bottom: 1rem; font-size: 0.92rem; }
.admin-event-card__bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.admin-event-card__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #FFEB3B);
  transition: width 0.6s ease;
}
.admin-event-card__nums {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.admin-event-card__nums strong { color: var(--gold); font-size: 1.2rem; margin-right: 0.25rem; }

@media (max-width: 700px) {
  .admin-bar { padding: 0.6rem 1rem; }
  .admin-tabs { width: 100%; order: 3; }
  .admin-bar__right { margin-left: auto; }
  .admin-table { font-size: 0.82rem; }
  .admin-table th, .admin-table td { padding: 0.5rem 0.5rem; }
}

