/* HustleMap theme - Dark Stripe-style */
:root{
  --bg:#0A0F1C;
  --bg2:#0f2630;
  --card:#0f2630;
  --card2:#0b1d24;
  --ink:#E6EDFF;
  --ink-weak:#9FB3C8;
  --accent:#635BFF;
  --accent2:#00D4FF;
  --pill:rgba(15,25,35,.78);
  --tile:#0f2630;
  --tile-border:rgba(255,255,255,0.08);
  --tile-active:rgba(99, 91, 255, 0.1);
  --tile-text:#E6EDFF;
  --shadow:0 8px 32px rgba(0,0,0,0.4);
  --border:rgba(255,255,255,0.08);
  
  /* Black-Gold Luxe theme tokens */
  --hm-card-bg:rgba(14, 15, 22, 0.78);
  --hm-card-hover:rgba(18, 19, 28, 0.75);
  --hm-card-pressed:rgba(11, 12, 18, 0.85);
  --hm-text-primary:#F5F7FA;
  --hm-text-secondary:#B8C0CC;
  --hm-gold-ripple:rgba(240, 210, 138, 0.18);
  --hm-progress-track:#1A1B24;
  --hm-gold-text:#EED9A5;
  
  /* Gold theme color tokens for animated moving lights */
  --gold-1: #C9A86A;
  --gold-2: #E0C27B;
  --gold-3: #A67C2E;
  --ink-900: #0C1620;
  --aqua-1: #3EE0D0;
  --blue-1: #7DB2FF;
  --glow-bloom: rgba(224, 194, 123, 0.45);
  
  /* Moving lights design tokens */
  --bg-ink-900: #0C1620;
  --gold-glow: rgba(224, 194, 123, 0.45);
  
  /* Ticket watermark colors */
  --silver-light: #C7CED6;
  --silver-dark: #9BA6B2;
  --silver-blue: #BFD7EA;
  --gold-light: #F6D676;
  --gold-mid: #DAA520;
  --gold-dark: #8A6D1D;
  --gold-glint: #FFE7A3;
  --diamond-line: #3E3E3E;
  --diamond-white: #EAF6FF;
  --diamond-gold: #C69C2A;
  --epic-purple: #6B46C1;
  --epic-light: #9F7AEA;
  --epic-glow: #FF7AC3;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: #0A0F1C;
  color:var(--ink);
  font: 16px/1.5 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.container{width:min(1024px, 92%); margin:0 auto;}

.topbar{position:sticky; top:0; z-index:10; background:rgba(10,15,28,0.95); backdrop-filter: blur(6px); border-bottom:1px solid rgba(255,255,255,0.08);}
.topbar__inner{display:flex; justify-content:center; padding:14px 0;}
.hero-layout{display:flex; flex-direction:column; align-items:center; gap:16px}
.brand{font-weight:800; font-size:28px; letter-spacing:.2px; display:flex; align-items:center;}
.brand--h{background:linear-gradient(90deg, #D4AF37, #D4AF37); -webkit-background-clip:text; background-clip:text; color:transparent; position:relative; overflow:hidden}
.brand--h::before{content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg, transparent, rgba(99, 91, 255,0.2), transparent); animation:none; display:none}
.brand--m{background:linear-gradient(90deg, #D4AF37, #D4AF37); -webkit-background-clip:text; background-clip:text; color:transparent; margin-left:2px; position:relative; overflow:hidden}
.brand--m::before{content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg, transparent, rgba(99, 91, 255,0.2), transparent); animation:none; display:none}

@keyframes shimmer{0%{left:-100%} 100%{left:100%}}
@media (prefers-reduced-motion: reduce){.brand--h::before,.brand--m::before{animation:none}}
.badges{display:flex; align-items:center}
.badges__row{display:flex; gap:10px; flex-wrap:wrap; justify-content:center}
.pill{
  background:var(--pill);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.06);
  border-radius:999px;
  padding:8px 16px;
  font-size:14px;
  color:var(--ink-weak);
  position: relative;
  overflow: hidden;
}

/* Badge Sheen Effects */
.pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(224, 194, 123, 0.15), transparent);
  animation: badgeSheen 8s linear infinite;
}

.pill:nth-child(2)::before {
  animation-delay: 1.2s;
}

@keyframes badgeSheen {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.pill.ghost{background:transparent; border-color:rgba(255,255,255,0.08); color:var(--ink)}
.pill.price{font-weight:700}

.hero{padding:32px 0 10px 0; position:relative; overflow:hidden}
.hero-gradient-banner{
  position:absolute;
  top:-20%;
  left:-30%;
  width:160%;
  height:140%;
  background:linear-gradient(135deg, #635BFF, #00D4FF, #635BFF);
  opacity:0.03;
  animation:heroGradient 40s linear infinite;
  pointer-events:none;
  z-index:-1;
  filter:blur(40px);
  transform:rotate(-15deg);
}
@keyframes heroGradient{
  0%{transform:rotate(-15deg) translateX(-10%)}
  50%{transform:rotate(-15deg) translateX(10%)}
  100%{transform:rotate(-15deg) translateX(-10%)}
}
@media (prefers-reduced-motion: reduce){.hero-gradient-banner{animation:none}}
@media (max-width:768px){
  .hero-gradient-banner{
    top:-15%;
    left:-25%;
    width:150%;
    height:130%;
    filter:blur(30px);
  }
}
.hero__title{font-size: clamp(28px, 6vw, 56px); line-height:1.05; margin:0 0 10px 0; font-weight:800; letter-spacing:.2px; color:var(--ink);}

.hero__title .gradient {
  background: linear-gradient(135deg, #F6D676, #DAA520);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 2px rgba(218, 165, 32, 0.3);
}

.hero__sub{margin:0; color:var(--ink-weak)}

.card{
  background:var(--hm-card-bg);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:24px;
  margin:18px auto;
  padding:22px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 168, 106, 0.3), 0 0 0 2px rgba(224, 194, 123, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.card:hover,
.card:focus-within {
  background: var(--hm-card-hover);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 168, 106, 0.4), 0 0 0 2px rgba(224, 194, 123, 0.3);
}

.card:active {
  background: var(--hm-card-pressed);
  transition: background 0.1s ease;
}

.progress4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-bottom:18px;
}
.progress4 .seg{height:14px; background:var(--hm-progress-track); border-radius:999px; overflow:hidden; border:1px solid rgba(255,255,255,0.08)}
.progress4 .fill{
  height:100%;
  width:var(--p);
  background:linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  transition:width .45s ease;
  position: relative;
  overflow: hidden;
}

/* Progress Bar Flow Effect */
.progress4 .fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: progressFlow 10s linear infinite;
}

@keyframes progressFlow {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Progress bar micro-spark on completion */
.progress4 .fill.completed::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-glow);
  animation: microSpark 0.12s ease-out;
}

@keyframes microSpark {
  0% {
    opacity: 0.6;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0.5);
  }
}

.q-title{font-size: clamp(22px, 4.5vw, 36px); margin:14px 0 12px 0; font-weight:800; color:var(--ink)}
.options{display:grid; gap:14px; margin:12px 0 8px 0}
.option{
  padding:16px 18px;
  border-radius:16px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.08);
  color:var(--hm-text-primary);
  cursor:pointer;
  transition:transform .08s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
  backdrop-filter: blur(8px);
}
.option:hover{
  transform:translateY(-1px); 
  background:var(--hm-card-hover); 
  border-color:rgba(212, 175, 55, 0.3); /* Gold hover border instead of white */
  box-shadow:0 2px 4px rgba(0,0,0,0.3)
}
.option.selected{
  border-color: #D4AF37; /* Base gold */
  box-shadow: 0 0 0 2px rgba(140, 109, 31, 0.4), inset 0 0 0 1px rgba(26, 21, 11, 0.6), 0 0 20px rgba(224, 194, 123, 0.45); /* Deep shadow gold + subtle glow */
  background: rgba(26, 21, 11, 0.6);
  position: relative;
}

/* Answer Button Trailing Spark Effect */
.option.selected::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  width: 3px;
  height: 3px;
  background: var(--gold-glow);
  border-radius: 50%;
  animation: trailingSpark 0.18s ease-out;
  transform: translateY(-50%);
}

@keyframes trailingSpark {
  0% {
    right: -8px;
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    right: 4px;
    opacity: 0.8;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    right: 16px;
    opacity: 0;
    transform: translateY(-50%) scale(0.5);
  }
}

.option.ripple {
  animation: optionRipple 0.3s ease-out;
}

@keyframes optionRipple {
  0% {
    box-shadow: 0 0 0 0 var(--hm-gold-ripple), 0 0 0 0 rgba(201, 168, 106, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px var(--hm-gold-ripple), 0 0 0 12px rgba(201, 168, 106, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 210, 138, 0), 0 0 0 0 rgba(201, 168, 106, 0);
  }
}

.actions{display:flex; justify-content:flex-end;}
.actions.quiz-mode .btn{display:none}
.btn{
  background:linear-gradient(90deg, #635BFF, #00D4FF);
  border:none; border-radius:16px; padding:14px 22px; font-weight:800; color:#ffffff; cursor:pointer;
  opacity:.95;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3); /* Gold focus ring instead of blue */
}
.btn:disabled{filter:grayscale(1) brightness(.7); cursor:not-allowed; opacity:.6}
.btn.big{width:100%; padding:18px 22px; font-size:18px; margin-top:8px}

.hidden{display:none}

.calc-bars{display:grid; gap:12px; margin:14px 0 8px 0}
.calc-row{display:flex; align-items:center; gap:10px}
.calc-row .label{width:230px; color:var(--ink-weak); font-size:14px}
.calc-row .track{flex:1; height:16px; background:var(--hm-progress-track); border:1px solid rgba(255,255,255,0.08); border-radius:999px; overflow:hidden}
.calc-row .bar{height:100%; width:0}
.calc-row .pct{width:52px; text-align:right; color:var(--hm-gold-text); font-variant-numeric:tabular-nums}

.testimonials{margin-top:12px}
blockquote{background:var(--card); border:1px solid rgba(255,255,255,0.08); padding:16px; border-radius:16px; color:var(--ink); box-shadow:0 1px 3px rgba(0,0,0,0.3)}
.stars{letter-spacing:1px; margin-bottom:6px; color:var(--ink)}

.features{margin:10px 0 0 16px; color:var(--ink)}
.features li{margin:6px 0}

.email-row{margin:10px 0}
.input{
  width:100%; padding:14px 16px; border-radius:12px; background:var(--card); border:1px solid rgba(255,255,255,0.08); color:var(--ink); box-shadow:0 1px 2px rgba(0,0,0,0.2)
}

.smallprint{color:var(--ink-weak); font-size:13px; text-align:center; margin-top:8px}

/* Social Proof Styling */
.social-proof {
  font-size: 16px;
  text-align: center;
  margin: 24px 0;
  color: var(--hm-text-secondary);
  line-height: 1.5;
}

.social-proof #socialProofNumber {
  font-weight: 700;
  color: #DAA520;
  /* text-shadow removed - no glow effects */
}

/* Premium Results */
.recommendations {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.recommendation-card {
  background: var(--card2);
  border: 1px solid var(--tile-border);
  border-radius: 16px;
  padding: 20px;
}

.recommendation-card h3 {
  color: #635BFF;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.recommendation-card p {
  color: var(--ink-weak);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.recommendation-card ul {
  margin: 0;
  padding-left: 20px;
}

.recommendation-card li {
  color: var(--tile-text);
  margin: 6px 0;
  line-height: 1.4;
}

.premium-cta {
  text-align: center;
  margin: 32px 0 16px 0;
}

.premium-btn {
  background: linear-gradient(90deg, #635BFF, #00D4FF) !important;
  color: #ffffff !important;
  text-decoration: none;
  display: inline-block;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4);
}

.footer{opacity:.7; font-size:12px; margin:24px 0 40px 0; color:var(--ink-weak)}

@media (max-width:520px){
  .calc-row .label{width:160px}
}

/* Money Rain Animation */
.money-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.money-particle {
  position: absolute;
  font-size: 24px;
  animation: moneyFall 5.5s ease-in forwards;
  user-select: none;
}

/* Money Rain Animations */
@keyframes moneyFall {
  0% {
    top: -50px;
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

@keyframes moneySpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .money-particle {
    animation: none;
    opacity: 0;
  }
}

/* HM popups - Gold + Black Premium Theme */
.hm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hm-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(8px);
}

.hm-modal__content {
  background: #0B0F14;
  border: 1px solid #D4AF37;
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 8px 32px rgba(0, 0, 0, 0.6);
}

.hm-modal__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #F6D676;
  text-align: center;
}

.hm-modal__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  color: #FFF2C5;
  text-align: center;
}

.hm-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.hm-modal__btn {
  background: transparent;
  border: 2px solid #8C6D1F;
  color: #D4AF37;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.hm-modal__btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
  color: #F6E27A;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.hm-modal__btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
}

.hm-modal__btn:active,
.hm-modal__btn.pressed {
  background: linear-gradient(135deg, #D4AF37, #F6E27A);
  border-color: #8C6D1F;
  color: #0B0F14;
  transform: scale(0.98);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.hm-modal__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #D4AF37;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #FFF2C5;
  margin-bottom: 24px;
  transition: border-color 0.2s ease;
}

.hm-modal__input:focus {
  outline: none;
  border-color: #F6C453;
  box-shadow: 0 0 0 2px rgba(246, 196, 83, 0.2);
}

.hm-modal__input::placeholder {
  color: rgba(255, 242, 197, 0.5);
}

.hm-modal__btn--continue {
  background: linear-gradient(135deg, #F6C453, #D4AF37);
  border-color: transparent;
  color: #0B0F14;
  font-weight: 700;
}

.hm-modal__btn--continue:hover {
  background: linear-gradient(135deg, #D4AF37, #F6C453);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(246, 196, 83, 0.3);
}

.hm-modal__btn--continue:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(246, 196, 83, 0.3);
}


/* HM Animations */
@keyframes hmFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hmPopIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hmFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .hm-modal__content {
    padding: 24px 20px;
    margin: 10px;
  }
  
  .hm-modal__title {
    font-size: 22px;
  }
  
  .hm-modal__actions {
    flex-direction: column;
  }
  
  .hm-modal__btn {
    width: 100%;
  }
}

/* — Hero badges: 2 sus + 1 dedesubt — */
.hm-badges{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:8px;
  max-width:640px;
  margin:8px auto 0;
}
.hm-badge{
  display:flex; align-items:center; justify-content:center; gap:6px;
  padding:8px 10px; border-radius:999px;
  background: var(--pill);
  box-shadow: inset 0 0 0 1px var(--tile-border);
  color:var(--ink);
  font-size: clamp(12px, 3.4vw, 15px);
  white-space: nowrap; overflow:hidden; text-overflow: ellipsis;
}
/* a treia (Takes ~3 minutes) pe rândul doi, centrată */
.hm-badge:nth-child(3){
  grid-column: 1 / -1;        /* ocupă toată lățimea de sub primele două */
  justify-self:center;
  width:min(440px,100%);
}

/* fallback foarte îngust */
@media (max-width:340px){
  .hm-badges{ grid-template-columns: 1fr; }
}

/* Quiz card styling */
#quiz-card {
  position: relative;
  z-index: 10;
}

/* Ticket Plans Styling - Metallic Foil Design */
.tickets-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .tickets-container {
    grid-template-columns: 1fr 1fr;
  }
}

.ticket {
  background: var(--hm-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

/* Metallic foil shimmer effect */
.ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: ticketShimmer 8s linear infinite;
  transition: left 0.8s ease;
}

@keyframes ticketShimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Ticket Selection and Hover Effects */
.ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ticket:not(.ticket-locked):hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(224, 194, 123, 0.1), transparent);
  border-radius: 20px;
  animation: ticketHoverPulse 0.3s ease-out;
}

@keyframes ticketHoverPulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

.ticket.selected {
  border-color: var(--gold-1);
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.6), 0 0 0 3px rgba(224, 194, 123, 0.4), 0 8px 24px rgba(201, 168, 106, 0.3);
  background: rgba(26, 21, 11, 0.4);
}

.ticket.selected::after {
  content: '✓';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0E0F16;
  font-weight: bold;
  font-size: 14px;
}

/* Edge spark effect on tap */
.ticket:not(.ticket-locked):active::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  width: 3px;
  height: 3px;
  background: var(--gold-glow);
  border-radius: 50%;
  animation: edgeSpark 0.18s ease-out;
  transform: translateY(-50%);
}

@keyframes edgeSpark {
  0% {
    right: -4px;
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    right: 4px;
    opacity: 0.8;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    right: 12px;
    opacity: 0;
    transform: translateY(-50%) scale(0.5);
  }
}

.ticket:not(.selected) {
  opacity: 0.8;
}

.ticket-locked {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(11, 12, 18, 0.8);
}

.ticket-locked:hover {
  transform: none;
  box-shadow: none;
}

.ticket-locked::before {
  display: none;
}

/* Ticket Content Styling */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ticket-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.ticket-price {
  font-size: 24px;
  font-weight: 800;
}

.ticket-benefits {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 500;
}

.ticket-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.ticket-icons .icon {
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.ticket:hover .ticket-icons .icon {
  opacity: 1;
}

.ticket-status {
  font-size: 16px;
  font-weight: 600;
  color: #9FB3C8;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.ticket-tagline {
  font-size: 14px;
  color: var(--hm-text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.ticket-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--hm-text-primary);
  line-height: 1.4;
}

.feature-icon {
  color: #22e58b;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.ticket-lock-info {
  text-align: center;
  padding: 16px 0;
}

.lock-icon {
  font-size: 24px;
  margin-bottom: 8px;
  animation: lockPulse 4s ease-in-out infinite;
}

.lock-text {
  font-size: 14px;
  color: var(--hm-text-secondary);
  margin-bottom: 12px;
}

.premium-link {
  color: #E0C27B;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.premium-link:hover {
  color: #C9A86A;
}

@keyframes lockPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Pay CTA Button */
.pay-cta {
  background: linear-gradient(90deg, #C9A86A, #E0C27B, #A67C2E);
  color: #0E0F16;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pay-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 2s ease;
}

.pay-cta:hover::before {
  left: 100%;
}

.pay-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.4);
}

.pay-cta:active {
  transform: translateY(0);
  filter: brightness(1.08);
  transition: filter 0.12s ease;
}

.pay-cta:disabled {
  background: rgba(15, 25, 35, 0.6);
  color: var(--hm-text-secondary);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pay-cta:disabled::before {
  display: none;
}

/* Disclaimer */
.disclaimer {
  font-size: 11px;
  color: var(--hm-text-secondary);
  text-align: center;
  margin-top: 16px;
  opacity: 0.7;
}

/* Logo Shimmer and Glow Effects */
.brand--h, .brand--m {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  overflow: hidden;
}

.brand--h::before, .brand--m::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: logoShimmer 7s linear infinite;
  z-index: 1;
}

.brand--h::after, .brand--m::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
}

@keyframes logoShimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.brand--h, .brand--m {
  filter: drop-shadow(0 0 8px var(--gold-glow));
  animation: logoGlow 7s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(224, 194, 123, 0.15));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(224, 194, 123, 0.4));
  }
}

/* Counter Glow Pulse Effect */
.pill:has(+ .pill:contains("joined")) {
  animation: counterGlow 0.2s ease-out;
}

@keyframes counterGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 194, 123, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(224, 194, 123, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 194, 123, 0.2);
  }
}

/* Accessibility and Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .brand--h::before, .brand--m::before,
  .pill::before,
  .progress4 .fill::after,
  .option.selected::after,
  .hm-modal__content::before,
  .ticket::before,
  .ticket[data-plan="diamond"]::after,
  .ticket[data-plan="diamond"] .ticket-title::after,
  .lock-icon,
  .btn.big::before,
  .social-proof #socialProofNumber {
    animation: none !important;
  }
  
  .ticket::before {
    display: none;
  }
  
  .social-proof #socialProofNumber {
    opacity: 1;
    transform: none;
  }
}

/* Intersection Observer pause for off-screen animations */
.animate-pause {
  animation-play-state: paused;
}

/* Mobile Safari performance optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
  .brand--h::before, .brand--m::before,
  .pill::before,
  .progress4 .fill::after,
  .ticket::before,
  .btn.big::before {
    animation-duration: 9s;
  }
  
  .gold-glow {
    opacity: 0.35;
  }
}

/* Paywall CTA Button with Gold Theme */
.btn.big {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  color: #0E0F16;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* CTA Button Shimmer Effect */
.btn.big::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: ctaShimmer 9s linear infinite;
}

@keyframes ctaShimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.btn.big:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.4);
}

.btn.big:active {
  transform: translateY(0);
  filter: brightness(1.08);
  transition: filter 0.12s ease;
}

/* Social Proof Number Count-up Animation */
.social-proof #socialProofNumber {
  display: inline-block;
  color: var(--aqua-1);
  /* filter: drop-shadow removed - no glow effects */
  animation: countUp 0.8s ease-out forwards;
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Access Title */
.access-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px 0;
  color: var(--hm-text-primary);
}

/* Silver Ticket - Metallic Foil */
.ticket-silver {
  background: linear-gradient(135deg, #C0C7D1, #8A93A0);
  border: 1px solid rgba(192, 199, 209, 0.3);
  box-shadow: inset 0 0 20px rgba(192, 199, 209, 0.2), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ticket-silver .ticket-title,
.ticket-silver .ticket-price {
  color: #E6EBF2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ticket-silver .ticket-benefits {
  color: #E6EBF2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gold Ticket - Metallic Foil (Most Popular) */
.ticket-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  border: 1px solid rgba(201, 168, 106, 0.4);
  box-shadow: inset 0 0 20px rgba(201, 168, 106, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(224, 194, 123, 0.2);
}

.ticket-gold .ticket-title,
.ticket-gold .ticket-price {
  color: #0E0F16;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.ticket-gold .ticket-benefits {
  color: #0E0F16;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.ticket-badge {
  display: block;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #0E0F16;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-align: center;
  width: fit-content;
}

/* Diamond Ticket - Black Premium */
.ticket-diamond {
  background: #0A0A0A;
  border: 1px solid rgba(218, 165, 32, 0.3);
  box-shadow: inset 0 0 20px rgba(218, 165, 32, 0.1), 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(218, 165, 32, 0.2);
}

.ticket-diamond .ticket-title,
.ticket-diamond .ticket-price {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ticket-diamond .ticket-benefits {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Epic Ticket - Dark Brown Premium */
.ticket-epic {
  background: #3B2A1A;
  border: 1px solid rgba(59, 42, 26, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(59, 42, 26, 0.2);
}

/* Epic ticket text needs light colors for readability on dark brown */
.ticket-epic .ticket-title,
.ticket-epic .ticket-status,
.ticket-epic .ticket-benefits {
  color: #F5F5F5;
}

/* Epic ticket text needs dark scrim for readability on neon green */
.ticket-epic .ticket-header::before,
.ticket-epic .ticket-benefits::before {
  display: none;
}

.ticket-epic .ticket-title,
.ticket-epic .ticket-price,
.ticket-epic .ticket-benefits {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ticket-epic .ticket-status {
  font-size: 18px;
  opacity: 0.9;
}

/* Accessibility and Performance Optimizations for Tickets */
@media (prefers-reduced-motion: reduce) {
  .ticket::before,
  .ticket:not(.ticket-locked):hover::after,
  .ticket:not(.ticket-locked):active::before {
    animation: none !important;
  }
  
  .ticket::before {
    display: none;
  }
}

/* Intersection Observer pause for off-screen ticket animations */
.ticket.animate-pause {
  animation-play-state: paused;
}

/* Mobile Safari performance optimizations for tickets */
@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
  .ticket::before {
    animation-duration: 10s;
  }
  
  .ticket:not(.ticket-locked):hover::after {
    animation-duration: 0.4s;
  }
}

/* Ticket CTA Buttons */
.ticket-cta {
  margin-top: 16px;
  text-align: center;
}

.ticket-btn {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #0E0F16;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(201, 168, 106, 0.3);
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 106, 0.4);
}

.ticket-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201, 168, 106, 0.3);
}

/* Hidden old CTA button */
.hidden {
  display: none !important;
}

/* Responsive adjustments for tickets */
@media (max-width: 768px) {
  .tickets-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ticket {
    padding: 20px;
  }
  
  .ticket-title {
    font-size: 18px;
  }
  
  .ticket-price {
    font-size: 20px;
  }
  
  .ticket-benefits {
    font-size: 13px;
  }
  
  .ticket-badge {
    font-size: 10px;
    padding: 3px 6px;
    margin-bottom: 6px;
  }
  
  /* Mobile watermark scaling */
  .ticket-silver::after {
    --watermark-size: 100% 100%;
    transform: rotate(-6deg);
  }
  
  .ticket-gold::after {
    --watermark-size: 120% 120%;
    transform: rotate(-4deg);
  }
  
  .ticket-diamond::after {
    --watermark-size: 140% 140%;
  }
  
  .ticket-epic::after {
    --watermark-size: 160% 160%;
  }
}

@media (min-width: 1024px) {
  .ticket-badge {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
}

/* Ticket Watermarks */
.ticket::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--watermark-svg);
  background-size: var(--watermark-size);
  background-position: var(--watermark-position);
  background-repeat: no-repeat;
  opacity: var(--watermark-opacity);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* Silver Ticket Watermark - Mine Cart */
.ticket-silver::after {
  display: none;
}

/* Gold Ticket Watermark - Treasure Chest */
.ticket-gold::after {
  display: none;
}

/* Diamond Ticket Watermark - Keep existing faceted skull */
.ticket-diamond::after {
  --watermark-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%233E3E3E' stroke-width='1.2'%3E%3Cpath d='M35 30 Q50 20 65 30 L65 45 Q50 55 35 45 Z'/%3E%3Cpath d='M35 45 L35 70 Q50 80 65 70 L65 45'/%3E%3Cpath d='M40 40 Q45 38 50 40 Q55 38 60 40'/%3E%3Cpath d='M40 45 Q45 43 50 45 Q55 43 60 45'/%3E%3Cline x1='35' y1='30' x2='50' y2='25'/%3E%3Cline x1='65' y1='30' x2='50' y2='25'/%3E%3Cline x1='35' y1='45' x2='50' y2='50'/%3E%3Cline x1='65' y1='45' x2='50' y2='50'/%3E%3Cline x1='35' y1='60' x2='50' y2='65'/%3E%3Cline x1='65' y1='60' x2='50' y2='65'/%3E%3C/g%3E%3C/svg%3E");
  --watermark-size: 170% 170%;
  --watermark-position: center left;
  --watermark-opacity: 0.14;
  transform: rotate(0deg);
}

/* Epic Ticket Watermark - Royal Crown */
.ticket-epic::after {
  display: none;
}

/* Watermark Micro-Animations */
@keyframes silverDrift {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(-7deg); }
}

@keyframes goldSpecular {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2) saturate(1.1); }
}

@keyframes diamondGlint {
  0%, 100% { opacity: 0.14; }
  50% { opacity: 0.18; }
}

@keyframes epicGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.1) saturate(1.05); }
}

/* Apply animations only when motion is allowed */
@media (prefers-reduced-motion: no-preference) {
  .ticket-silver::after {
    animation: silverDrift 30s ease-in-out infinite;
  }
  
  .ticket-gold::after {
    animation: goldSpecular 14s ease-in-out infinite;
  }
  
  .ticket-diamond::after {
    animation: diamondGlint 22s ease-in-out infinite;
  }
  
  .ticket-epic::after {
    animation: epicGlow 18s ease-in-out infinite;
  }
}

/* Ensure text content is above watermarks */
.ticket-header,
.ticket-benefits,
.ticket-cta,
.ticket-badge,
.ticket-status {
  position: relative;
  z-index: 1;
}

/* Remove hover text overlays and shadows */
.ticket-header::before,
.ticket-benefits::before {
  display: none;
}

/* Keep subtle hover effects but remove text overlays */
.ticket:hover {
  transform: scale(1.01);
  transition: transform 0.2s ease;
}

.ticket:not(.ticket-locked):hover::after {
  display: none;
}

.ticket:not(.ticket-locked):active::before {
  display: none;
}

/* Gold focus rings for ticket buttons */
.ticket-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(246, 214, 118, 0.4);
}

/* Silver Ticket Badge */
.ticket-silver::before {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 45%;
  height: auto;
  aspect-ratio: 1;
  background-image: url('assets/badges/silver-badge.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: transform 0.3s ease;
}

/* Hover micro-parallax effect on badge only */
.ticket-silver:hover::before {
  transform: translate(1px, -1px);
}

/* Mobile responsive sizing */
@media (max-width: 768px) {
  .ticket-silver::before {
    width: 32%;
    bottom: 8px;
    right: 8px;
  }
}

/* Ensure "285,000" is gold and bold with high specificity */
#paywall {
  scroll-margin-top: 100px; /* Account for any sticky headers */
}
#paywall #socialProofNumber,
.social-proof #socialProofNumber,
#results #socialProofNumber {
  font-weight: 700 !important;
  color: #D4AF37 !important;
}

/* Gold "Remote" styling in results heading */
.gold-remote {
  color: #D4AF37;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(212, 175, 55, 0.3);
}

/* Trust + Legal Block */
.trust-legal {
  margin-top: 32px;
  padding: 24px;
  background: rgba(11, 15, 20, 0.6);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

/* Trust Badges Row */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(11, 15, 20, 0.8);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 8px;
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* Legal Microcopy */
.legal-microcopy {
  color: #A0A0A0;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 16px 0;
  text-align: center;
}

/* Policy Links */
.policy-links {
  text-align: center;
  margin-bottom: 16px;
}

.policy-link {
  color: #C0C0C0;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-link:hover {
  color: #DAA520;
  text-decoration: underline;
  text-decoration-color: rgba(218, 165, 32, 0.6);
}

/* Contact Info */
.contact-info {
  text-align: center;
  color: #A0A0A0;
  font-size: 12px;
  margin: 0;
}

.contact-link {
  color: #DAA520;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #F6D676;
  text-decoration: underline;
  text-decoration-color: rgba(246, 214, 118, 0.6);
}

/* Desktop Layout */
@media (min-width: 768px) {
  .trust-badges {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .trust-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .trust-legal {
    padding: 32px;
  }
  
  .trust-badges {
    gap: 20px;
  }
}

/* Legal Pages Styling */
.legal-header {
  background: var(--card);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.legal-header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-header .logo:hover {
  color: #F6E27A;
}

.legal-content {
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.legal-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.legal-content .last-updated {
  color: var(--ink-weak);
  font-size: 14px;
  margin: 0 0 40px 0;
  font-style: italic;
}

.legal-text h2 {
  font-size: 24px;
  font-weight: 600;
  color: #F6E27A;
  margin: 32px 0 16px 0;
  line-height: 1.3;
}

.legal-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 20px 0;
}

.legal-text ul,
.legal-text ol {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.legal-text li {
  margin: 8px 0;
}

.legal-text a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-text a:hover {
  color: #F6E27A;
  text-decoration: underline;
}

.back-link {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.back-link a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-link a:hover {
  color: #F6E27A;
}

.legal-footer {
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.legal-footer .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-footer p {
  color: var(--ink-weak);
  font-size: 14px;
  margin: 0;
}

/* Footer Styling */
.footer {
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--ink-weak);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D4AF37;
}

.footer p {
  color: var(--ink-weak);
  font-size: 14px;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .legal-content h1 {
    font-size: 28px;
  }
  
  .legal-text h2 {
    font-size: 20px;
  }
  
  .legal-text p,
  .legal-text ul,
  .legal-text ol {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .legal-content .container {
    padding: 0 16px;
  }
  
  .legal-header .container {
    padding: 0 16px;
  }
  
  .legal-footer .container {
    padding: 0 16px;
  }
}

/* Access Pages Styling */
.access-content {
  padding: 40px 0;
}

.access-content h1 {
  text-align: center;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.status-chip {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: inline-block;
  width: auto;
}

.private-note {
  text-align: center;
  color: var(--ink-weak);
  font-size: 14px;
  margin: 0 0 40px 0;
  font-style: italic;
}

/* Header Layout */
.legal-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-link {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #F6E27A;
}

.help-link, .legal-link {
  color: var(--ink-weak);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.help-link:hover, .legal-link:hover {
  color: #D4AF37;
}

.separator {
  color: var(--ink-weak);
  font-size: 12px;
}

/* Ticket Cards (reusing existing styles) */
.ticket {
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ticket-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.ticket-status {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticket-benefits p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.ticket-cta {
  text-align: center;
}

.show-path-btn {
  background: linear-gradient(135deg, #D4AF37 0%, #F6E27A 100%);
  color: #0A0A0A;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.show-path-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.show-path-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Collapsible Path Panels */
.path-panel {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 20px;
}

.path-content {
  padding: 0;
}

.path-section {
  margin-bottom: 24px;
}

.path-section:last-child {
  margin-bottom: 0;
}

.path-section h3 {
  color: #F6E27A;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.path-section h3::before {
  content: '✨';
  font-size: 16px;
}

.path-section p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.path-section ul, .path-section ol {
  color: var(--ink-weak);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

.path-section li {
  margin: 6px 0;
}

.path-section li::marker {
  color: #D4AF37;
}

/* Path Actions */
.path-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.copy-steps-btn, .back-to-top-btn {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-steps-btn:hover, .back-to-top-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.copy-steps-btn:active, .back-to-top-btn:active {
  background: rgba(212, 175, 55, 0.3);
}

/* Epic Extras Panel */
.epic-extras-panel {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(140, 109, 31, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 24px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.epic-extras-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #F6E27A, #D4AF37);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.epic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.epic-header h2 {
  color: #F6E27A;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.epic-status {
  background: linear-gradient(135deg, #D4AF37, #F6E27A);
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.epic-benefits p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-weight: 500;
}

.epic-cta {
  text-align: center;
}

/* Resource Links */
.resource-link {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.resource-link:hover {
  color: #F6E27A;
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .access-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .legal-header .container {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  
  .header-left, .header-center, .header-right {
    justify-self: center;
  }
  
  .header-right {
    gap: 16px;
  }
  
  .ticket {
    margin: 20px 0;
  }
  
  .ticket-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .path-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .copy-steps-btn, .back-to-top-btn {
    width: 100%;
  }
  
  .epic-extras-panel {
    padding: 20px;
    margin: 24px 0;
  }
  
  .epic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .access-content {
    padding: 20px 0;
  }
  
  .access-content h1 {
    font-size: 24px;
  }
  
  .status-chip {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .private-note {
    font-size: 13px;
    margin-bottom: 30px;
  }
  
  .ticket-benefits p {
    font-size: 14px;
  }
  
  .show-path-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* HustleMap Quiz App - Main Stylesheet */
/* Version: 30 - Simplified Access Header + Warning Chip */

/* Access Header Styling */
.access-header {
  background: #0F1B2A;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-header .container {
  text-align: center;
}

.access-header .logo {
  color: #E9C46A;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Warning Chip */
.warning-chip {
  background: transparent;
  color: #E9C46A;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  border: 1px solid #E9C46A;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: inline-block;
  width: auto;
}

/* Title Accent */
.title-accent {
  color: #E9C46A;
  font-weight: 700;
}

/* Mobile Responsiveness for Access Header */
@media (max-width: 768px) {
  .access-header {
    padding: 16px 0;
  }
  
  .access-header .logo {
    font-size: 24px;
  }
}

/* Access Page Ticket Text Colors - High Specificity */
.access-content .ticket.ticket-silver .ticket-title,
.access-content .ticket.ticket-silver .ticket-price,
.access-content .ticket.ticket-silver .ticket-benefits,
.access-content .ticket.ticket-silver .ticket-status,
.access-content .ticket.ticket-silver .path-section h3,
.access-content .ticket.ticket-silver .path-section p,
.access-content .ticket.ticket-silver .path-section li,
.access-content .ticket.ticket-silver .path-section li::marker {
  color: #0B0B0B !important;
  text-shadow: none !important;
}

.access-content .ticket.ticket-gold .ticket-title,
.access-content .ticket.ticket-gold .ticket-price,
.access-content .ticket.ticket-gold .ticket-benefits,
.access-content .ticket.ticket-gold .ticket-status,
.access-content .ticket.ticket-gold .path-section h3,
.access-content .ticket.ticket-gold .path-section p,
.access-content .ticket.ticket-gold .path-section li,
.access-content .ticket.ticket-gold .path-section li::marker {
  color: #0B0B0B !important;
  text-shadow: none !important;
}

/* Keep Diamond ticket colors unchanged (dark text on dark background) */
.access-content .ticket.ticket-diamond .ticket-title,
.access-content .ticket.ticket-diamond .ticket-price,
.access-content .ticket.ticket-diamond .ticket-benefits,
.access-content .ticket.ticket-diamond .ticket-status,
.access-content .ticket.ticket-diamond .path-section h3,
.access-content .ticket.ticket-diamond .path-section p,
.access-content .ticket.ticket-diamond .path-section li,
.access-content .ticket.ticket-diamond .path-section li::marker {
  /* Colors remain as defined in existing ticket styles */
}