/* Cookie Consent Banner - Dark Theme */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 23, 47, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid #4a5578;
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.cookie-text {
  color: #c5cae0;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.cookie-text a {
  color: #8a9fca;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
}

.cookie-text a:hover {
  color: #fff;
  border: none;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
  background: transparent;
}

.cookie-btn.accept {
  background-color: #5a6fa0;
  border: 1px solid #5a6fa0;
  color: #fff;
}

.cookie-btn.accept:hover {
  background-color: #6b7fa8;
  border-color: #8a9fca;
  box-shadow: 0 0 15px rgba(138, 159, 202, 0.2);
}

.cookie-btn.decline {
  border: 1px solid #4a5578;
  color: #a8adc7;
}

.cookie-btn.decline:hover {
  border-color: #8a9fca;
  color: #fff;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-text {
    max-width: 70%;
    margin-right: auto;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }
}