/* Terminal Theme */
[data-theme="terminal"] {
  background-color: #000000;
  --bg-primary: #000000;
  --bg-secondary: #111111;
  --bg-tertiary: #333333;
  --text-primary: #00ff00;
  --text-secondary: #00ff00;
  --text-tertiary: #00aa00;
  --text-quaternary: #ffb000;
  --text-hover: #00ff00;
  --border-outset: 1px solid #00ff00;
  --border-inset: 1px solid #00ff00;
  --shadow: none;
  --modal-bg: rgba(0, 0, 0, 0.9);
  --font-mono: monospace;
  --font-size-base: 0.875rem;
  --font-size-small: 0.8rem;
  --font-size-tiny: 0.75rem;
  --font-size-micro: 0.7rem;
  --line-height: 1.4;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
}
/* Links styling with higher specificity */
[data-theme="terminal"] a,
[data-theme="terminal"] .services-section a,
[data-theme="terminal"] .about-section a,
[data-theme="terminal"] .group-chat a,
[data-theme="terminal"] .direct-message a,
[data-theme="terminal"] .crypto a {
  color: #ffb000;
  text-decoration: none;
  transition: color 0.2s ease;
}
[data-theme="terminal"] a:hover,
[data-theme="terminal"] a:focus,
[data-theme="terminal"] .services-section a:hover,
[data-theme="terminal"] .services-section a:focus,
[data-theme="terminal"] .about-section a:hover,
[data-theme="terminal"] .about-section a:focus,
[data-theme="terminal"] .group-chat a:hover,
[data-theme="terminal"] .group-chat a:focus,
[data-theme="terminal"] .direct-message a:hover,
[data-theme="terminal"] .direct-message a:focus,
[data-theme="terminal"] .crypto a:hover,
[data-theme="terminal"] .crypto a:focus {
  color: #00ff00;
  text-decoration: none;
}
/* Headers */
[data-theme="terminal"] h1,
[data-theme="terminal"] h2 {
  text-shadow: none;
}
/* Content boxes with proper spacing */
[data-theme="terminal"] .about-section,
[data-theme="terminal"] .services-section,
[data-theme="terminal"] .group-chat,
[data-theme="terminal"] .direct-message,
[data-theme="terminal"] .crypto,
[data-theme="terminal"] .quote {
  border: 1px solid #00ff00 !important;
  margin: 0;
  padding: 8px;
  background: #000000;
}
/* Theme button and modal styling */
[data-theme="terminal"] .theme-btn.active {
  background: var(--bg-secondary);
  border: 1px solid #00ff00;
}
[data-theme="terminal"] .modal-content {
  border: 1px solid #00ff00;
}
[data-theme="terminal"] .modal-content h3 {
  color: var(--text-primary);
}
/* Interactive elements */
[data-theme="terminal"] .address-text:hover {
  background: var(--bg-secondary);
}
[data-theme="terminal"] .close-btn {
  color: var(--text-tertiary);
}
[data-theme="terminal"] .close-btn:hover {
  border: 1px solid #00ff00;
  background: var(--bg-primary);
}
