#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a1a1a;
  color: #f5f5f5;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#cookie-consent-banner.ccb-visible {
  transform: translateY(0);
}
.ccb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ccb-text {
  flex: 1 1 260px;
  min-width: 0;
}
.ccb-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #ffffff;
}
.ccb-text p {
  margin: 0;
  color: #cccccc;
  font-size: 13px;
}
.ccb-text a {
  color: #e8a020;
  text-decoration: underline;
}
.ccb-text a:hover {
  color: #ffb940;
}
.ccb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.ccb-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.ccb-btn-accept {
  background: #e8a020;
  color: #1a1a1a;
  border-color: #e8a020;
}
.ccb-btn-accept:hover {
  background: #ffb940;
  border-color: #ffb940;
}
.ccb-btn-decline {
  background: transparent;
  color: #aaaaaa;
  border-color: #555555;
}
.ccb-btn-decline:hover {
  color: #f5f5f5;
  border-color: #888888;
}

@media (max-width: 600px) {
  .ccb-inner {
    padding: 14px 16px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .ccb-text {
    flex: none;
  }
  .ccb-actions {
    flex-direction: row;
    width: 100%;
  }
  .ccb-btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-size: 15px;
  }
}
