@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

/* ========================================
   CSS VARIABLES & THEME SYSTEM
   ======================================== */

:root[data-theme="light"] {
  /* Light Theme Colors */
  --color-bg: #FAFAFA;
  --color-surface: #FFFFFF;
  --color-surface-elevated: #FFFFFF;
  --color-border: #E0E0E0;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-tertiary: #757575;
  --color-accent: #2563EB;
  --color-accent-hover: #1D4ED8;
  --color-accent-light: #DBEAFE;
  
  /* Semantic Colors */
  --color-success: #059669;
  --color-warning: #D97706;
  --color-error: #DC2626;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  
  /* Background patterns */
  --bg-pattern: none;
}

:root[data-theme="dark"] {
  /* Dark Theme Colors */
  --color-bg: #0F0F0F;
  --color-surface: #1A1A1A;
  --color-surface-elevated: #242424;
  --color-border: #2A2A2A;
  --color-text-primary: #F5F5F5;
  --color-text-secondary: #D4D4D4;
  --color-text-tertiary: #A3A3A3;
  --color-accent: #3B82F6;
  --color-accent-hover: #60A5FA;
  --color-accent-light: #1E3A8A;
  
  /* Semantic Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
  
  /* Background patterns */
  --bg-pattern: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: var(--color-bg);
  background-image: var(--bg-pattern);
  color: var(--color-text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */

.theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.theme-toggle:hover {
  transform: scale(1.1);
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.hero-image {
  display: block;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-text h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ========================================
   NAVIGATION - PRIMARY
   ======================================== */

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
  justify-content: center;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.nav-btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-btn i {
  font-size: 1.1rem;
}

/* ========================================
   FEATURED PROJECTS SECTION
   ======================================== */

.featured-projects {
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  border-radius: 2px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  text-decoration: none;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.project-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.project-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.project-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.project-card em {
  font-size: 0.9rem;
  opacity: 0.8;
}

.project-link {
  color: var(--color-accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.project-card:hover .project-link {
  gap: 12px;
}

.project-link i {
  transition: transform 0.3s ease;
}

.project-card:hover .project-link i {
  transform: translateX(4px);
}

.project-icon i {
  
  display: block;
  line-height: 2.1;
}

/* ========================================
   NAVIGATION - SECONDARY
   ======================================== */

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}



.nav-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
  justify-content: center;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  color: var(--color-text-primary);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.link-btn:hover {
  background: var(--color-surface-elevated);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.link-btn i {
  font-size: 1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  margin-bottom: 60px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-icon {
  font-size: 32px;
  color: var(--color-accent);
}

.service h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text-primary);
}

.service p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service ul {
  list-style: none;
  padding: 0;
}

.service ul li {
  color: var(--color-text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-tertiary);
  font-size: 0.9rem;
}

.footer p {
  margin: 8px 0;
}

.footer a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .container {
    padding: 20px 16px;
  }

  .hero {
    padding: 24px;
    gap: 24px;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .nav-primary,
  .nav-secondary {
    flex-direction: column;
  }

  .nav-btn,
  .link-btn {
    width: 100%;
    justify-content: center;
  }

  .theme-toggle {
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .service {
    padding: 20px;
  }

  .project-card {
    padding: 20px;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.featured-projects,
.services-section {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: var(--color-accent-light);
  color: var(--color-text-primary);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.blog-post {
  padding-bottom: 1.6em;
}

/* Blog Images - Responsive */
img.framework {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.framework {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ============================================
   MOBILE NAVIGATION - SLIDING MENU
   ============================================ */

/* Hamburger Button */
.mobile-menu-toggle {
  display: none; /* Hidden by default, shown only on mobile */
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  background: #004080;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mobile-menu-toggle:hover {
  background: #0066cc;
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Hamburger Icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger to X when menu is open */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay - Click to dismiss */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Sliding Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px; /* Hidden off-screen to the right */
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  right: 0; /* Slide in */
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .mobile-menu {
    background: #222;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  }
  
  .mobile-menu-toggle {
    background: #6ea0ff;
  }
  
  .mobile-menu-toggle:hover {
    background: #8ab4ff;
  }
}

/* Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

@media (prefers-color-scheme: dark) {
  .mobile-menu-header {
    border-bottom-color: #444;
  }
}

.mobile-menu-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #004080;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .mobile-menu-title {
    color: #6ea0ff;
  }
}

/* Close button (redundant but helpful for users who don't know about overlay) */
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: #004080;
}

@media (prefers-color-scheme: dark) {
  .mobile-menu-close {
    color: #999;
  }
  
  .mobile-menu-close:hover {
    color: #6ea0ff;
  }
}

/* Navigation Links */
.mobile-nav-section {
  margin-bottom: 2rem;
}

.mobile-nav-section h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f4f4f4;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: #004080;
  color: #fff;
  transform: translateX(-4px);
}

.mobile-nav-link.active {
  background: #004080;
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  .mobile-nav-link {
    background: #333;
    color: #eee;
  }
  
  .mobile-nav-link:hover {
    background: #6ea0ff;
    color: #000;
  }
  
  .mobile-nav-link.active {
    background: #6ea0ff;
    color: #000;
  }
}

.mobile-nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Divider */
.mobile-nav-divider {
  height: 1px;
  background: #ddd;
  margin: 1.5rem 0;
}

@media (prefers-color-scheme: dark) {
  .mobile-nav-divider {
    background: #444;
  }
}

/* Show mobile menu only on small screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation on mobile */
  .nav-buttons,
  .nav-primary,
  .nav-secondary {
    display: none;
  }
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Accessibility improvements */
.mobile-menu-toggle:focus,
.mobile-nav-link:focus,
.mobile-menu-close:focus {
  outline: 2px solid #004080;
  outline-offset: 2px;
}

@media (prefers-color-scheme: dark) {
  .mobile-menu-toggle:focus,
  .mobile-nav-link:focus,
  .mobile-menu-close:focus {
    outline-color: #6ea0ff;
  }
}

/* ========================================
   MANIFESTO PAGE
   ======================================== */

/* Narrow reading column – optimal ~65-70 char line length */
.manifesto-body {
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.manifesto-page header {
  text-align: center;
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 3rem;
  position: relative;
  isolation: isolate;
}

/* Vitruvian Man background – fades behind the title */
.manifesto-page header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('public/img/vitrus.svg') no-repeat center center;
  background-size: 420px auto;
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
}

:root[data-theme="dark"] .manifesto-page header::before {
  opacity: 0.05;
  filter: invert(1);
}

.manifesto-page header h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.manifesto-page header .subtitle {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.manifesto-page header em {
  font-size: 0.95rem;
  color: var(--color-text-tertiary);
}

/* Sections */
.manifesto-body section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(16px);
  animation: manifestoFadeIn 0.55s ease-out forwards;
}

.manifesto-body section:nth-child(2)  { animation-delay: 0.05s; }
.manifesto-body section:nth-child(3)  { animation-delay: 0.12s; }
.manifesto-body section:nth-child(4)  { animation-delay: 0.19s; }
.manifesto-body section:nth-child(5)  { animation-delay: 0.26s; }
.manifesto-body section:nth-child(6)  { animation-delay: 0.33s; }
.manifesto-body section:nth-child(7)  { animation-delay: 0.40s; }
.manifesto-body section:nth-child(8)  { animation-delay: 0.47s; }
.manifesto-body section:nth-child(9)  { animation-delay: 0.54s; }
.manifesto-body section:nth-child(10) { animation-delay: 0.61s; }

.manifesto-body section:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

@keyframes manifestoFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Section headings */
.manifesto-body h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
  line-height: 1.3;
}

/* Body text – switch to serif for long-form reading */
.manifesto-body p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-secondary);
  margin-bottom: 1.1rem;
}

.manifesto-body p:last-child {
  margin-bottom: 0;
}

/* Blockquote */
.manifesto-body blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow-sm);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.75;
}

/* Prologue – card treatment */
section.prologue {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem !important;
  box-shadow: var(--shadow-card);
}

/* Transparency – accent tint */
section.transparency {
  background: var(--color-accent-light);
  border-radius: 12px;
  padding: 2rem !important;
  border: 1px solid var(--color-accent);
}

:root[data-theme="dark"] section.transparency {
  background: rgba(59, 130, 246, 0.08);
}

section.transparency p {
  color: var(--color-text-primary);
}

/* Inline emphasis */
.manifesto-body strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.manifesto-body em {
  color: var(--color-accent);
  font-style: italic;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link: hidden until keyboard-focused */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Cookie banner: as thin as text allows */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-surface-elevated);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-tertiary);
  font-size: 9px;
  z-index: 999;
}

#cookie-banner button {
  font-size: 9px;
  line-height: 12px;
  padding: 0 5px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

#cookie-banner button:hover {
  background: var(--color-border);
}

#cookie-privacy-link {
  color: var(--color-accent);
  text-decoration: underline;
}
