.cookie-banner{

position:fixed;
bottom:0;
left:0;
width:100%;

background:linear-gradient(90deg,#0f0f0f,#1a1a1a);
color:white;

padding:18px 25px;

box-shadow:0 -5px 25px rgba(0,0,0,0.4);

z-index:9999;

font-size:14px;

}

.cookie-container{

max-width:1200px;
margin:auto;

display:flex;
align-items:center;
justify-content:space-between;

gap:20px;

}

.cookie-text{

max-width:70%;
line-height:1.6;

}

.cookie-text a{

color:#ff9a00;
font-weight:600;
text-decoration:none;

}

.cookie-buttons{

display:flex;
gap:10px;

}

.btn-cookie{

border:none;
padding:10px 18px;
border-radius:6px;
cursor:pointer;
font-weight:600;
transition:0.3s;

}

.accept{

background:#ff9a00;
color:white;

}

.accept:hover{

background:#ff7a00;

}

.reject{

background:#444;
color:white;

}

.reject:hover{

background:#666;

}

@media(max-width:768px){

.cookie-container{

flex-direction:column;
align-items:flex-start;

}

.cookie-text{

max-width:100%;

}

}