/* ═══════════════════════════════════════════
   DESIGN SYSTEM — VŨ THANH THẢO PORTFOLIO
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --bg-dark: #0d0a14;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-hover: rgba(192, 132, 252, 0.4);

  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --rose-400: #fb7185;

  --text-primary: #f1f0f4;
  --text-secondary: #b8b4c8;
  --text-muted: #7c7891;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #c084fc 0%, #f472b6 50%, #fb7185 100%);
  --grad-bg: radial-gradient(ellipse at 20% 30%, rgba(192, 132, 252, 0.12) 0%, transparent 60%),
             radial-gradient(ellipse at 80% 70%, rgba(244, 114, 182, 0.1) 0%, transparent 60%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vh, 8rem);
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.35s;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: var(--grad-bg);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── UTILITIES ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 1.25rem;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  box-shadow: 0 8px 40px rgba(192, 132, 252, 0.15);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.dot { color: var(--purple-400); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 99px;
  transition: width var(--dur) var(--ease);
}

.nav-links a:hover {
  color: var(--purple-400);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-400);
  margin-bottom: 1rem;
}

.hero-name {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.9;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.badge {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border-glass);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-400);
  background: rgba(192, 132, 252, 0.08);
  backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
}

.badge:hover {
  border-color: var(--purple-400);
  background: rgba(192, 132, 252, 0.18);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: var(--grad-primary);
  color: white;
  text-decoration: none;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.5);
  filter: brightness(1.1);
}

/* Hero Visual */
.hero-visual {
  flex: 0 0 auto;
  z-index: 2;
}

.avatar-ring {
  width: clamp(240px, 30vw, 340px);
  height: clamp(240px, 30vw, 340px);
  border-radius: 50%;
  padding: 6px;
  background: var(--grad-primary);
  animation: ring-spin 8s linear infinite;
  position: relative;
}

@keyframes ring-spin {
  0% { box-shadow: 0 0 0 0 rgba(192,132,252,0.3), 0 0 40px rgba(244,114,182,0.2); }
  50% { box-shadow: 0 0 30px 8px rgba(192,132,252,0.4), 0 0 80px rgba(244,114,182,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(192,132,252,0.3), 0 0 40px rgba(244,114,182,0.2); }
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a1025, #0d0a14);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 50%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: inherit;
}

.avatar-svg {
  width: 88%;
  height: 88%;
}

/* Animated orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #c084fc 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fb7185 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -8s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 1px;
  animation: fade-bounce 2.5s ease-in-out infinite;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-400), transparent);
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION BASE ── */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-400);
  background: rgba(192, 132, 252, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(192, 132, 252, 0.25);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
}

/* ── ABOUT SECTION ── */
.about-section {
  background: linear-gradient(180deg, transparent, rgba(192, 132, 252, 0.03), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-card {
  padding: 2.5rem;
}

.about-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.85;
}

.about-intro strong {
  color: var(--purple-400);
  font-weight: 600;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-item strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.fact-item span {
  font-size: 0.98rem;
  color: var(--text-secondary);
}

/* About visual side */
.about-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.about-avatar-bg {
  width: 280px;
  height: 320px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(145deg, rgba(192,132,252,0.15), rgba(244,114,182,0.15));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  25% { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
  50% { border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%; }
  75% { border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; }
}

.avatar-lg, .avatar-svg-lg {
  width: 90%;
  height: 90%;
}

.floating-card {
  position: absolute;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
}

.card-top {
  top: 0;
  right: -1rem;
  animation-delay: -1s;
}

.card-bottom {
  bottom: 1.5rem;
  left: -1rem;
  animation-delay: -2.5s;
}

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

/* ── GOALS SECTION ── */
.goals-section {
  background: linear-gradient(180deg, transparent, rgba(244, 114, 182, 0.03), transparent);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.goal-card {
  padding: 2rem;
  text-align: center;
  cursor: default;
}

.goal-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  animation: icon-pulse 3s ease-in-out infinite;
}

.goal-card:nth-child(2) .goal-icon { animation-delay: -0.75s; }
.goal-card:nth-child(3) .goal-icon { animation-delay: -1.5s; }
.goal-card:nth-child(4) .goal-icon { animation-delay: -2.25s; }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(3deg); }
}

.goal-card h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.goal-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── STRENGTHS & WEAKNESSES ── */
.sw-section {
  background: linear-gradient(180deg, transparent, rgba(251, 113, 133, 0.03), transparent);
}

.sw-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sw-btn {
  padding: 0.75rem 2rem;
  border-radius: 99px;
  border: 1px solid var(--border-glass);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.sw-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.sw-btn:hover:not(.active) {
  border-color: var(--border-glass-hover);
  color: var(--purple-400);
}

.sw-tab {
  display: none;
}

.sw-tab.active {
  display: block;
  animation: fade-in 0.4s var(--ease);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.sw-item {
  padding: 1.75rem;
  text-align: center;
}

.sw-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sw-item h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
}

.sw-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sw-item.weakness {
  border-color: rgba(251, 113, 133, 0.15);
}

.sw-item.weakness:hover {
  border-color: rgba(251, 113, 133, 0.4);
}

/* ── STYLE SECTION ── */
.style-section {
  background: linear-gradient(180deg, transparent, rgba(192, 132, 252, 0.04), transparent);
}

.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.style-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--border-glass);
  border-radius: 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: default;
  transition: all var(--dur) var(--ease);
}

.style-tag:hover {
  border-color: var(--border-glass-hover);
  background: rgba(192, 132, 252, 0.08);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(192, 132, 252, 0.15);
  color: var(--purple-400);
}

.tag-emoji {
  font-size: 1.5rem;
}

.style-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.style-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-left: 4px solid;
  border-image: var(--grad-primary) 1;
  border-radius: 1rem;
}

.style-quote blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--purple-400);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ── CONNECT SECTION ── */
.connect-section {
  background: linear-gradient(180deg, transparent, rgba(244, 114, 182, 0.04), transparent);
}

.connect-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.25rem 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.social-card#social-facebook::before { background: radial-gradient(ellipse at center, rgba(24,119,242,0.1), transparent); }
.social-card#social-instagram::before { background: radial-gradient(ellipse at center, rgba(225,48,108,0.1), transparent); }
.social-card#social-linkedin::before { background: radial-gradient(ellipse at center, rgba(10,102,194,0.1), transparent); }
.social-card#social-email::before { background: radial-gradient(ellipse at center, rgba(192,132,252,0.1), transparent); }

.social-card:hover::before { opacity: 1; }
.social-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(192, 132, 252, 0.2); }

.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.social-card:hover .social-icon {
  transform: scale(1.1) rotate(-5deg);
}

.social-icon svg {
  width: 30px;
  height: 30px;
}

.facebook-icon { background: linear-gradient(135deg, #1877f2, #0a5dc2); color: white; box-shadow: 0 4px 15px rgba(24,119,242,0.35); }
.instagram-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; box-shadow: 0 4px 15px rgba(220,39,67,0.35); }
.linkedin-icon { background: linear-gradient(135deg, #0077b5, #0a66c2); color: white; box-shadow: 0 4px 15px rgba(10,102,194,0.35); }
.email-icon { background: linear-gradient(135deg, #c084fc, #f472b6); color: white; box-shadow: 0 4px 15px rgba(192,132,252,0.35); }

.social-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.social-handle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.social-arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 1rem;
  color: var(--purple-400);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-glass);
  background: rgba(13, 10, 20, 0.6);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-sub {
  font-size: 0.82rem !important;
  color: var(--purple-400) !important;
  letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    order: -1;
    min-height: 300px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: rgba(13, 10, 20, 0.98);
    border-bottom: 1px solid var(--border-glass);
    gap: 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sw-toggle {
    flex-direction: column;
    align-items: center;
  }

  .style-quote blockquote {
    padding: 1.5rem;
  }
}

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

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sw-grid {
    grid-template-columns: 1fr;
  }

  .avatar-ring {
    width: 200px;
    height: 200px;
  }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--purple-500), var(--pink-500));
  border-radius: 99px;
}

/* ── SELECTION ── */
::selection {
  background: rgba(192, 132, 252, 0.3);
  color: var(--text-primary);
}
