#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0d2330;
  border-top: 1px solid rgba(42, 167, 184, 0.35);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

#cookie-banner.hidden {
  display: none;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
}

#cookie-banner a {
  color: #2aa7b8;
  text-decoration: underline;
}

#cookie-banner a:hover {
  color: #4dc4d4;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-accept {
  background: #2aa7b8;
  color: #ffffff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-accept:hover {
  background: #239aaa;
}

#cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

#cookie-reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .cookie-buttons {
    width: 100%;
  }

  #cookie-accept,
  #cookie-reject {
    flex: 1;
    text-align: center;
  }
}
