/* Game Day Cue cookie consent banner — matches brand (cream/navy/green). */
.gdc-cc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 50, 77, 0.32);
  z-index: 2147483646;
  display: none;
}
.gdc-cc-backdrop[data-visible="true"] { display: block; }

.gdc-cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  color: #17324D;
  border: 1px solid #E2DCC9;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(23, 50, 77, 0.22);
  padding: 20px 22px;
  z-index: 2147483647;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.gdc-cc-banner[data-visible="true"] { display: block; }

.gdc-cc-banner h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #17324D;
}
.gdc-cc-banner p {
  margin: 0 0 14px;
  color: #3C5067;
}
.gdc-cc-banner a { color: #2F6F5E; text-decoration: underline; }

.gdc-cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.gdc-cc-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: inherit;
}
.gdc-cc-btn-primary { background: #2F6F5E; color: #FFFFFF; }
.gdc-cc-btn-primary:hover { background: #275f50; }
.gdc-cc-btn-secondary { background: #F2EDE0; color: #17324D; border-color: #E2DCC9; }
.gdc-cc-btn-secondary:hover { background: #ece4d2; }
.gdc-cc-btn-ghost { background: transparent; color: #3C5067; }
.gdc-cc-btn-ghost:hover { color: #17324D; }

.gdc-cc-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #E2DCC9;
  display: none;
}
.gdc-cc-banner[data-mode="custom"] .gdc-cc-detail { display: block; }

.gdc-cc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #E2DCC9;
}
.gdc-cc-row:last-child { border-bottom: none; }
.gdc-cc-row label {
  font-weight: 600;
  color: #17324D;
  cursor: pointer;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gdc-cc-row label span {
  color: #7A8896;
  font-weight: 400;
  font-size: 12px;
}
.gdc-cc-row input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #2F6F5E;
}
.gdc-cc-row input[type="checkbox"][disabled] { opacity: 0.5; }

@media (max-width: 520px) {
  .gdc-cc-banner { padding: 18px; }
  .gdc-cc-actions { justify-content: stretch; }
  .gdc-cc-actions .gdc-cc-btn { flex: 1; }
}
