@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Dark Mode as DEFAULT — site is dark by default */
  --bg-color: #080B14;
  --bg-primary: #080B14;
  --bg-secondary: #0D1120;
  --bg-card: rgba(255,255,255,0.04);
  --text-color: #F1F5F9;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255,255,255,0.08);
  --primary: #A78BFA;
  --primary-hover: #7C3AED;
  --accent-violet: #7C3AED;
  --accent-violet-light: #A78BFA;
  --accent-gold: #F59E0B;
  --accent-emerald: #10B981;
  --secondary: #0D1120;
  --danger: #e53e3e;
  --success: #10B981;
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(8, 11, 20, 0.85);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.08);
  --noise-opacity: 0.6;
  --font-display: 'Fraunces', serif;
}

/* Explicit dark mode fallback */
body.dark-mode {
  --bg-color: #080B14;
  --bg-primary: #080B14;
  --bg-secondary: #0D1120;
  --bg-card: rgba(255,255,255,0.04);
  --text-color: #F1F5F9;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255,255,255,0.08);
  --primary: #A78BFA;
  --primary-hover: #7C3AED;
  --accent-violet: #7C3AED;
  --accent-violet-light: #A78BFA;
  --accent-gold: #F59E0B;
  --accent-emerald: #10B981;
  --secondary: #0D1120;
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(8, 11, 20, 0.85);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.08);
  --noise-opacity: 0.6;
}

/* Light mode override — applied via JS when user switches */
.light-mode {
  /* Rich warm ivory base — feels premium, not flat white */
  --bg-color: #FAF7FF;
  --bg-primary: #FAF7FF;
  --bg-secondary: #F3EEFF;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);

  /* Deep rich text — high contrast, readable */
  --text-color: #1A0A3C;
  --text-primary: #1A0A3C;
  --text-secondary: #4C3A7A;
  --text-muted: #8B7FB5;

  /* Card & border styling */
  --card-bg: rgba(255, 255, 255, 0.88);
  --card-border: rgba(124, 58, 237, 0.15);
  --border-subtle: rgba(124, 58, 237, 0.12);
  --border-glow: rgba(124, 58, 237, 0.35);

  /* Vibrant violet & gold accents */
  --primary: #6D28D9;
  --primary-hover: #5B21B6;
  --accent-violet: #6D28D9;
  --accent-violet-light: #7C3AED;
  --accent-gold: #D97706;
  --accent-gold-light: #F59E0B;
  --accent-emerald: #059669;

  /* Glow effects */
  --glow-violet: rgba(109, 40, 217, 0.12);
  --glow-gold: rgba(217, 119, 6, 0.1);
  --glass-shadow: 0 8px 40px rgba(109, 40, 217, 0.12);

  /* Nav & inputs */
  --nav-bg: rgba(250, 247, 255, 0.92);
  --input-bg: rgba(109, 40, 217, 0.04);
  --input-border: rgba(109, 40, 217, 0.18);
  --noise-opacity: 0.12;
}

/* Light mode enhanced glass card */
.light-mode .glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 4px 24px rgba(109, 40, 217, 0.08), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.light-mode .glass-card:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 40px rgba(109, 40, 217, 0.16);
}

/* Light mode ambient orbs — vibrant violet + gold */
.light-mode .ambient-orb:first-child {
  background: radial-gradient(circle, rgba(109, 40, 217, 0.18) 0%, transparent 70%) !important;
}

/* Light mode input */
.light-mode .tool-input {
  background: rgba(109, 40, 217, 0.04);
  border-color: rgba(109, 40, 217, 0.18);
  color: #1A0A3C;
}
.light-mode .tool-input:focus {
  background: rgba(109, 40, 217, 0.07);
  border-color: #6D28D9;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.14);
}

/* Light mode badge tweaks */
.light-mode .badge-violet { background: rgba(109,40,217,0.1); border-color: rgba(109,40,217,0.25); color: #5B21B6; }
.light-mode .badge-gold { background: rgba(217,119,6,0.1); border-color: rgba(217,119,6,0.22); color: #B45309; }
.light-mode .badge-green { background: rgba(5,150,105,0.1); border-color: rgba(5,150,105,0.22); color: #047857; }

/* Light mode nav item hover */
.light-mode .nav-item:hover { background: rgba(109,40,217,0.08); color: #5B21B6; }
.light-mode .nav-item-tool:hover { background: rgba(109,40,217,0.07); color: #5B21B6; }

/* Light mode button secondary */
.light-mode .btn-secondary {
  background: rgba(109, 40, 217, 0.07);
  border-color: rgba(109, 40, 217, 0.2);
  color: #4C3A7A;
}
.light-mode .btn-secondary:hover {
  background: rgba(109, 40, 217, 0.13);
  border-color: rgba(109, 40, 217, 0.4);
  color: #1A0A3C;
}

/* Light mode scrollbar */
.light-mode ::-webkit-scrollbar-track { background: #F3EEFF; }
.light-mode ::-webkit-scrollbar-thumb { background: rgba(109, 40, 217, 0.25); }
.light-mode ::-webkit-scrollbar-thumb:hover { background: rgba(109, 40, 217, 0.45); }

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  opacity: var(--noise-opacity);
}

h1, h2, h3, .logo {
  font-family: 'Fraunces', serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* ===========================================
   DESIGN SYSTEM - Glass, Gradients, Badges
=========================================== */

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* Legacy glass */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
}

/* Gradient texts */
.gradient-text-violet {
  background: linear-gradient(135deg, #A78BFA, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-mixed {
  background: linear-gradient(135deg, #A78BFA 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-violet {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: #A78BFA;
}
.badge-gold {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #FCD34D;
}
.badge-green {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: #34D399;
}

/* Pulse dot */
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-anim 2s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.5);
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(167,139,250,0.4);
}

/* Ambient orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-animate { animation: orb-float 12s ease-in-out infinite; }
.orb-animate-reverse { animation: orb-float 15s ease-in-out infinite reverse; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

/* Shine sweep on hover */
.shine-sweep {
  position: relative;
  overflow: hidden;
}
.shine-sweep::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s ease;
}
.shine-sweep:hover::after { left: 150%; }

/* Reveal on scroll */
.reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-hidden.revealed {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Section gap */
.section-gap { padding: 5rem 0; }

/* Font helpers */
.font-display { font-family: 'Fraunces', serif; }
.font-light { font-weight: 300; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.7; }
.text-center { text-align: center; }


.glass-nav {
  background: var(--nav-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header & Nav */
header {
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex !important; /* Always show on desktop */
  gap: 0.25rem;
  align-items: center;
}

.nav-item {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}

.nav-item-tool {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-item-tool:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}

.theme-toggle {
  cursor: pointer;
  transition: transform 0.2s;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

/* Hamburger: hidden on desktop, shown on mobile */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-color);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Main Content Area */
main {
  flex: 1;
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  margin-bottom: 3rem;
  border-radius: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), #b829e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 1rem;
  text-align: center;
}


/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Forms and Inputs */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

/* Result Box */
.result-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: 8px;
  text-align: center;
  display: none; /* hidden by default */
}

.result-box.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.result-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.result-box p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 5%;
  border-top: 1px solid var(--card-border);
  margin-top: auto;
  color: var(--text-muted);
}

/* Admin Sidebar Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.admin-sidebar {
  width: 250px;
  padding: 2rem;
  border-right: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
}

.admin-sidebar .logo {
  margin-bottom: 2rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-nav a {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.admin-nav a:hover, .admin-nav a.active {
  background: var(--primary);
  color: #fff;
}

.admin-main {
  flex: 1;
  padding: 2rem 4rem;
}

/* Blog Layout */
.blog-post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--card-border);
}

.blog-post h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.blog-post .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-list {
  list-style: disc inside;
  color: var(--text-muted);
  margin-left: 1rem;
}

.blog-list li {
  margin-bottom: 0.5rem;
}

/* AI Prompt Box */
.prompt-box {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 1rem;
  border-radius: 8px;
  font-family: monospace;
  margin-bottom: 1rem;
  color: var(--text-color);
  word-wrap: break-word;
}

/* Structural Modifiers */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

.dropdown-wrapper {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: 0.5rem;
  border-radius: 12px;
  flex-direction: column;
  z-index: 100;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.dropdown-wrapper:hover .dropdown-content {
  display: flex;
}
.dropdown-content a {
  padding: 0.8rem 1rem;
  color: var(--text-muted);
  transition: all 0.2s;
  border-radius: 8px;
}
.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* Auth Container */
.auth-container {
  max-width: 400px;
  margin: 4rem auto;
}

.error-message {
  color: var(--danger);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

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

/* Responsive */
@media (max-width: 768px) {
  /* Hide desktop nav on mobile */
  .nav-links {
    display: none !important;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex !important;
  }

  .mobile-only {
    display: block !important;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .admin-layout {
    flex-direction: column;
  }
  
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--card-border);
  }
  
  .admin-main {
    padding: 2rem 5%;
  }
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 520px;
  background: rgba(13, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #F1F5F9;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
  animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-popup p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin: 0 0 1rem 0;
}

.cookie-popup div {
  display: flex;
  gap: 0.625rem;
}

.cookie-popup button {
  flex: 1;
  padding: 0.6rem 1.25rem;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s;
}

.cookie-popup button:first-child {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: white;
  box-shadow: 0 3px 12px rgba(124,58,237,0.3);
}
.cookie-popup button:first-child:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124,58,237,0.4);
}

.cookie-popup button:last-child {
  background: rgba(255,255,255,0.06);
  color: #94A3B8;
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-popup button:last-child:hover {
  background: rgba(255,255,255,0.1);
  color: #F1F5F9;
}

.light-mode .cookie-popup {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

}
.light-mode .cookie-popup p { color: #334155; }
.light-mode .cookie-popup button:last-child {
  background: rgba(0,0,0,0.05);
  color: #64748B;
  border-color: rgba(0,0,0,0.1);
}

/* ── Logo & Branding ── */
.app-logo {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}
.app-logo:hover {
  transform: scale(1.1) rotate(-5deg);
}
.app-logo-sm {
  width: 24px;
  height: 24px;
}
.app-logo-lg {
  width: 48px;
  height: 48px;
}

