.cookie-banner{

    position:fixed;

    bottom:20px;
    left:20px;

    width:420px;

    background:
        rgba(15,23,42,0.96);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:24px;

    padding:22px;

    z-index:99999;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35);

}

.cookie-banner.hidden{

    display:none;

}

.cookie-banner h3{

    color:white;

    font-size:18px;

    margin-bottom:12px;

}

.cookie-banner p{

    color:#94a3b8;

    line-height:1.7;

    font-size:14px;

    margin-bottom:18px;

}

.cookie-actions{

    display:flex;

    gap:12px;

    align-items:center;

}

.cookie-button{

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #16a34a
        );

    border:none;

    padding:12px 18px;

    border-radius:14px;

    color:white;

    cursor:pointer;

    font-weight:600;

}

.cookie-links{

    display:flex;

    gap:14px;

}

.cookie-links a{

    color:#94a3b8;

    text-decoration:none;

    font-size:13px;

}

.cookie-links a:hover{

    color:white;

}

@media(max-width:768px){

    .cookie-banner{

        width:
            calc(100% - 40px);

        left:20px;
        right:20px;

        bottom:20px;

    }

}