/* ========== STATICKÉ CSS (náhrada Tailwind CDN) – index ========== */
:root {
  --accent-200: #a5f3fc;
  --accent-300: #67e8f9;
  --accent-400: #38e8ff;
  --accent-500: #06b6d4;
  --accent-600: #6366f1;
  --accent-700: #7c3aed;
  --darkbg: #111827;
  --darkcard: #1e293b;
  --darkborder: #334155;
  --shadow-elevated: 0 12px 34px 0 rgba(32, 31, 57, 0.19);
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font-sans { font-family: var(--font-sans); }
.max-w-3xl { max-width: 48rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.text-white { color: #fff; }

/* ---------- Layout ---------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-x-5 { display: flex; }
.space-x-5 > *:not(:first-child) { margin-left: 1.25rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.min-h-screen { min-height: 100vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.mt-auto { margin-top: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.fixed { position: fixed; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.right-6 { right: 1.5rem; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* ---------- Spacing ---------- */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-24 { padding-top: 6rem; }
.pb-6 { padding-bottom: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* ---------- Sizing ---------- */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-40 { height: 10rem; }

/* ---------- Typography ---------- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

/* ---------- Colors (bg, text, border) ---------- */
.bg-darkbg { background-color: var(--darkbg); }
.bg-darkcard { background-color: var(--darkcard); }
.bg-slate-950\/85 { background-color: rgba(2, 6, 23, 0.85); }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8); }
.bg-slate-950\/90 { background-color: rgba(2, 6, 23, 0.9); }
.bg-darkbg\/80 { background-color: rgba(17, 24, 39, 0.8); }
.bg-darkcard\/70 { background-color: rgba(30, 41, 59, 0.7); }
.bg-darkcard\/90 { background-color: rgba(30, 41, 59, 0.9); }
.bg-accent-500\/10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-accent-500\/20 { background-color: rgba(6, 182, 212, 0.2); }
.bg-accent-600\/10 { background-color: rgba(99, 102, 241, 0.1); }
.border-darkborder { border-color: var(--darkborder); }
.border-slate-800\/80 { border-color: rgba(30, 41, 59, 0.8); }
.border-accent-500\/50 { border-color: rgba(6, 182, 212, 0.5); }
.border-accent-500\/60 { border-color: rgba(6, 182, 212, 0.6); }
.border-accent-500\/70 { border-color: rgba(6, 182, 212, 0.7); }
.border-accent-600 { border-color: var(--accent-600); }
.border-2 { border-width: 2px; }
.border { border-width: 1px; }
.text-slate-50 { color: #f8fafc; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-950 { color: #020617; }
.text-accent-300 { color: var(--accent-300); }
.text-accent-400 { color: var(--accent-400); }
.text-accent-700 { color: var(--accent-700); }
.text-sky-400 { color: #38bdf8; }

/* ---------- Gradients ---------- */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.from-slate-950\/85 { --tw-gradient-from: rgba(2, 6, 23, 0.85); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-slate-950\/80 { --tw-gradient-to: rgba(2, 6, 23, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to), var(--tw-gradient-to); }
.to-slate-950\/90 { --tw-gradient-to: rgba(2, 6, 23, 0.9); }
.from-accent-400 { --tw-gradient-from: var(--accent-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-accent-200 { --tw-gradient-to: var(--accent-200); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to), var(--tw-gradient-to); }
.to-accent-500 { --tw-gradient-to: var(--accent-500); }
.from-accent-600 { --tw-gradient-from: var(--accent-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-accent-400 { --tw-gradient-to: var(--accent-400); }
.from-accent-600\/70 { --tw-gradient-from: rgba(99, 102, 241, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-accent-400\/40 { --tw-gradient-to: rgba(56, 232, 255, 0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to), var(--tw-gradient-to); }
.to-accent-700\/70 { --tw-gradient-to: rgba(124, 58, 237, 0.7); }
.from-accent-600\/10 { --tw-gradient-from: rgba(99, 102, 241, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-accent-400\/10 { --tw-gradient-to: rgba(56, 232, 255, 0.1); }

/* Složené gradienty (náhrada Tailwind kombinací) */
.bg-gradient-to-b.from-slate-950\/85.via-slate-950\/80.to-slate-950\/90 {
  background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9));
}
.bg-gradient-to-br.from-accent-400.via-accent-200.to-accent-500.bg-clip-text {
  background-image: linear-gradient(to bottom right, var(--accent-400), var(--accent-200), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-gradient-to-br.from-accent-600.to-accent-400.text-white:hover,
a.bg-gradient-to-br.from-accent-600.to-accent-400:hover,
button.bg-gradient-to-br.from-accent-600.to-accent-400:hover {
  background-image: linear-gradient(to bottom right, var(--accent-700), var(--accent-500));
}
.bg-gradient-to-r.from-accent-600\/70.via-accent-400\/40.to-accent-700\/70 {
  background-image: linear-gradient(to right, rgba(99, 102, 241, 0.7), rgba(56, 232, 255, 0.4), rgba(124, 58, 237, 0.7));
}
.bg-gradient-to-tr.from-accent-600\/10.to-accent-400\/10 {
  background-image: linear-gradient(to top right, rgba(99, 102, 241, 0.1), rgba(56, 232, 255, 0.1));
}

/* ---------- Border radius ---------- */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[1\.4rem\] { border-radius: 1.4rem; }
.p-\[1px\] { padding: 1px; }

/* ---------- Effects ---------- */
.shadow-elevated { box-shadow: var(--shadow-elevated); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }

/* ---------- Transitions & hover ---------- */
.transition { transition-property: color, background-color, border-color, box-shadow; transition-duration: 0.15s; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition-property: all; transition-duration: 0.15s; }
.transition-transform { transition-property: transform; transition-duration: 0.15s; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-125:hover { transform: scale(1.25); }
.hover\:ring-2:hover { box-shadow: 0 0 0 2px var(--accent-500); }
.hover\:ring-accent-500:hover { box-shadow: 0 0 0 2px var(--accent-500); }
.hover\:ring-accent-400:hover { box-shadow: 0 0 0 2px var(--accent-400); }
.hover\:border-accent-500:hover { border-color: var(--accent-500); }
.hover\:border-accent-400:hover { border-color: var(--accent-400); }
.hover\:text-accent-400:hover { color: var(--accent-400); }
.hover\:text-accent-700:hover { color: var(--accent-700); }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-accent-600\/10:hover { background-color: rgba(99, 102, 241, 0.1); }
.hover\:shadow-accent:hover { box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); }
.hover\:shadow-accent\/30:hover { box-shadow: 0 0 24px rgba(56, 232, 255, 0.3); }
.hover\:from-accent-700:hover { --tw-gradient-from: #5b21b6; }
.hover\:to-accent-500:hover { --tw-gradient-to: var(--accent-500); }
.hover\:bg-accent-500\/20:hover { background-color: rgba(6, 182, 212, 0.2); }
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--accent-400); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(56, 232, 255, 0.5); }
.focus\:ring-accent-400\/50:focus { box-shadow: 0 0 0 4px rgba(56, 232, 255, 0.5); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.placeholder\:text-slate-400::placeholder { color: #94a3b8; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:pt-14 { padding-top: 3.5rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:gap-16 { gap: 4rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
}

/* ---------- Specific ---------- */
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.self-start { align-self: flex-start; }
.text-\[11px\] { font-size: 11px; }
.-top-2 { top: -0.5rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }

/* ---------- Animace bounce (náhrada Tailwind plugin) ---------- */
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
.animate-bounce-slow {
  animation: bounce 2.6s infinite;
}

/* Na mobilu bez „skáčícího“ tlačítka – menší CLS a zátěž */
@media (max-width: 639px) {
  .animate-bounce-slow {
    animation: none;
  }
}

/* ========== Původní vlastní styly indexu ========== */
/* Jméno v hero – stín pro lepší čitelnost háčku u Č (diakritika) */
section#hero h1 {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.9), 0 0 3px rgba(6, 182, 212, 0.8), 0 1px 2px rgba(15, 23, 42, 0.6);
}
body.index-light section#hero h1 {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 0 2px rgba(6, 182, 212, 0.6), 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Plynulý přechod světlý ↔ tmavý režim */
body,
body .bg-darkbg,
body .bg-darkcard,
body .border-darkborder,
.nav-index a,
.navbar-theme-btn {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Světlý režim na indexu */
body.index-light {
  background-color: #dde1e8 !important;
  /* v light režimu vypneme silný gradient z body, ať je text tyrkysovou lépe čitelný */
  background-image: none !important;
  color: #0f172a;
}
body.index-light .bg-darkbg {
  background-color: #dde1e8 !important;
}
body.index-light .bg-darkcard {
  background-color: #c8ced9 !important;
  border-color: #b0b8c4;
}
body.index-light .bg-darkcard\/70,
body.index-light .bg-darkcard\/90 {
  background-color: rgba(200, 206, 217, 0.95) !important;
  border-color: #b0b8c4;
}
body.index-light .border-darkborder {
  border-color: #b0b8c4;
}
body.index-light .text-slate-100 {
  color: #0f172a;
}
body.index-light section#hero h2,
body.index-light section#hero h2 span {
  color: #0891b2 !important;
}
body.index-light .text-slate-200 {
  color: #334155;
}
body.index-light .text-slate-300 {
  color: #475569;
}
body.index-light .text-slate-400 {
  color: #64748b;
}
/* v light režimu nahradíme tyrkysovou za tmavě modrou kvůli čitelnosti */
body.index-light .text-accent-400 {
  color: #1d4ed8;
}
body.index-light .nav-index a {
  background: rgba(200, 206, 217, 0.95);
  border-color: #b0b8c4;
  color: #334155;
}
body.index-light .nav-index a:hover {
  border-color: #06b6d4;
  color: #0891b2;
}

/* Animace položek navbaru */
@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav-index a {
  animation: navSlideIn 0.5s ease forwards;
}
.nav-index a:nth-child(1) { animation-delay: 0.05s; }
.nav-index a:nth-child(2) { animation-delay: 0.12s; }
.nav-index a:nth-child(3) { animation-delay: 0.19s; }
.nav-index a:nth-child(4) { animation-delay: 0.26s; }
.nav-index a:nth-child(5) { animation-delay: 0.33s; }
.nav-index a:nth-child(6) { animation-delay: 0.4s; }
.nav-index a:nth-child(7) { animation-delay: 0.47s; }
.nav-index a:nth-child(8) { animation-delay: 0.54s; }

/* Portfolio – dropdown „Náhled projektu“ (Webová vizitka): skrytý, zobrazí se jen při hoveru, položky pod sebou */
.vizitka-preview:hover {
  padding-bottom: 7rem; /* rozšíří hover oblast dolů, aby myš při přechodu na dropdown zůstala v oblasti */
  margin-bottom: -7rem; /* vyruší posun layoutu */
}
.vizitka-preview-inner {
  position: relative; /* kontext pro pozici dropdownu – výška jen tlačítko, ne padding */
}
.vizitka-dropdown {
  display: flex;
  flex-direction: column;
  top: 100%;
  left: 0;
  margin-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.vizitka-preview:hover .vizitka-dropdown {
  opacity: 1;
  visibility: visible;
}
.no-underline { text-decoration: none; }

/* ---------- Horní navbar ---------- */
.navbar-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--darkcard);
  border-bottom: 1px solid var(--darkborder);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  gap: 1rem;
}

.site-logo {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.site-logo:hover {
  opacity: 0.9;
}
.site-logo-img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 640px) {
  .site-logo-img {
    height: 2.5rem;
    max-width: 260px;
  }
}

.navbar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.navbar-link {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.2s, background-color 0.2s;
}

.navbar-link:hover {
  color: var(--accent-400);
  background: rgba(6, 182, 212, 0.08);
}

.navbar-theme-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid rgba(6, 182, 212, 0.6);
  background: var(--darkcard);
  color: var(--accent-400);
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.2s ease;
}

.navbar-theme-btn:hover {
  border-color: var(--accent-400);
  transform: scale(1.08);
}

/* Obsah pod fixním navbarem */
.navbar-top + div {
  padding-top: 3.5rem;
}

/* Světlý režim – navbar */
body.index-light .navbar-top {
  background: #c8ced9;
  border-bottom-color: #b0b8c4;
}
body.index-light .navbar-link {
  color: #334155;
}
body.index-light .navbar-link:hover {
  color: #0891b2;
  background: rgba(6, 182, 212, 0.1);
}

body.index-light .navbar-theme-btn {
  background: #dde1e8;
  border-color: #06b6d4;
  color: #0891b2;
}

body.index-light .navbar-theme-btn:hover {
  border-color: #0891b2;
  background: #c8ced9;
}

/* ---------- Cookie lišta ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0 1rem 1rem;
}

.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  border-radius: 0.75rem;
  background-color: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #e5e7eb;
}

@media (min-width: 640px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-text {
  max-width: 36rem;
  text-align: left;
}

.cookie-text a {
  color: var(--accent-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cookie-btn {
  flex: 1 0 120px;
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #38bdf8;
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-accept {
  border-color: var(--accent-500);
}

.cookie-btn-reject {
  border-color: #64748b;
}

.cookie-btn-accept:hover {
  background: var(--accent-500);
  color: #0f172a;
}

.cookie-btn-reject:hover {
  background: #1f2933;
  border-color: #94a3b8;
}
