/* ══════════════════════════════════════════════════════════════
   TAINÁ AVIATOR — Senior Designer Editorial Red Edition
   Pure White Monolith • Harmonious Typographic Balance • 100svh
   ══════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #050102;
  --bg-crimson: #120306;
  
  --red-neon: #ff0038;
  --red-vibrant: #ef4444;
  --red-core: #dc2626;
  --red-dark: #991b1b;
  
  --text-white: #ffffff;
  --text-dim: #cbd5e1;
  --text-muted: #94a3b8;
  
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Background Aviator Physics Canvas ─── */
#aviator-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ─── Ambient Glow & Vignette ─── */
.ambient-glow {
  position: fixed;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, rgba(153, 27, 27, 0.08) 50%, transparent 75%);
  filter: blur(75px);
  z-index: 2;
  pointer-events: none;
}

.cinematic-vignette {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 35%, rgba(5, 1, 2, 0.5) 70%, rgba(5, 1, 2, 0.95) 100%);
}

/* ─── Single-Screen Container (100svh Viewport Lock) ─── */
.screen-container {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  height: 100svh;
  height: 100dvh;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 14px 6px;
  overflow: hidden;
}

/* ─── Model Staging with Organic Feathering ─── */
.model-stage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.model-halo {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.22) 0%, rgba(185, 28, 28, 0.08) 50%, transparent 75%);
  filter: blur(50px);
}

.model-pic {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  max-width: 380px;
  display: flex;
  justify-content: center;
}

.model-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(220, 38, 38, 0.2));
}

.model-gradient-shield {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 15%,
    rgba(5, 1, 2, 0.2) 28%,
    rgba(5, 1, 2, 0.75) 42%,
    rgba(5, 1, 2, 0.96) 58%,
    rgba(5, 1, 2, 1) 80%
  );
}

/* ─── Content Wrapper (Strict Symmetrical Centering) ─── */
.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* ─── Top Brand Section ─── */
.brand-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  margin-top: 22svh;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2.5px 12px;
  border-radius: 999px;
  background: rgba(18, 3, 6, 0.94);
  border: 1px solid rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 16px rgba(255, 0, 56, 0.35);
  backdrop-filter: blur(12px);
}

.live-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff0038;
  box-shadow: 0 0 8px #ff0038;
  animation: redBeacon 1.8s infinite ease-in-out;
}

@keyframes redBeacon {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.35); box-shadow: 0 0 12px #ff0038; }
}

.live-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff4d6d;
}

/* ─── Clean, All-White Senior Brand Title ─── */
.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 3px 0 2px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 1.8px;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 0 25px rgba(255, 255, 255, 0.3);
}

.streamer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 2.5px 11px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.25), rgba(153, 27, 27, 0.35), rgba(220, 38, 38, 0.25));
  border: 1px solid rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 14px rgba(220, 38, 38, 0.3);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-transform: uppercase;
}

.badge-star {
  color: #ff4d6d;
  font-size: 10px;
}

/* ─── Hook Section (Clean Centered Typography) ─── */
.hook-section {
  width: 100%;
  max-width: 340px;
  margin: 1px 0;
}

.hook-paragraph {
  font-size: clamp(12px, 3.2vw, 13.5px);
  font-weight: 600;
  line-height: 1.4;
  color: #cbd5e1;
  text-align: center;
}

.red-text {
  color: #ff4d6d;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 0, 56, 0.4);
}

.white-text {
  color: #ffffff;
  font-weight: 800;
}

/* ─── Primary 3D Red CTA Button ─── */
.cta-section {
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 1px 0;
}

.btn-aviator-red {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 13px;
  background: linear-gradient(135deg, #ff0038 0%, #dc2626 50%, #991b1b 100%);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 
    0 10px 25px rgba(220, 38, 38, 0.55),
    0 0 35px rgba(255, 0, 56, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(254, 202, 202, 0.45);
  transition: all 0.25s cubic-bezier(0.2, 0, 0.2, 1);
  animation: pulseButtonRed 2.8s ease-in-out infinite;
}

@keyframes pulseButtonRed {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5), 0 0 30px rgba(255, 0, 56, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 14px 34px rgba(220, 38, 38, 0.75), 0 0 50px rgba(255, 0, 56, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
  }
}

.btn-aviator-red:active {
  transform: scale(0.97);
}

.btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(14px, 3.8vw, 15.5px);
  font-weight: 900;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.btn-icon-arrow {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.btn-aviator-red:hover .btn-icon-arrow {
  transform: translateX(4px);
}

.cta-sub-text {
  font-size: 11px;
  color: #cbd5e1;
  text-align: center;
}

.text-highlight {
  color: #ff4d6d;
  font-weight: 800;
}

/* ─── Clean Centered Benefits List ─── */
.benefits-section {
  width: 100%;
  max-width: 320px;
  margin: 1px auto;
  display: flex;
  justify-content: center;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  text-align: center;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: clamp(11.5px, 3vw, 12.8px);
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0038, #dc2626);
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 0, 56, 0.5);
}

.benefit-text {
  line-height: 1.2;
}

.red-highlight {
  color: #ff4d6d;
  font-weight: 800;
}

/* ─── Legal Footer (+18 Image Enlarged) ─── */
.legal-footer {
  width: 100%;
  max-width: 300px;
  margin: 2px auto 2px;
  display: flex;
  justify-content: center;
}

.legal-img {
  width: 100%;
  max-height: 44px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

/* ─── Social Proof Floating Toast ─── */
.social-toast {
  position: fixed;
  bottom: 8px;
  left: 14px;
  right: 14px;
  max-width: 340px;
  margin: 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(18, 3, 6, 0.94);
  border: 1px solid rgba(239, 68, 68, 0.45);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(220, 38, 38, 0.35);
  transform: translateY(90px);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.2, 0, 0.2, 1);
  pointer-events: none;
}

.social-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0038, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 0, 56, 0.5);
}

.toast-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.toast-name {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.toast-desc {
  font-size: 9.5px;
  color: var(--text-dim);
}

.toast-time {
  font-size: 8.5px;
  color: #ff4d6d;
  font-weight: 600;
}

.toast-badge {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ─── Desktop Optimization ─── */
@media (min-width: 768px) {
  .screen-container {
    max-width: 420px;
    height: 94vh;
    margin: 3vh auto;
    border-radius: 28px;
    border: 1px solid rgba(239, 68, 68, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 60px rgba(220, 38, 38, 0.25);
    background-color: var(--bg-dark);
  }
}
