/* landing-token: 6e8a */
#fk-consent-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1B2A4A;
  color: rgba(255,255,255,0.88);
  padding: 20px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  border-top: 3px solid #C9A84C;
}

#fk-consent-bar p {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  flex: 1;
  min-width: 240px;
}

#fk-consent-bar p a {
  color: #C9A84C;
  text-decoration: underline;
}

#fk-consent-bar p a:hover {
  color: #d9bb72;
}

.fk-consent-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#fk-consent-accept {
  background: #C9A84C;
  color: #1B2A4A;
  border: 2px solid #C9A84C;
  padding: 9px 22px;
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#fk-consent-accept:hover {
  background: #a8873b;
  border-color: #a8873b;
  color: #fff;
}

#fk-consent-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 9px 22px;
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

#fk-consent-reject:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

@media (max-width: 600px) {
  #fk-consent-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px;
  }

  .fk-consent-btns {
    width: 100%;
  }

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