/* ===================================================================
   ANTALYA EVSUN NAKLİYAT - %100 GERÇEKÇİ SİNEMATİK SAHA İNTROSU
   (Gerçek Video Viewport, Canlı Saha Telemetrisi ve HUD İlerleme Konsolu)
   =================================================================== */

.real-intro-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: #060913;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 34px 24px;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s ease, visibility 0.75s ease;
  will-change: opacity, transform, visibility;
}

.real-intro-preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}

/* Background Real-Action Video/Photo Viewport */
.real-intro-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.intro-real-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.15);
  transform: scale(1.05);
  animation: slowPanZoom 20s ease-in-out infinite alternate;
}

@keyframes slowPanZoom {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.12) translateY(-10px); }
}

.real-intro-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 9, 19, 0.45) 0%, rgba(6, 9, 19, 0.92) 85%);
  pointer-events: none;
}

.real-intro-grid-fx {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
              linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Top Bar: Logo & Skip Button */
.real-intro-topbar {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.real-intro-logo {
  height: 80px;
  max-height: 85px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.9));
}

.real-skip-btn {
  background: rgba(15, 23, 42, 0.82);
  border: 1.5px solid var(--primary-gold, #f59e0b);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(245, 158, 11, 0.25);
}

.real-skip-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #0b1329;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.55);
}

/* Center Cinematic HUD */
.real-intro-hud {
  position: relative;
  z-index: 20;
  text-align: center;
  max-width: 840px;
  padding: 38px 32px;
  background: rgba(11, 17, 33, 0.75);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(245, 158, 11, 0.15);
}

.hud-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hud-pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: hudPulse 1.2s infinite;
}

@keyframes hudPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.hud-tag-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fca5a5;
  letter-spacing: 1px;
}

.hud-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hud-title span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hud-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 22px;
}

.hud-stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hud-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hud-stat-pill i {
  color: #f59e0b;
}

/* Bottom Console */
.real-intro-bottom {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 840px;
}

.real-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.real-status-text {
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 8px;
}

.real-percentage-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
}

.real-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.real-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #10b981);
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
  transition: width 0.08s linear;
}

.real-intro-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: #94a3b8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.real-intro-footer-meta strong {
  color: #f8fafc;
}

@media (max-width: 768px) {
  .real-intro-preloader {
    padding: 24px 16px;
  }
  .real-intro-logo {
    height: 38px;
  }
  .real-intro-hud {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .hud-title {
    font-size: 1.7rem;
  }
  .hud-subtitle {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }
  .hud-stats-row {
    flex-direction: column;
    gap: 8px;
  }
  .hud-stat-pill {
    justify-content: center;
    width: 100%;
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .real-intro-footer-meta {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .real-skip-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
  }
}
