/* Enhanced Contact Page Styles */
.page-contact {
  /* Remove background to allow main theme background to show through */
  min-height: 100vh;
}

/* Hero Section */
.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.25rem;
  position: relative;
  overflow: hidden;
}

/* Intro flourish */
.hero-panel::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -40%;
  width: 100%;
  height: 180%;
  background: radial-gradient(50% 60% at 0% 100%, rgba(23,245,151,0.14), transparent 70%),
              radial-gradient(50% 60% at 100% 100%, rgba(0,212,255,0.12), transparent 70%);
  filter: blur(26px);
  pointer-events: none;
}

.headline {
  margin: 0 0 0.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.7s ease both;
}

.page-hero .subtitle {
  animation: slideInUp 0.7s ease 0.15s both;
}

.hero-intro { padding: 1rem 0.25rem; }

.hero-icons {
  position: relative;
  min-height: 120px;
}
.hi {
  position: absolute;
  font-size: 1.75rem;
  opacity: 0.75;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  animation: float 8s ease-in-out infinite;
}
.hi-1 { left: 10%; top: 20%; animation-delay: 0s; }
.hi-2 { right: 18%; top: 35%; animation-delay: 2s; }
.hi-3 { left: 45%; bottom: 10%; animation-delay: 4s; }

@media (min-width: 768px) {
  .page-hero {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  display: block;
  color: var(--text);
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.title-line.accent {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.2s;
}

.subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  margin: 0 0 2rem;
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.4s forwards;
  max-width: 500px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.6s forwards;
}

.badge {
  background: linear-gradient(135deg, rgba(23, 245, 151, 0.1), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(23, 245, 151, 0.3);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 245, 151, 0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.floating-elements {
  position: relative;
  width: 200px;
  height: 200px;
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

/* Contact Methods */
.contact-methods {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-methods::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

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

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(23, 245, 151, 0.1), transparent);
  transition: left 0.5s ease;
}

.method-card:hover::before {
  left: 100%;
}

.method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 245, 151, 0.4);
  box-shadow: 0 10px 30px rgba(23, 245, 151, 0.15);
  background: rgba(23, 245, 151, 0.05);
}

/* Stagger animation for method cards */
.methods-grid .method-card,
.methods-grid .copy-discord {
  opacity: 0;
  transform: translateY(16px);
  animation: slideInUp 0.6s ease forwards;
}

.methods-grid .method-card:nth-child(1) { animation-delay: 0.1s; }
.methods-grid .method-card:nth-child(2) { animation-delay: 0.15s; }
.methods-grid .method-card:nth-child(3) { animation-delay: 0.2s; }
.methods-grid .method-card:nth-child(4) { animation-delay: 0.25s; }
.methods-grid .method-card:nth-child(5) { animation-delay: 0.3s; }
.methods-grid .method-card:nth-child(6) { animation-delay: 0.35s; }
.methods-grid .method-card:nth-child(7) { animation-delay: 0.4s; }
.methods-grid .method-card:nth-child(8) { animation-delay: 0.45s; }

.method-card.primary {
  background: linear-gradient(135deg, rgba(23, 245, 151, 0.1), rgba(0, 212, 255, 0.05));
  border-color: rgba(23, 245, 151, 0.3);
}

.mc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 245, 151, 0.1);
  border: 1px solid rgba(23, 245, 151, 0.2);
  border-radius: 0.8rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.method-card:hover .mc-icon {
  background: rgba(23, 245, 151, 0.2);
  transform: scale(1.1);
}

.mc-icon svg {
  width: 24px;
  height: 24px;
}

.mc-body {
  flex: 1;
  min-width: 0;
}

.mc-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.mc-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
  line-height: 1.5;
}

.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tags span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.mc-arrow {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

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

/* Reach Me Section */
.reach-me {
  margin-top: 3rem;
}

.container-slim {
  max-width: 900px;
  margin: 0 auto;
}

.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.reach-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.reach-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 245, 151, 0.4);
  box-shadow: 0 10px 30px rgba(23, 245, 151, 0.15);
  background: rgba(23, 245, 151, 0.05);
}

.reach-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 245, 151, 0.1);
  border: 1px solid rgba(23, 245, 151, 0.2);
  border-radius: 0.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.reach-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.reach-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact Form */
.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.5;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.form-header p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

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

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 0.85rem 0.9rem 0.85rem 2.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(23, 245, 151, 0.05);
  box-shadow: 0 0 0 3px rgba(23, 245, 151, 0.1);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.3s ease;
}

.textarea-icon {
  top: 1.2rem;
  transform: none;
}

.input-wrapper:focus-within .input-icon {
  color: var(--primary);
}

.error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-footer {
  margin-top: 1rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 1.5rem;
  text-align: center;
  line-height: 1.5;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn.loading .btn-content {
  opacity: 0;
}

.btn.loading .btn-loading {
  opacity: 1;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(20px);
  background: rgba(23, 245, 151, 0.15);
  border: 1px solid rgba(23, 245, 151, 0.4);
  color: var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  font-weight: 500;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Contact CTA */
.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tighten and arrange contact methods + form */
/* Columns to match screenshot (form left, list right) */
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

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

/* Make methods grid compact and multi-column on larger screens */
@media (min-width: 640px) {
  .methods-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .methods-grid { grid-template-columns: 1fr 1fr; }
}

/* In screenshot the button is full wide within form panel */
.contact-form .btn.btn-block { width: 100%; }

/* Button ripple effect */
.contact-form .btn.btn-primary {
  overflow: hidden;
}

.contact-form .btn.btn-primary::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

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

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    padding: 2rem 0 4rem;
    text-align: center;
  }
  
  .hero-visual {
    min-height: 200px;
  }
  
  .floating-elements {
    width: 150px;
    height: 150px;
  }
  
  .floating-icon {
    font-size: 2rem;
  }
  
  .contact-methods,
  .contact-card {
    padding: 1.5rem;
  }
  
  .method-card {
    padding: 1rem;
  }
  
  .mc-icon {
    width: 40px;
    height: 40px;
  }
  
  .mc-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .contact-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ================= NEW REDESIGN STYLES ================= */

/* Hero Grid */
.contact-hero {
  position: relative;
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { order: -1; text-align: center; }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.neon-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quick-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.qa .qa-arrow {
  margin-left: 0.4rem;
  transition: transform 0.25s ease;
}

.qa:hover .qa-arrow {
  transform: translateX(2px);
}

/* Aurora Scene */
.hero-scene {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.aurora {
  position: absolute;
  inset: -20% -10% -10% -10%;
  background: radial-gradient(60% 40% at 30% 30%, rgba(23,245,151,0.35), transparent 60%),
              radial-gradient(50% 35% at 70% 60%, rgba(0,212,255,0.35), transparent 60%),
              radial-gradient(40% 30% at 50% 20%, rgba(255,255,255,0.05), transparent 60%);
  filter: blur(30px) saturate(120%);
  animation: auroraFlow 12s ease-in-out infinite alternate;
  border-radius: 2rem;
  opacity: 0.9;
}

@keyframes auroraFlow {
  0% { transform: translateY(-10px) scale(1); }
  100% { transform: translateY(10px) scale(1.05); }
}

.orbs {
  position: relative;
  width: 260px;
  height: 260px;
}

.orb {
  position: absolute;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite;
}

.orb-1 { top: 10%; left: 8%; animation-delay: 0s; }
.orb-2 { bottom: 8%; right: 6%; animation-delay: 1.6s; }
.orb-3 { top: 50%; left: 60%; transform: translateY(-50%); animation-delay: 3.2s; }

.ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(23,245,151,0.35);
  box-shadow: inset 0 0 40px rgba(23,245,151,0.1);
  animation: spin 18s linear infinite;
}

/* Social Wall */
.social-wall {
  margin-top: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

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

@media (max-width: 560px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

.tile {
  position: relative;
  isolation: isolate;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--text);
  display: grid;
  align-content: space-between;
  min-height: 120px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 50% 10%, rgba(23,245,151,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tile:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(23,245,151,0.4);
  background: rgba(23,245,151,0.05);
  box-shadow: 0 12px 36px rgba(23,245,151,0.12);
}

.tile:hover::after { opacity: 1; }

.ti {
  font-size: 0.9rem;
  color: var(--muted);
}

.te {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  justify-self: end;
}

/* Tilt base to allow JS transforms */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

[data-tilt] .mc-icon,
[data-tilt] .ti,
[data-tilt] .te,
[data-tilt] .qa-arrow {
  transform: translateZ(16px);
}

/* Panels */
.panel {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  position: relative;
}

.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(23,245,151,0.25), rgba(0,212,255,0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}

/* Animated shimmer around panels */
.panel::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(23,245,151,0) 0deg, rgba(23,245,151,0.5) 90deg, rgba(0,212,255,0.4) 180deg, rgba(23,245,151,0.5) 270deg, rgba(23,245,151,0) 360deg);
  filter: blur(12px);
  opacity: 0.12;
  animation: spin 18s linear infinite;
  pointer-events: none;
}

.panel-header {
  padding: 1rem 1.25rem 0.5rem;
}

.panel-header h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

/* Direct contact list */
.direct-panel { padding: 0.5rem; }

.dc-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.5rem;
}

.dc-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.8rem;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
}

/* Normalize button variant to match anchor rows */
button.dc-item {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.8rem;
  color: var(--text);
  font: inherit;
}

.dc-item:hover {
  transform: translateY(-2px);
  background: rgba(23,245,151,0.05);
  border-color: rgba(23,245,151,0.35);
  box-shadow: 0 10px 30px rgba(23,245,151,0.12);
}

button.dc-item:hover {
  transform: translateY(-2px);
  background: rgba(23,245,151,0.05);
  border-color: rgba(23,245,151,0.35);
  box-shadow: 0 10px 30px rgba(23,245,151,0.12);
}

.dc-ic {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(23,245,151,0.08);
  border: 1px solid rgba(23,245,151,0.2);
  border-radius: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dc-body {
  display: grid;
  gap: 0.1rem;
}

.dc-body strong {
  font-size: 0.98rem;
}

.dc-body em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Subtle stagger reveal for list items */
.dc-list .dc-item { opacity: 0; transform: translateY(10px); animation: slideInUp 0.45s ease forwards; }
.dc-list .dc-item:nth-child(1) { animation-delay: 0.05s; }
.dc-list .dc-item:nth-child(2) { animation-delay: 0.1s; }
.dc-list .dc-item:nth-child(3) { animation-delay: 0.15s; }
.dc-list .dc-item:nth-child(4) { animation-delay: 0.2s; }
.dc-list .dc-item:nth-child(5) { animation-delay: 0.25s; }
.dc-list .dc-item:nth-child(6) { animation-delay: 0.3s; }
.dc-list .dc-item:nth-child(7) { animation-delay: 0.35s; }