.cookie-banner{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 420px;
    max-width: calc(100% - 40px);
    background: #061329;
    color: #fff;
    border-radius: 12px;
    padding: 18px;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0,0,0,.30);
}

.cookie-content h3{
    margin: 0 0 10px;
    font-size: 18px;
}

.cookie-content p{
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.cookie-content a{
    color: #53b7ff;
    text-decoration: none;
    font-weight: 600;
}

.cookie-buttons{
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn-cookie{
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.primary{
    background: #0B63CE;
    color: #fff;
}

.primary:hover{
    background: #0952aa;
}

.secondary{
    background: #f2f2f2;
    color: #222;
}

.secondary:hover{
    background: #ddd;
}

@media (max-width: 600px){
    .cookie-banner{
        left: 15px;
        right: 15px;
        width: auto;
        bottom: 15px;
    }

    .cookie-buttons{
        flex-direction: column;
    }
}