.cookie-box{

position:fixed;

bottom:30px;

left:50%;

transform:translateX(-50%);

z-index:9999999;

width:90%;

max-width:520px;


background:
linear-gradient(
145deg,
rgba(20,20,35,.95),
rgba(5,5,15,.95)
);


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


border-radius:25px;


box-shadow:
0 25px 70px rgba(0,0,0,.8);


backdrop-filter:blur(20px);


padding:25px;

color:white;

}



.cookie-inner h2{

margin-top:0;

background:
linear-gradient(
90deg,#ff2f92,#7c2cff
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.cookie-inner p{

color:#cbd5e1;

line-height:1.6;

}



.cookie-options{

display:flex;

gap:25px;

margin:20px 0;

}



.cookie-buttons{

display:flex;

gap:15px;

}



.cookie-buttons button{

flex:1;

border:0;

padding:14px;

border-radius:14px;

cursor:pointer;

color:white;

font-weight:bold;

}



#only{

background:#334155;

}



#all{

background:
linear-gradient(
135deg,
#ff2f92,
#7c2cff
);

}




@media(max-width:600px){


.cookie-buttons,
.cookie-options{

flex-direction:column;

}


}