/* ═══════════════════════════════════════════════════════════════
   Age Gate
═══════════════════════════════════════════════════════════════ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(8, 12, 16, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate-box {
  text-align: center;
  max-width: 360px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(57, 255, 20, 0.12);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.9);
}

.age-gate-logo {
  font-family: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #e8f4f8;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.age-gate-logo span {
  color: #39ff14;
}

.age-gate-title {
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e8f4f8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.age-gate-text {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(232, 244, 248, 0.55);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.age-gate-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: #39ff14;
  color: #0c1118;
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.age-gate-btn:hover {
  background: #45ff2a;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.age-gate-exit {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(232, 244, 248, 0.35);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.age-gate-exit:hover {
  color: rgba(232, 244, 248, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   New-U Peptides — Cinematic Intro Overlay
═══════════════════════════════════════════════════════════════ */

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080c10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, opacity;
}

.intro-overlay canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-skip {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.intro-skip:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   Loader Screen — shown after intro fades, before page reveals
═══════════════════════════════════════════════════════════════ */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #080c10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-out;
}

.loader-screen.active {
  opacity: 1;
  pointer-events: auto;
}

.loader-screen.fade-out {
  opacity: 0 !important;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #e8f4f8;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo span {
  color: #39ff14;
}

.loader-countdown {
  font-family: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #39ff14;
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.5), 0 0 40px rgba(57, 255, 20, 0.2);
  animation: countdownPulse 1s ease-in-out infinite;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.1); opacity: 1; }
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(57, 255, 20, 0.15);
  border-top-color: #39ff14;
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.7; text-shadow: 0 0 8px rgba(57, 255, 20, 0.2); }
  50% { opacity: 1; text-shadow: 0 0 20px rgba(57, 255, 20, 0.4); }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
