/* Cookie consent banner — matches marketing trial.css tokens */

.mkc-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 16px;
  background: rgba(11, 20, 38, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 230, 118, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.mkc-consent-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mkc-consent-copy {
  flex: 1 1 320px;
  min-width: 0;
}

.mkc-consent-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.mkc-consent-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #cfd8dc;
  margin: 0;
}

.mkc-consent-text a {
  color: #00e676;
  text-decoration: underline;
}

.mkc-consent-text a:hover {
  color: #69f0ae;
}

.mkc-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.mkc-consent-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 99px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mkc-consent-btn:active {
  transform: scale(0.97);
}

.mkc-consent-btn-primary {
  background: #00e676;
  color: #0b1426;
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.25);
}

.mkc-consent-btn-primary:hover {
  box-shadow: 0 0 36px rgba(0, 230, 118, 0.4);
}

.mkc-consent-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.mkc-consent-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .mkc-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .mkc-consent-actions {
    flex-direction: column;
  }

  .mkc-consent-btn {
    width: 100%;
    text-align: center;
  }
}
