/* =====================================================
   LIVE INDICATOR
   ===================================================== */
#live-indicator {
  animation: liveSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes liveSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

#live-indicator-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 16px;
  background: #e3000f;
  color: #fff;
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 6px 32px rgba(227, 0, 15, 0.45), 0 0 0 0 rgba(227, 0, 15, 0.4);
  animation: livePulse 1.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#live-indicator-link:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 36px rgba(227, 0, 15, 0.55);
}

.live-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: dotPing 1.4s ease-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(227,0,15,.45), 0 0 0 0 rgba(227,0,15,.4); }
  50%      { box-shadow: 0 6px 32px rgba(227,0,15,.45), 0 0 0 12px rgba(227,0,15,0); }
}

@keyframes dotPing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* =====================================================
   BEFORE/AFTER SLIDER
   ===================================================== */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16/10;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-overlay {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-slider img:first-child {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle::after {
  content: '◂ ▸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 14px;
  color: #0a0a0f;
  font-weight: 700;
  letter-spacing: 4px;
  z-index: 4;
  white-space: nowrap;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 5;
  pointer-events: none;
}

.ba-label-before { left: 16px; }
.ba-label-after  { right: 16px; }

/* =====================================================
   KONAMI CODE MODAL
   ===================================================== */
#konami-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#konami-modal.konami-visible {
  opacity: 1;
}

.konami-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.konami-content {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 820px;
  text-align: center;
}

.konami-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
}

.konami-close:hover {
  background: rgba(255,255,255,0.25);
}

.konami-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.konami-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.konami-msg {
  margin-top: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
}

/* =====================================================
   ODOMETER STATS
   ===================================================== */
.stats-odometer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.odometer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.odometer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(102,126,234,0.15);
}

.odometer-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.odometer-icon.yt  { background: #FF0000; }
.odometer-icon.ig  { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.odometer-icon.tw  { background: #9146FF; }
.odometer-icon.vid { background: linear-gradient(135deg,#667eea,#764ba2); }

.odometer-value {
  font-family: 'Space Grotesk', 'Inter', monospace;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 6ch;
  text-align: center;
}

.odometer-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.02);
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
  border: 1px solid rgba(102,126,234,0.15);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.newsletter-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(102,126,234,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-content h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.75rem 0;
  line-height: 1.2;
}

.newsletter-content p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-size: 0.95rem;
}

.newsletter-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
}

.proof-avatars {
  display: flex;
  gap: -4px;
}

.proof-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: -4px;
  border: 2px solid rgba(10,10,15,0.8);
}

.proof-dot:nth-child(1) { background: #667eea; margin-left: 0; }
.proof-dot:nth-child(2) { background: #764ba2; }
.proof-dot:nth-child(3) { background: #f093fb; }

.proof-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.newsletter-form-wrapper {
  position: relative;
  z-index: 1;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: rgba(102,126,234,0.5);
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.newsletter-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-alert {
  margin-top: 10px;
  font-size: 0.85rem;
  min-height: 1.2em;
  transition: color 0.2s ease;
}

.newsletter-alert.success { color: #10B981; }
.newsletter-alert.error   { color: #EF4444; }

.newsletter-privacy {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .newsletter-content h2 {
    font-size: 1.4rem;
  }
}
