.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.96);
    color: #f8fafc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-consent-banner[hidden] {
    display: none !important;
}

.cookie-consent-text {
    margin: 0;
    line-height: 1.45;
    font-size: 14px;
    flex: 1;
}

.cookie-consent-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    border: 0;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #2563eb;
    color: #fff;
}

.cookie-consent-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px;
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: flex-end;
    }
}
