/* Minimal, theme-friendly banner */
.gcb { position: fixed; z-index: 99999; left: 0; right: 0; bottom: 0; padding: 16px; display: flex; justify-content: center; opacity: 1; transform: translateY(0); transition: opacity 180ms ease, transform 180ms ease; }
.gcb--hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
.gcb--covered { opacity: 0; transform: translateY(12px); pointer-events: none; }
.gcb__panel { width: min(720px, 100%); background: rgba(0,0,0,0.92); color: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 14px 14px 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.gcb__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gcb__row--top { margin-bottom: 8px; }
.gcb__title { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }
.gcb__subtitle { font-size: 12px; opacity: 0.75; }
.gcb__text { margin: 0 0 12px; opacity: 0.92; font-size: 14px; }
.gcb__choices { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.gcb__choice { display: flex; gap: 10px; align-items: center; font-size: 14px; opacity: 0.95; }
.gcb__choice input { transform: translateY(1px); }
.gcb__row--buttons { justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.gcb__btn { appearance: none; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; padding: 8px 12px; border-radius: 10px; cursor: pointer; font-size: 13px; }
.gcb__btn:hover { background: rgba(255,255,255,0.10); }
.gcb__btn--primary { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.28); }
.gcb__btn--primary:hover { background: rgba(255,255,255,0.24); }

/* Modal */
.gcbm { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; padding: 18px; opacity: 1; transition: opacity 160ms ease; }
.gcbm--hidden { opacity: 0; pointer-events: none; }
.gcbm__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.gcbm__panel { position: relative; width: min(720px, 100%); background: rgba(0,0,0,0.94); color: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 14px 14px 12px; box-shadow: 0 16px 50px rgba(0,0,0,0.55); }
.gcbm__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gcbm__row--top { margin-bottom: 10px; }
.gcbm__title { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }
.gcbm__x { background: transparent; color: #fff; border: 0; font-size: 22px; line-height: 1; cursor: pointer; opacity: 0.8; }
.gcbm__x:hover { opacity: 1; }
.gcbm__text { margin: 0 0 12px; opacity: 0.92; font-size: 14px; }
.gcbm__choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.gcbm__choice { display: grid; grid-template-columns: 18px 1fr auto; gap: 10px; align-items: start; font-size: 14px; opacity: 0.95; }
.gcbm__choice input { transform: translateY(2px); }
.gcbm__choice em { font-style: normal; font-size: 12px; opacity: 0.7; padding-left: 10px; }
.gcbm__choice--disabled { opacity: 0.7; }
.gcbm__row--buttons { justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.gcbm__btn { appearance: none; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; padding: 8px 12px; border-radius: 10px; cursor: pointer; font-size: 13px; }
.gcbm__btn:hover { background: rgba(255,255,255,0.10); }
.gcbm__btn--primary { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.28); }
.gcbm__btn--primary:hover { background: rgba(255,255,255,0.24); }

/* Embed placeholder */
.gcb-embed-placeholder { display: flex; align-items: center; justify-content: center; min-height: 120px; padding: 18px; margin: 12px 0; border-radius: 14px; border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.55); }
.gcb-embed-enable { appearance: none; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; padding: 10px 14px; border-radius: 12px; cursor: pointer; font-size: 13px; }
.gcb-embed-enable:hover { background: rgba(255,255,255,0.10); }
