/* ─── Google Fonts Import ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-glow: rgba(255, 255, 255, 0.06);
  --accent: #facc15;
  --accent-hover: #fde68a;
  --accent-glow: rgba(250, 204, 21, 0.3);
  --accent-dim: rgba(250, 204, 21, 0.15);
  --success: #34d399;
  --error: #f87171;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #000;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Stars Canvas ───────────────────────────────────────────── */
#stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── Main Container ─────────────────────────────────────────── */
.main-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ─── Logo ────────────────────────────────────────────────────── */
.logo-container {
  text-align: center;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease-out;
}

.logo-container img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(250, 204, 21, 0.25));
  transition: filter 0.4s ease;
}

.logo-container img:hover {
  filter: drop-shadow(0 0 50px rgba(250, 204, 21, 0.45));
}

/* ─── Title Section ──────────────────────────────────────────── */
.title-section {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.title-main {
  font-family: var(--font-elegant);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.title-main .highlight {
  display: block;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #f59e0b, #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 0.03em;
}

.title-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 24px auto;
}

/* ─── Welcome Text ───────────────────────────────────────────── */
.welcome-text {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out 0.5s backwards;
}

.welcome-text p {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Session Note ───────────────────────────────────────────── */
.session-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}
.countdown-section {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out 0.5s backwards;
}

.countdown-label {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.countdown-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 80px;
  text-align: center;
}

.countdown-number {
  font-family: var(--font-elegant);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.countdown-unit {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* ─── Conference Info ────────────────────────────────────────── */
.conference-info {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.conference-date {
  font-family: var(--font-elegant);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.sessions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.session-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px var(--glass-glow);
}

.session-card:hover {
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 8px 40px rgba(250, 204, 21, 0.12);
  transform: translateY(-2px);
}

.session-label {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.session-time {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.session-timezone {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Glass Card ─────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 4px 30px var(--glass-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: fadeInUp 1s ease-out backwards;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card.delay-1 { animation-delay: 0.9s; }
.glass-card.delay-2 { animation-delay: 1.2s; }
.glass-card.delay-3 { animation-delay: 1.5s; }

/* ─── Section Headers ────────────────────────────────────────── */
.section-title {
  font-family: var(--font-elegant);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.section-subtitle em {
  color: var(--text-secondary);
}

.section-subtitle strong {
  color: var(--text-secondary);
}

/* ─── Form Styles ────────────────────────────────────────────── */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: #1a1a2e;
  color: #fff;
}

/* Radio & checkbox group */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.radio-option,
.checkbox-option {
  position: relative;
}

.radio-option input,
.checkbox-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-option label,
.checkbox-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  user-select: none;
}

.radio-option input:checked + label,
.checkbox-option input:checked + label {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.08);
}

.radio-option label:hover,
.checkbox-option label:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* Custom radio dot */
.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.radio-option input:checked + label .radio-dot {
  border-color: var(--accent);
}

.radio-option input:checked + label .radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Custom checkbox */
.check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.check-box::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.checkbox-option input:checked + label .check-box {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.checkbox-option input:checked + label .check-box::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ─── Submit Button ──────────────────────────────────────────── */
.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 30px;
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #000;
  background: linear-gradient(135deg, #eab308, #facc15);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
  text-transform: uppercase;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 179, 8, 0.5);
  background: linear-gradient(135deg, #ca8a04, #fde68a);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ─── Divider Section ────────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
  animation: fadeInUp 1s ease-out 1.1s backwards;
}

.section-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-divider .star {
  color: var(--accent);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ─── Support Section ────────────────────────────────────────── */
.support-section {
  text-align: center;
}

.support-text {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.support-link {
  display: block;
  padding: 20px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px var(--glass-glow);
}

.support-link:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: translateY(-3px);
}

.support-link-name {
  font-family: var(--font-elegant);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.support-link-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Toast Notification ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 18px 28px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 400px;
}

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

.toast.success {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.toast.error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.toast.warning {
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.3);
}

/* ─── Anonymous badge ────────────────────────────────────────── */
.anonymous-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ─── Privacy notice ─────────────────────────────────────────── */
.privacy-notice {
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Survey required notice ─────────────────────────────────── */
.survey-required-notice {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  font-family: var(--font-elegant);
  font-style: italic;
}

.survey-check {
  display: inline-block;
  color: var(--success);
  margin-right: 6px;
}

/* ─── Form Inner Divider ─────────────────────────────────────── */
.form-inner-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 20px;
}

.form-inner-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.divider-text {
  font-family: var(--font-elegant);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── Support Divider Text ───────────────────────────────────── */
.support-divider-text {
  font-family: var(--font-elegant);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 16px 0;
  text-align: center;
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .main-container {
    padding: 24px 16px 60px;
  }

  .glass-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .sessions-container {
    flex-direction: column;
    align-items: center;
  }

  .session-card {
    max-width: 100%;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
  }

  .support-links {
    flex-direction: column;
    align-items: center;
  }

  .support-link {
    width: 100%;
    max-width: 300px;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .countdown-grid {
    gap: 10px;
  }

  .countdown-item {
    padding: 12px 16px;
    min-width: 65px;
  }

  .countdown-number {
    font-size: 1.6rem;
  }
}

/* ─── Dashboard Styles ───────────────────────────────────────── */
.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  font-family: var(--font-elegant);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
}

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

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(20px);
  text-align: center;
  min-width: 160px;
}

.stat-number {
  font-family: var(--font-elegant);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid var(--glass-border);
}

.tab-btn {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-elegant);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.tab-btn:hover:not(.active) {
  color: var(--text-secondary);
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 16px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table th {
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.data-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.data-table tr:hover td {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.filter-btn:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
}

.password-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.password-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(24px);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.password-box h2 {
  font-family: var(--font-elegant);
  font-style: italic;
  margin-bottom: 20px;
}

.password-box .form-input {
  margin-bottom: 16px;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-session1 {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.badge-session2 {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.badge-yes {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.badge-no {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}

/* ─── Insights / Charts Section ──────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.insight-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
}

.insight-card h3 {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: center;
}

.chart-bar-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-bar-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-width: 100px;
  text-align: right;
  flex-shrink: 0;
}

.chart-bar-track {
  flex: 1;
  height: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 2px;
}

.chart-bar-value {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-width: 40px;
  flex-shrink: 0;
}

.donut-chart {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
}

.donut-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.donut-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
