/* --- BLAIR PHILLIPS: VIP CSS OVERRIDES --- */

:root {
  --blair-indigo: #818cf8;
  --blair-glow: rgba(99, 102, 241, 0.45);
}

/* Force Default Cursor for Interactivity */
html, body, * {
    cursor: auto !important;
}

a, button, .media-tile, .btn-tactical, .btn-coming-soon {
    cursor: pointer !important;
}

.glass-module {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-module:hover {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8), 0 0 20px rgba(99, 102, 241, 0.1);
}

/* Telemetry HUD Cards */
.telemetry-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.telemetry-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* The War Log Components */
.shadow-glow {
  box-shadow: 0 0 25px var(--blair-glow);
}

.media-label-mini {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  z-index: 5;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Inactive Gear Button - User Requirement: Ghost look, 70% opacity */
.btn-coming-soon {
    transition: all 0.4s ease;
    background: transparent;
    opacity: 0.7;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8) !important;
}

.btn-coming-soon:hover {
    opacity: 0.9;
    border-color: var(--blair-indigo);
    color: var(--blair-indigo) !important;
    background: rgba(99, 102, 241, 0.05);
}

/* Waitlist Form Ghost Input Styling */
input[type="email"].bg-transparent {
    transition: all 0.3s ease;
}
input[type="email"].bg-transparent:focus {
    border-color: var(--blair-indigo);
    box-shadow: 0 0 15px var(--blair-glow);
    background: rgba(255, 255, 255, 0.02);
}

/* Boxing Banner Glow */
.animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  h1.combat-heading { font-size: 4rem !important; }
}

@media (max-width: 768px) {
  .fighter-hero { padding-top: 100px; padding-bottom: 60px; }
  .telemetry-card { border-radius: 1.5rem !important; }
}