/* Custom Design System Tokens */
:root {
  --bg-color: #0b111e;
  --panel-bg: rgba(17, 24, 39, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary: #3b82f6;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --secondary: #8b5cf6;
  --secondary-glow: rgba(139, 92, 246, 0.35);
  
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.15);
  --warning: #f59e0b;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Elements */
.glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
}

.glow-1 {
  background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
  top: -10vw;
  right: -10vw;
}

.glow-2 {
  background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
  top: 40vh;
  left: -15vw;
}

.glow-3 {
  background: radial-gradient(circle, #ec4899 0%, transparent 80%);
  bottom: -10vw;
  right: 10vw;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  background: rgba(11, 17, 30, 0.6);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.logo span span {
  color: var(--primary);
}

.logo-icon {
  stroke-width: 2.5;
  color: var(--primary);
  width: 24px;
  height: 24px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

.subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.cli-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.cli-badge code {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.pulse {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  position: relative;
}

.pulse::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.visual-card {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 0;
  overflow: hidden;
}

.card-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #eab308; }
.dot.green { background-color: #22c55e; }

.window-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-body {
  padding: 1.5rem;
}

.status-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.status-label {
  color: var(--text-secondary);
}

.status-value {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-value svg {
  width: 14px;
  height: 14px;
}

.status-value.success {
  color: var(--success);
}

.status-value.highlight {
  color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.divider {
  height: 1px;
  background: var(--border-color);
  margin: 1.2rem 0;
}

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

.metric-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.metric-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.metric-val .max {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.metric-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Features Grid */
.features {
  padding: 6rem 0;
  position: relative;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Terminal Simulator styling */
.terminal-section {
  padding: 6rem 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.terminal-window {
  background: #060910;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
}

.terminal-header {
  background: #0f1422;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-btn-container {
  display: flex;
  gap: 0.5rem;
}

.action-btn-container button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.action-btn-container button:hover {
  opacity: 1;
  color: #fff;
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  height: 420px;
  overflow-y: auto;
  line-height: 1.5;
  color: #c9d1d9;
}

.term-cmd {
  color: var(--primary);
  font-weight: 600;
}

.term-output {
  color: #8b949e;
  margin: 0.4rem 0 1rem 0;
}

.term-input-prompt {
  color: var(--success);
}

.typing {
  border-right: 2px solid var(--primary);
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--primary); }
}

/* Calculator Section */
.calculator-section {
  padding: 6rem 0;
}

.calculator-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.calculator-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.calculator-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.score-rules {
  list-style: none;
}

.score-rules li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.score-rules li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.calculator-card {
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  border-color: rgba(139, 92, 246, 0.15);
}

.calculator-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.slider-group {
  margin-bottom: 1.8rem;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.slider-group span {
  color: var(--text-primary);
  font-weight: 600;
}

/* Custom Slider Styling */
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #1f293d;
  border-radius: 99px;
  outline: none;
  transition: var(--transition);
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Circular Progress styling */
.score-result {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circular-progress {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke-dasharray: 439.8; /* 2 * PI * r = 2 * 3.14159 * 70 */
  stroke-dashoffset: 439.8;
  transition: stroke-dashoffset 0.35s;
}

.score-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#final-score {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.max-val {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

.verdict {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 99px;
}

.verdict.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.verdict.red {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  background: #060910;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    gap: 3rem;
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .calculator-info {
    text-align: center;
  }

  .score-rules li {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 17, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    padding: 1rem 0;
  }
  
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1.5rem;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(11, 17, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  nav a {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .hero {
    padding: 9rem 0 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .features {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 8rem 0 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }
  
  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 2rem auto;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Keep Terminal landscape and cool on mobile */
  .terminal-window {
    width: 100%;
    border-radius: 8px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .terminal-body {
    height: 250px;
    font-size: 0.72rem;
    padding: 0.8rem;
    line-height: 1.4;
    overflow-x: auto;
    white-space: pre;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-card h3 {
    font-size: 1.15rem;
  }
  
  .feature-card p {
    font-size: 0.88rem;
  }
  
  /* Calculator adjustments */
  .calculator-card {
    padding: 1.2rem;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .slider-group {
    margin-bottom: 1.2rem;
  }
  
  .score-result {
    margin-top: 0.5rem;
  }
  
  .circular-progress {
    transform: scale(0.85);
    margin: -15px 0;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }
  
  nav a {
    font-size: 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.95rem;
  }
  
  .modal-card {
    padding: 1.2rem;
    width: 95%;
  }
  
  .modal-header h3 {
    font-size: 1.25rem;
  }
  
  .step {
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }
  
  .step-num {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}


/* Modal Overlay & Card Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 17, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
}

.modal-body p {
  margin-bottom: 1.5rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content {
  flex-grow: 1;
}

.step-content h4 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content pre {
  background: #060910;
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #c9d1d9;
  overflow-x: auto;
  margin-top: 0.4rem;
  text-align: left;
}

.badge {
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.badge:hover {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

