.cc-blocker {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #ffffff7d;
    z-index: 999996;
}
.cc-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    background: #333333;
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    max-width: 900px;
    margin: 0 auto;
    z-index: 999997;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 14px;
}
.cc-text {
    flex: 1 1 auto;
    min-width: 0;
}
.cc-details-wrap {
    flex-basis: 60%;
}
.cc-details {
    font-size:13px;
    color:#ddd;
}
.cc-details a {
    color:#fff;
    text-decoration:underline;
}
.cc-actions {
    display:flex;
    gap: 0.5rem;
    flex-shrink:0;
}
.cc-btn {
    appearance: none;
    border: 0;
    padding: .5rem .8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}
.cc-accept {
    background: white;
    color: #111;
}
.cc-more {
    background: transparent;
    color: #ddd !important;
    border: 1px solid rgba(255,255,255,0.08);
}
.cc-more:visited {
    color: #ddd !important;
}
.cc-modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    z-index: 999998;
}
.cc-modalContent {
    position: relative;
    background-color: #fefefe;
    margin: 1% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    height: 90%;
    border-radius: 8px;
}
.cc-modalClose {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 32px;
    height: 32px;
    padding: 8px;
    cursor: pointer;
    z-index: 999999;
}
.cc-modalIframe {
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}
@media (max-width:420px){
    .cc-banner{ flex-direction:column; align-items:stretch }
    .cc-actions{ justify-content:flex-end }
}