/* ==========================================================================
   Docker-Compose.net - Modern Obsidian Design System
   High-performance, zero-dependency, SEO-optimized CSS
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-base: #090d16;
  --bg-surface: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-elevated: rgba(30, 41, 59, 0.7);
  --bg-input: #070b12;
  --bg-hover: rgba(255, 255, 255, 0.05);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(14, 165, 233, 0.6);
  --border-glow: 0 0 20px rgba(14, 165, 233, 0.25);

  /* Brand & Accent Colors */
  --primary: #0ea5e9;
  --primary-hover: #38bdf8;
  --primary-active: #0284c7;
  --primary-glow: rgba(14, 165, 233, 0.4);
  --accent-cyan: #06b6d4;
  --accent-indigo: #6366f1;
  --accent-purple: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, Monaco, 'Courier New', monospace;

  /* Spacing & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(at 15% 10%, rgba(14, 165, 233, 0.08) 0px, transparent 50%),
    radial-gradient(at 85% 20%, rgba(99, 102, 241, 0.06) 0px, transparent 50%),
    radial-gradient(at 50% 90%, rgba(14, 165, 233, 0.04) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Links */
a {
  color: var(--primary-hover);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--text-white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.875rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand-link:hover {
  opacity: 0.9;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.brand-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary-hover);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.github-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.github-badge-group img {
  border-radius: 4px;
  transition: transform 0.2s ease;
}
.github-badge-group a:hover img {
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero & Main Input Form
   ========================================================================== */
.hero-section {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.hero-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2rem;
}

/* Generator Form Container */
.converter-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 35px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-subtle);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.converter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
}

.input-terminal-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terminal-input-bar {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
}

.terminal-input-bar:focus-within {
  border-color: var(--primary);
  box-shadow: var(--border-glow);
}

.terminal-prompt {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
  padding: 0 0.5rem;
  user-select: none;
  font-size: 1.1rem;
}

.terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-white);
  padding: 0.65rem 0.5rem;
  width: 100%;
}

.terminal-input::placeholder {
  color: var(--text-dim);
}

/* Controls Bar inside Generator */
.form-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.privacy-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  user-select: none;
  cursor: pointer;
}

.privacy-toggle-wrapper input[type="checkbox"] {
  display: none;
}

.toggle-switch-track {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
}

.toggle-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  transition: var(--transition);
}

.privacy-toggle-wrapper input:checked + .toggle-switch-track {
  background: var(--accent-amber);
}

.privacy-toggle-wrapper input:checked + .toggle-switch-track .toggle-switch-thumb {
  transform: translateX(20px);
}

.privacy-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.btn-convert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.35);
  transition: var(--transition);
}

.btn-convert:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.45);
}

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

/* Sample Quick Tags */
.quick-samples {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
}

.quick-samples-label {
  color: var(--text-dim);
  font-weight: 600;
}

.sample-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.sample-pill:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.3);
  color: var(--primary-hover);
}

/* ==========================================================================
   Output Section & Controls
   ========================================================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

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

.output-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

/* Header toolbar inside Output Card */
.output-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.toolbar-left, .toolbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.badge-status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.badge-public {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-private {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-id {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary-hover);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.badge-id:hover {
  background: rgba(14, 165, 233, 0.25);
}

/* Form Controls in Toolbar */
.select-styled {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.select-styled:hover, .select-styled:focus {
  border-color: var(--primary);
}

.input-styled {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  outline: none;
  font-family: var(--font-mono);
  transition: var(--transition);
}

.input-styled:focus {
  border-color: var(--primary);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.45rem 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
  background: var(--bg-input);
  color: var(--text-main);
}

.btn-sm:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn-hub {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
  color: var(--primary-hover);
}
.btn-hub:hover {
  background: var(--primary);
  color: #fff;
}

/* Code Viewer & Terminal Window */
.code-window {
  background: #050811;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.25rem;
}

.code-window-header {
  background: #0d1322;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

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

.window-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-copy.copied {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #fff;
}

/* Textarea / Code Display */
.code-area {
  width: 100%;
  min-height: 440px;
  background: transparent;
  color: #e2e8f0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  resize: vertical;
  white-space: pre;
  tab-size: 2;
}

/* Action Footer below Code */
.output-actions-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wget-bar {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
}

.wget-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  padding: 0 0.4rem;
}

.wget-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.35rem;
  cursor: pointer;
}

/* Alerts */
.alert-banner {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fde68a;
}

/* ==========================================================================
   Sidebar & Widgets
   ========================================================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.4);
}

.sidebar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

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

.history-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: var(--transition);
}

.history-pill:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.4);
  color: var(--primary-hover);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.example-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.example-item:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
  color: #ffffff;
}

/* Docker Inspect Helper */
.inspect-terminal {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #38bdf8;
  word-break: break-all;
  user-select: all;
  margin: 0.5rem 0;
  cursor: pointer;
  transition: var(--transition);
}

.inspect-terminal:hover {
  border-color: var(--primary);
}

/* Carbon Ads Container */
.carbon-container {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
#carbonads {
  font-family: var(--font-sans);
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  max-width: 330px;
}

/* ==========================================================================
   SEO Content Modules: Guide, Table, FAQs
   ========================================================================== */
.seo-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

/* How to Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Flag Reference Table */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  margin-bottom: 3.5rem;
}

.flag-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.flag-table th {
  background: rgba(30, 41, 59, 0.6);
  color: var(--text-white);
  font-weight: 600;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.flag-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.flag-table tr:last-child td {
  border-bottom: none;
}

.flag-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.code-pill {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: rgba(14, 165, 233, 0.1);
  color: #38bdf8;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  background: rgba(9, 13, 22, 0.9);
  padding: 2.5rem 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

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

/* ==========================================================================
   Toast Notification System
   ========================================================================== */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: toastIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toast-error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.2);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
