.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #f4f4f4;
    color: #333;
    max-width: 320px;
    box-shadow: 24px 8px 20px rgba(0,0,0,0.2);
    padding: 20px 20px;
    z-index: 9999;
    font-size: 1rem;
    animation: slideInRight 0.4s ease-out;
}
  
.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}
  
.cookie-title {
    background: linear-gradient(90deg, #ff992d, #ff25cc, #ff992d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 5s infinite ease-in-out alternate;
    font-size: 1.4rem;
    margin: 0;
}

.cookie-text {
    line-height: 1.2;
}
  
.cookie-text a {
    color: #333;
    text-decoration: underline;
}
  
.cookie-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90%;
}
  
.cookie-buttons button {
    width: 100%;
    background: #3998f7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
  
.cookie-buttons button:hover {
    background: #0e66be;
}
  
@keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .cookie-banner {
      left: 50%;
      bottom: 20px;
      transform: translateX(-50%);
      max-width: 90%;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      animation: slideInBottom 0.4s ease-out;
    }
  }
  
  @keyframes slideInBottom {
    from {
      opacity: 0;
      transform: translate(-50%, 100%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  