
.gc {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9000;
    margin: 0 auto;
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.05rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: #16171b;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.gc[hidden] { display: none; }
.gc-text {
    flex: 1 1 280px;
    margin: 0;
    font-size: .8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .74);
}
.gc-text a {
    color: rgba(255, 255, 255, .92);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.gc-actions {
    display: flex;
    gap: .5rem;
    margin-left: auto;
}
.gc-btn {
    padding: .5rem .95rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    font: inherit;
    font-size: .8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.gc-btn:hover {
    border-color: rgba(255, 255, 255, .36);
    color: #fff;
}
.gc-btn-yes {
    border-color: transparent;
    background: #35c96a;
    color: #0b1a11;
    font-weight: 600;
}
.gc-btn-yes:hover {
    background: #2bb75a;
    color: #0b1a11;
}
@media (max-width: 520px) {
    .gc { flex-direction: column; align-items: stretch; }
    .gc-text { flex: 0 0 auto; }
    .gc-actions { margin-left: 0; }
    .gc-btn { flex: 1; }
}
