/* ==========================================================================
   CANNA-PLANET CSC – High-End Apple Style & Brutalist Dark Theme Stylesheet
   ========================================================================== */

:root {
  --bg-dark: #070809;
  --surface: #101114;
  --surface-card: #15171c;
  --surface-border: rgba(255, 255, 255, 0.12);
  --neon: #77e969;
  --neon-hover: #8bf17e;
  --neon-dim: rgba(119, 233, 105, 0.15);
  --neon-glow: rgba(119, 233, 105, 0.45);
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --font-display: 'Plus Jakarta Sans', 'Archivo', sans-serif;
  --font-bebas: 'Archivo', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Allow text selection in form inputs and textareas */
input, textarea, [contenteditable="true"] {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

/* Mouse cursor pointer on EVERY tile / card */
.stat-pill,
.dock-card,
.strain-card,
.torn-card,
.hud-pill,
.faq-item,
.age-card,
.device-container,
[class*="bg-surface"]:not(body):not(section):not(nav):not(header):not(main):not(#mobile-menu),
[class*="bg-surface-card"],
.bg-surface,
.bg-surface-card,
[class*="rounded-2xl"]:not(input):not(textarea):not(button):not(a):not(span),
[class*="rounded-3xl"]:not(input):not(textarea):not(button):not(a):not(main):not(body):not(section):not(#mobile-menu),
.card,
[class*="card"] {
  cursor: pointer !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-dark);
  font-family: var(--font-body);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Apple-Grade Typography Helpers */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.font-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.font-bebas {
  font-family: var(--font-bebas);
  letter-spacing: -0.02em;
  font-weight: 900;
  text-transform: uppercase;
}

.text-neon {
  color: var(--neon);
}

.bg-neon {
  background-color: var(--neon);
}

.bg-neon-hover:hover {
  background-color: var(--neon-hover);
}

.bg-surface {
  background-color: var(--surface);
}

.text-muted {
  color: var(--text-muted);
}

/* Brutalist Outline Typography (Matching "DER GRÜNDER" & "CSC") */
.text-stroke-white {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
  color: transparent;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.text-stroke-neon {
  -webkit-text-stroke: 1.5px var(--neon);
  color: transparent;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.text-stroke-none {
  -webkit-text-stroke: 0px !important;
}

/* Neon Glows & Shadows */
.shadow-neon {
  box-shadow: 0 0 25px var(--neon-glow);
}

.shadow-neon-lg {
  box-shadow: 0 0 50px var(--neon-glow);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #08090a;
}
::-webkit-scrollbar-thumb {
  background: #22262d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon);
}

/* Ambient Cursor Lighting */
#ambient-glow {
  transition: transform 0.15s ease-out, opacity 0.3s ease;
}

@media (pointer: coarse) {
  #ambient-glow {
    display: none;
  }
}

/* High-End Apple Floating Header & Navigation */
.header-inner {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled .header-inner {
  background-color: rgba(9, 11, 14, 0.95);
  border-color: rgba(119, 233, 105, 0.3);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(119, 233, 105, 0.1);
  transform: translateY(-2px);
}

.nav-pill {
  position: relative;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-pill:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-pill.active {
  color: #77e969;
  background-color: rgba(119, 233, 105, 0.12);
}

/* Tilted Brutalist Stickers (Inspired by Card 6 "DEIN LOKALER CSC") */
.badge-brutalist {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.sticker-badge {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(12deg);
  }
  50% {
    transform: translateY(-8px) rotate(10deg);
  }
}

/* Slow Concentric Doodles */
.animate-spin-slow {
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-ping-slow {
  animation: pingSlow 4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingSlow {
  75%, 100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* Hero Floating HUD Elements & Marquee */
.hud-pill {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hud-pill:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(119, 233, 105, 0.8);
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatDelayed {
  0%, 100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(4px);
  }
}

.animate-float-slow {
  animation: floatSlow 5s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatDelayed 6s ease-in-out infinite;
}


/* ==========================================================================
   CINEMATIC APPLE-STYLE PINNED SHOWCASE: BUD & DOCKING CARDS
   ========================================================================== */

#story-showcase {
  position: relative;
  background-color: #000000;
}

#pinned-showcase-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #0b0e0c 0%, #000000 70%);
}

.stage-grid {
  perspective: 1200px;
}

#hero-bud-wrapper {
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

#hero-bud-disc {
  will-change: transform;
  transform-style: preserve-3d;
}

#hero-bud-img {
  will-change: transform, filter;
  filter: drop-shadow(0 25px 50px rgba(119, 233, 105, 0.35)) contrast(1.08);
}

.dock-card {
  will-change: transform, opacity;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85), 0 0 25px rgba(119, 233, 105, 0.08);
}

.dock-card:hover {
  border-color: rgba(119, 233, 105, 0.6);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(119, 233, 105, 0.25);
}

/* Responsive Mobile Rules for Pinned Showcase */
@media (max-width: 1023px) {
  #story-showcase {
    min-height: 360vh;
  }

  #pinned-showcase-viewport {
    height: 100vh;
    height: 100dvh;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .stage-header {
    padding-top: 4.25rem !important; /* safe clearance under fixed mobile navbar */
    max-width: 100% !important;
  }

  .stage-header h2 {
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
  }

  #showcase-subtitle {
    font-size: 0.75rem !important;
  }

  .stage-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: auto !important;
    gap: 0.25rem !important;
    perspective: 1000px;
  }

  .showcase-left-col,
  .showcase-right-col {
    display: contents !important;
  }

  .showcase-center-col {
    grid-row: 1 !important;
    grid-column: 1 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  #hero-bud-img {
    width: 175px !important;
    max-width: 185px !important;
    max-height: 185px !important;
  }

  #hero-bud-wrapper {
    margin-bottom: 1.6rem !important;
  }

  #bud-ambient-halo {
    width: 220px !important;
    height: 220px !important;
  }

  #bud-live-badge {
    bottom: -1.15rem !important;
    font-size: 9px !important;
    padding: 0.2rem 0.65rem !important;
  }

  #mobile-step-indicators {
    grid-row: 2 !important;
    grid-column: 1 !important;
  }

  .dock-card {
    grid-row: 3 !important;
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    padding: 0.85rem 1rem !important;
    border-radius: 1rem !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }

  .dock-card h3 {
    font-size: 0.95rem !important;
  }

  .dock-card p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  .stage-footer {
    padding-bottom: 0.25rem !important;
    gap: 0.35rem !important;
  }
}

@media (max-height: 680px) and (max-width: 1023px) {
  .stage-header {
    padding-top: 3.5rem !important;
  }
  .stage-header h2 {
    font-size: 1.35rem !important;
  }
  #showcase-subtitle {
    display: none !important;
  }
  #hero-bud-img {
    width: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
  }
  #hero-bud-wrapper {
    margin-bottom: 1.2rem !important;
  }
  .dock-card {
    padding: 0.65rem 0.85rem !important;
  }
  .dock-card p {
    font-size: 0.68rem !important;
  }
}

/* Torn Paper Card Style (Matching Card 8 CSC GRASBERG / Membership) */
.torn-card {
  position: relative;
  background: var(--surface-card);
  transition: all 0.35s ease;
}

.torn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.08) 8px,
    rgba(255, 255, 255, 0.08) 16px
  );
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

/* Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon);
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon);
  border: 3px solid #000;
  transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon);
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon);
  border: 3px solid #000;
}

/* Dialog Backdrop */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

/* Device Mockups */
.device-container {
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(119, 233, 105, 0.08);
}

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

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* ==========================================================================
   COOKIE BANNER & PRIVACY CONSENT MANAGER (DSGVO / TDDDG)
   ========================================================================== */

/* Floating Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 45; /* Under age gate (50) until verified, above normal content */
  width: calc(100% - 48px);
  max-width: 440px;
  background: rgba(16, 17, 20, 0.94);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(119, 233, 105, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  pointer-events: none;
}

.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-banner-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.cookie-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(119, 233, 105, 0.12);
  border: 1px solid rgba(119, 233, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
}

.cookie-icon-wrapper-sm {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(119, 233, 105, 0.12);
  border: 1px solid rgba(119, 233, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
}

.cookie-svg {
  width: 22px;
  height: 22px;
}

.cookie-kcg-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--neon);
  background: rgba(119, 233, 105, 0.1);
  border: 1px solid rgba(119, 233, 105, 0.25);
  border-radius: 9999px;
  padding: 2px 8px;
  margin-bottom: 4px;
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.cookie-banner-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.cookie-banner-text a {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: var(--neon-hover);
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn-group-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.cookie-btn-accept {
  background: var(--neon);
  color: #070809;
  box-shadow: 0 4px 18px rgba(119, 233, 105, 0.35);
}

.cookie-btn-accept:hover {
  background: var(--neon-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(119, 233, 105, 0.5);
}

.cookie-btn-deny {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
}

.cookie-btn-deny:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.cookie-btn-settings {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 8px 12px;
}

.cookie-btn-settings:hover {
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: rgba(16, 17, 20, 0.96);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(119, 233, 105, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal.active .cookie-modal-card {
  transform: scale(1) translateY(0);
}

.cookie-modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

.cookie-modal-header {
  padding: 22px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.cookie-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.4rem;
  line-height: 1;
}

.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.cookie-modal-body {
  padding: 22px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-modal-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Category item */
.cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  transition: border-color 0.25s ease;
}

.cookie-category:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}

.cookie-category-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-badge-required {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(119, 233, 105, 0.12);
  color: var(--neon);
  border: 1px solid rgba(119, 233, 105, 0.3);
}

.cookie-category-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Switch Toggle UI */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #ffffff;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--neon);
  border-color: var(--neon);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background-color: #070809;
}

.cookie-toggle input:disabled + .cookie-slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 16px 28px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 15, 0.6);
}

/* Floating Revocation Trigger Button (Bottom Left) */
.cookie-trigger-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 17, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(119, 233, 105, 0.1);
}

.cookie-trigger-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.cookie-trigger-btn:hover {
  background: rgba(25, 28, 34, 0.95);
  border-color: rgba(119, 233, 105, 0.4);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(119, 233, 105, 0.25);
}

.cookie-trigger-btn:hover svg {
  transform: rotate(20deg);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 20px;
    border-radius: 20px;
  }
  .cookie-trigger-btn {
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
  }
  .cookie-btn-group-primary {
    grid-template-columns: 1fr;
  }
  .cookie-modal-card {
    border-radius: 22px;
  }
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cookie-modal-footer {
    flex-direction: column-reverse;
  }
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

