.cookie-settings-btn {
    border: 0;
    border-bottom: 1px dashed rgba(147, 197, 253, 0.45);
    border-radius: 0;
    background: transparent;
    color: #93c5fd;
    padding: 0.15rem 0;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.2;
}

.cookie-settings-btn:hover {
    border-bottom-color: rgba(191, 219, 254, 0.85);
    color: #ffffff;
}

.cookie-consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1900;
}

.cookie-consent-modal {
    position: fixed;
    inset-inline: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(440px, calc(100vw - 24px));
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    box-shadow: 0 24px 45px rgba(2, 6, 23, 0.5);
    z-index: 1910;
    padding: 0.95rem;
}

.cookie-consent-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.cookie-consent-head h3 {
    margin: 0;
    color: #e2e8f0;
    font-size: 1rem;
}

.cookie-consent-close {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(30, 41, 59, 0.62);
    color: #e2e8f0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
}

.cookie-consent-text {
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.7;
    margin: 0;
}

.cookie-consent-actions {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.cookie-consent-actions .btn {
    margin: 0;
    width: 100%;
}

@media (max-width: 560px) {
    .cookie-consent-actions {
        grid-template-columns: 1fr;
    }
}
