.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 16, 28, 0.94);
    border-top: 1px solid rgba(77, 141, 255, 0.2);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    flex-wrap: wrap;
    backdrop-filter: blur(14px) saturate(140%);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.cookie-text {
    font-size: 13.5px;
    color: #9aa7b2;
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
}

.cookie-text a {
    color: #4d8dff;
    text-decoration: none;
    border-bottom: 1px solid rgba(77, 141, 255, 0.35);
}

.cookie-text a:hover {
    color: #6ba8ff;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-accept {
    background: #4d8dff;
    color: #fff;
}

.cookie-accept:hover {
    background: #5c98ff;
}

.cookie-decline {
    background: transparent;
    color: #9aa7b2;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #d5dde4;
}
