.cio-cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    padding: 16px;
    pointer-events: none;
}

.cio-cookie-consent[hidden],
.cio-cookie-consent.cio-cookie-consent--hidden {
    display: none !important;
    pointer-events: none !important;
}

.cio-cookie-consent:not([hidden]):not(.cio-cookie-consent--hidden) {
    pointer-events: auto;
}

.cio-cookie-consent__panel {
    width: min(960px, 100%);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 200, 255, 0.22);
    background: linear-gradient(165deg, rgba(13, 18, 32, 0.98) 0%, rgba(8, 10, 18, 0.99) 100%);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 200, 255, 0.08);
    color: #fff;
}

.cio-cookie-consent__text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.cio-cookie-consent__text a {
    color: #00c8ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cio-cookie-consent__text a:hover {
    color: #7ee7ff;
}

.cio-cookie-consent__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.cio-cookie-consent__check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #00c8ff;
    flex-shrink: 0;
}

.cio-cookie-consent__check a {
    color: #00c8ff;
    text-decoration: underline;
}

.cio-cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c8ff 0%, #0099cc 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cio-cookie-consent__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cio-cookie-consent__btn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.28);
}

@media (max-width: 640px) {
    .cio-cookie-consent {
        padding: 12px;
    }

    .cio-cookie-consent__panel {
        padding: 16px;
    }

    .cio-cookie-consent__btn {
        width: 100%;
    }
}
