/* ============================================
   COOKIE CONSENT BANNER — Styles
   ADDED: Cookie consent styling
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  padding: 0 20px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

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

.cookie-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 200, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.08);
}

.cookie-banner__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--yellow, #F5C800);
}

.cookie-banner__text {
  flex: 1;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: #ccc;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--yellow, #F5C800);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.cookie-banner__link:hover {
  border-bottom-color: var(--yellow, #F5C800);
}

.cookie-banner__accept {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--yellow, #F5C800);
  color: #0D0D0D;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
}

.cookie-banner__accept:hover {
  background: #FFE066;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }

  .cookie-banner__icon {
    margin: 0 auto;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}
