/* =========================================================
   POLL - Website Feedback Survey Design System
   Modern, Premium Glassmorphic Aesthetic
   ========================================================= */

:root {
  --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette - Vibrant Indigo & Emerald Theme */
  --bg-dark: #0a0e1a;
  --bg-surface: rgba(18, 24, 43, 0.75);
  --bg-surface-hover: rgba(28, 38, 68, 0.85);
  --bg-card: rgba(21, 30, 56, 0.65);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-card-border-active: rgba(99, 102, 241, 0.6);

  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.35);

  --secondary: #06b6d4;
  --secondary-glow: rgba(6, 182, 212, 0.3);

  --accent-pink: #ec4899;
  --accent-purple: #a855f7;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px var(--primary-glow);

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(168, 85, 247, 0.08) 0px, transparent 60%);
  background-attachment: fixed;
}

/* Background Glowing Ambient Orbs */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.bg-glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45), transparent 70%);
  top: -100px;
  left: -100px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 70%);
  bottom: 5%;
  right: -150px;
  animation-delay: -6s;
}

.bg-glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
  top: 45%;
  left: 20%;
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Top Navigation & Progress Bar */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 14, 26, 0.82);
  border-bottom: 1px solid var(--bg-card-border);
}

.nav-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.brand-text {
  font-family: var(--font-en);
  background: linear-gradient(90deg, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress-wrap {
  flex: 1;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.progress-label {
  color: var(--text-muted);
}

.progress-percent {
  color: var(--primary-light);
  font-family: var(--font-en);
}

.progress-bar-bg {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
  box-shadow: 0 0 10px var(--primary-glow);
}

.admin-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.admin-link:hover {
  color: #fff;
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-light);
}

/* Main Container */
.main-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px 16px 80px;
  min-height: calc(100vh - 140px);
}

.survey-container {
  max-width: 760px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 35px;
  padding: 10px 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); }
  100% { box-shadow: 0 0 16px rgba(99, 102, 241, 0.5); }
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
  background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  word-break: keep-all;
}

/* Question Cards */
.question-card {
  background: var(--bg-surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.question-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.question-card.answered {
  border-color: rgba(99, 102, 241, 0.4);
}

.question-card.has-error {
  border-color: var(--accent-red) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3) !important;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.question-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.q-number {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px var(--primary-glow);
}

.q-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.q-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.q-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.q-tag.required {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.q-tag.multiple {
  background: rgba(6, 182, 212, 0.15);
  color: #67e8f9;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.q-tag.optional {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.q-sub-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.q-sub-desc i {
  color: var(--accent-amber);
}

/* Options Grid Layout */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}

.option-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.option-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.opt-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.opt-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.check-circle, .check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.check-circle {
  border-radius: 50%;
}

.check-box {
  border-radius: 6px;
}

.option-item:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.option-item.selected {
  background: rgba(99, 102, 241, 0.16);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.option-item.selected .opt-icon {
  background: var(--primary);
  color: #fff;
}

.option-item.selected .opt-text {
  color: #fff;
  font-weight: 600;
}

.option-item.selected .check-circle,
.option-item.selected .check-box {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Other Custom Input Wrap */
.other-input-wrap {
  margin-top: 14px;
  transition: all var(--transition-normal);
}

.other-input-wrap.hidden {
  display: none;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--primary-light);
  font-size: 0.95rem;
}

.input-with-icon input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: rgba(10, 14, 26, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: all var(--transition-fast);
}

.input-with-icon input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Q3. 5-Scale Cards */
.scale-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 650px) {
  .scale-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 440px) {
  .scale-cards {
    grid-template-columns: 1fr;
  }
}

.scale-card-item {
  position: relative;
  cursor: pointer;
}

.scale-card-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scale-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  height: 100%;
  transition: all var(--transition-fast);
  gap: 8px;
}

.scale-emoji {
  font-size: 1.8rem;
  transition: transform var(--transition-fast);
}

.scale-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  word-break: keep-all;
}

.scale-score-badge {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-en);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.scale-card-item:hover .scale-card-inner {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.scale-card-item:hover .scale-emoji {
  transform: scale(1.2);
}

.scale-card-item.selected .scale-card-inner {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.2));
  border-color: var(--primary);
  box-shadow: 0 6px 20px var(--primary-glow);
  transform: translateY(-4px);
}

.scale-card-item.selected .scale-score-badge {
  background: var(--primary);
  color: #fff;
}

/* Q4. Horizontal Options */
.horizontal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-option-item {
  position: relative;
  cursor: pointer;
}

.h-option-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.h-option-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.h-opt-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.h-opt-badge.score-5 { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.h-opt-badge.score-4 { background: rgba(6, 182, 212, 0.2); color: #67e8f9; }
.h-opt-badge.score-3 { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
.h-opt-badge.score-2 { background: rgba(249, 115, 22, 0.2); color: #fdba74; }
.h-opt-badge.score-1 { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }

.h-opt-text {
  font-size: 0.95rem;
  font-weight: 500;
}

.h-option-item:hover .h-option-inner {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.h-option-item.selected .h-option-inner {
  background: rgba(99, 102, 241, 0.18);
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
}

/* Q5. Textarea */
.textarea-wrap {
  position: relative;
}

.textarea-wrap textarea {
  width: 100%;
  padding: 16px;
  background: rgba(10, 14, 26, 0.7);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  line-height: 1.6;
  resize: vertical;
  min-height: 110px;
  outline: none;
  transition: all var(--transition-fast);
}

.textarea-wrap textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 20px var(--primary-glow);
  background: rgba(10, 14, 26, 0.95);
}

.char-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  pointer-events: none;
}

/* Q7. NPS Score Grid (0-10) */
.nps-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nps-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nps-lbl-left { color: #fca5a5; }
.nps-lbl-mid { color: #fcd34d; }
.nps-lbl-right { color: #34d399; }

.nps-buttons-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 6px;
}

@media (max-width: 600px) {
  .nps-buttons-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.nps-btn-item {
  position: relative;
  cursor: pointer;
}

.nps-btn-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nps-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.nps-btn-item:hover .nps-btn-box {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.nps-btn-item.selected .nps-btn-box {
  transform: translateY(-4px) scale(1.08);
  font-weight: 800;
  color: #fff;
}

/* NPS Selected Color Variants */
.nps-btn-item.selected .nps-val-0,
.nps-btn-item.selected .nps-val-1,
.nps-btn-item.selected .nps-val-2,
.nps-btn-item.selected .nps-val-3 {
  background: var(--accent-red);
  border-color: #f87171;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4);
}

.nps-btn-item.selected .nps-val-4,
.nps-btn-item.selected .nps-val-5,
.nps-btn-item.selected .nps-val-6 {
  background: var(--accent-amber);
  border-color: #fbbf24;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.nps-btn-item.selected .nps-val-7,
.nps-btn-item.selected .nps-val-8 {
  background: var(--secondary);
  border-color: #22d3ee;
  box-shadow: 0 6px 18px var(--secondary-glow);
}

.nps-btn-item.selected .nps-val-9,
.nps-btn-item.selected .nps-val-10 {
  background: linear-gradient(135deg, var(--accent-green), #059669);
  border-color: #34d399;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.nps-selected-status {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.nps-selected-status strong {
  color: #fff;
  font-family: var(--font-en);
}

/* Validation Message */
.validation-msg {
  font-size: 0.82rem;
  color: #f87171;
  margin-top: 10px;
  display: none;
  align-items: center;
  gap: 6px;
}

.validation-msg.show {
  display: flex;
}

/* Submit Action Bar */
.submit-action-bar {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 20px;
}

.btn-submit {
  width: 100%;
  max-width: 420px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 50%, var(--secondary) 100%);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transition: all var(--transition-smooth);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
  background-position: 100% 100%;
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

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

.submit-notice {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Inactive Card */
.inactive-card {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-card-border);
}

.inactive-icon {
  font-size: 3rem;
  color: var(--accent-amber);
  margin-bottom: 20px;
}

.inactive-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.inactive-card p {
  color: var(--text-muted);
}

/* Thank You Modal */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease-out;
}

.thankyou-overlay.hidden {
  display: none;
}

.thankyou-card {
  background: linear-gradient(160deg, rgba(28, 38, 68, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(99, 102, 241, 0.5);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px var(--primary-glow);
  animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.celebrate-icon {
  font-size: 4rem;
  color: var(--accent-pink);
  margin-bottom: 20px;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.thankyou-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.thankyou-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.thankyou-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.t-stat-pill {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-full);
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary, .btn-outline {
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--bg-card-border);
}

.btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer-wrap {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--bg-card-border);
  padding: 24px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.hidden {
  display: none !important;
}
