/* ============================================
   FEEDBACK PAGE — "Neon Briefing Room" Theme
   Overrides for premium-styles.css base
   ============================================ */

/* Override premium-styles.css flex centering — feedback is a stacked page */
body {
  display: block;
  background: #0a0a0a;
}

/* ── Nav override — match other pages ──────── */
.main-nav .nav-link {
  font-size: 1rem;
  font-family: 'Saira Extra Condensed', sans-serif;
  letter-spacing: 0.08em;
}

/* ── Header ────────────────────────────────── */
.feedback-header {
  margin-top: 80px;
  padding: 60px 20px 50px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
}

/* Scanline texture overlay */
.feedback-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
}

.feedback-logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.6));
  animation: logoGlow 3s ease-in-out infinite alternate;
  position: relative;
}

.feedback-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(90deg, #ff3366, #00f0c0, #ff3366);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerTitle 4s linear infinite;
  position: relative;
}

@keyframes shimmerTitle {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.feedback-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.02em;
  text-transform: none;
  position: relative;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Developer Note ────────────────────────── */
.developer-note {
  background: rgba(0, 240, 192, 0.06);
  border-left: 4px solid #00f0c0;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 36px;
  animation: fadeIn 0.6s ease 0.2s both;
}

.developer-note p {
  font-family: 'Inter', sans-serif;
  color: #d0d0d0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Main Content Container ────────────────── */
.feedback-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
  animation: fadeIn 0.6s ease 0.3s both;
}

/* ── Tally Embed Card ──────────────────────── */
.feedback-form-section {
  background: linear-gradient(180deg, #141416 0%, #111 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 51, 102, 0.15);
  box-shadow:
    0 0 40px rgba(255, 51, 102, 0.08),
    inset 0 1px 3px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.6s ease 0.4s both;
}

.feedback-form-section iframe {
  border-radius: 8px;
}

/* ── Footer ────────────────────────────────── */
.feedback-footer {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feedback-footer a {
  color: #ff3366;
  text-decoration: none;
  transition: color 0.3s;
}

.feedback-footer a:hover {
  color: #ff6699;
}

/* ── Return to Top Button ──────────────────── */
.return-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3366, #d21f3c);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.return-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.return-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 51, 102, 0.6);
}

/* ── Confetti + Frenzy Badge (Easter Egg) ──── */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  z-index: 10000;
  animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
  0%   { top: -10px; transform: rotate(0deg); opacity: 1; }
  100% { top: 100vh; transform: rotate(720deg); opacity: 0; }
}

.frenzy-badge {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(45deg, #ff3366, #00f0c0, #ff3366);
  background-size: 200% 100%;
  color: white;
  padding: 20px 40px;
  border-radius: 20px;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  z-index: 10001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: frenzyPulse 1s ease-in-out infinite;
}

@keyframes frenzyPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.08); }
}

/* ── Mobile Responsive ─────────────────────── */
@media (max-width: 768px) {
  .feedback-header {
    margin-top: 32px;
    padding: 36px 15px 30px;
  }

  .feedback-logo {
    width: 150px;
  }

  .feedback-form-section {
    padding: 16px;
  }

  .feedback-container {
    padding: 0 15px 30px;
  }

  .return-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .feedback-title {
    letter-spacing: 0.02em;
  }

  .feedback-form-section {
    padding: 12px;
    border-radius: 12px;
  }
}
