/* ============================================
   AREA P-51 LASER TAG - TACTICAL CSS
   Industrial/Military aesthetic with orange fire
   ============================================ */

/* ── LASER TAG PAGE BODY ── */
.lazer-page {
  --lt-orange:  #FF6B00;
  --lt-amber:   #FFB340;
  --lt-dark:    #0D0500;
  --lt-metal:   #2A2520;
  --lt-danger:  #CC2222;
}

/* ── HERO ── */
.lt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}

.lt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(120,50,0,0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(80,20,0,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(60,10,0,0.3) 0%, transparent 50%),
    var(--space-navy);
  z-index: 0;
}

/* scanline effect */
.lt-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

/* tactical grid overlay */
.lt-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.lt-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

/* Outer: holds the glow/animation so it renders outside the circle clip */
.lt-logo-glow {
  width: min(220px, 40vw);
  height: min(220px, 40vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 50px rgba(255,107,0,0.6)) drop-shadow(0 0 100px rgba(255,107,0,0.25));
  animation: lt-pulse 3s ease-in-out infinite, fade-in 1s ease both;
}

/* Middle: clips to circle, hiding the black PNG background corners */
.lt-logo-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

/* Inner: fills the clip area */
.lt-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes lt-pulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(255,107,0,0.5)) drop-shadow(0 0 60px rgba(255,107,0,0.2)); }
  50% { filter: drop-shadow(0 0 70px rgba(255,107,0,0.9)) drop-shadow(0 0 120px rgba(255,107,0,0.4)); }
}

.lt-classified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--lt-orange);
  border-radius: 4px;
  padding: 0.35rem 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lt-orange);
  margin-bottom: 1.5rem;
  animation: slide-up 0.8s ease both;
  position: relative;
}

.lt-classified-stamp::before,
.lt-classified-stamp::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lt-orange);
  box-shadow: 0 0 10px var(--lt-orange);
}

.lt-classified-stamp::before { left: -12px; }
.lt-classified-stamp::after  { right: -12px; }

.lt-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  animation: slide-up 0.8s 0.15s ease both;
  color: var(--star-white);
}

.lt-glow-text {
  color: var(--lt-orange);
  text-shadow: 0 0 30px rgba(255,107,0,0.7), 0 0 60px rgba(255,107,0,0.35);
  animation: lt-text-pulse 2.5s ease-in-out infinite;
}

@keyframes lt-text-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255,107,0,0.6), 0 0 40px rgba(255,107,0,0.3); }
  50% { text-shadow: 0 0 50px rgba(255,107,0,1), 0 0 100px rgba(255,107,0,0.5); }
}

.lt-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(238,244,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: slide-up 0.8s 0.3s ease both;
}

.lt-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slide-up 0.8s 0.45s ease both;
  margin-bottom: 3rem;
}

/* Laser Tag primary button - orange/fire */
.lt-btn-primary {
  background: linear-gradient(135deg, #CC3300, var(--lt-orange), var(--lt-amber));
  color: white;
  box-shadow: 0 6px 30px rgba(255,107,0,0.5);
}

.lt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(255,107,0,0.7);
}

/* ── STATS ROW ── */
.lt-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-sm);
  max-width: 500px;
  margin: 0 auto;
  animation: slide-up 0.8s 0.6s ease both;
}

.lt-stat { text-align: center; }

.lt-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--lt-orange);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,107,0,0.5);
}

.lt-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238,244,255,0.5);
  margin-top: 0.25rem;
}

.lt-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,107,0,0.25);
}

/* ── SECTION OVERRIDES FOR LT THEME ── */
.lt-section {
  position: relative;
}

.lt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* ── STEPS ── */
.lt-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lt-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: rgba(255,107,0,0.06);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.lt-step:hover {
  background: rgba(255,107,0,0.12);
  border-color: rgba(255,107,0,0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.2);
}

.lt-step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--lt-orange);
  margin-bottom: 0.75rem;
}

.lt-step-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.lt-step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--lt-orange);
}

.lt-step-text {
  font-size: 0.88rem;
  color: rgba(238,244,255,0.65);
  line-height: 1.7;
}

.lt-step-arrow {
  font-size: 1.5rem;
  color: rgba(255,107,0,0.4);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 700px) {
  .lt-step-arrow { display: block; }
}

/* ── FEATURES GRID ── */
.lt-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lt-feature-card {
  background: rgba(255,107,0,0.05);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.lt-feature-card:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.15);
}

.lt-feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.lt-feature-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--lt-amber);
  margin-bottom: 0.5rem;
}

.lt-feature-card p {
  font-size: 0.9rem;
  color: rgba(238,244,255,0.65);
  line-height: 1.7;
}

/* ── PRICING ── */
.lt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.lt-price-card {
  background: rgba(255,107,0,0.05);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}

.lt-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,107,0,0.2);
}

.lt-price-card.featured-lt {
  border-color: var(--lt-orange);
  background: rgba(255,107,0,0.1);
  box-shadow: 0 0 50px rgba(255,107,0,0.15);
}

.lt-price-badge {
  display: inline-block;
  background: rgba(255,107,0,0.2);
  border: 1px solid var(--lt-orange);
  color: var(--lt-amber);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  align-self: flex-start;
}

.lt-price-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--star-white);
}

.lt-price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lt-orange);
  text-shadow: 0 0 20px rgba(255,107,0,0.4);
}

/* ── CTA override for LT ── */
.lt-cta::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(120,40,0,0.4) 0%, transparent 70%) !important;
}
