#cookieConsent{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 900px);
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(76, 201, 240, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  animation: slideUp 0.6s ease;
}

#cookieConsent p{
  margin: 0;
  font-size: 14px;
  color: #b6c2cf;
  line-height: 1.4;
}

#cookieConsent a{
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

#cookieConsent a:hover{
  text-decoration: underline;
}

#acceptCookies{
  background: linear-gradient(135deg, #ffd400, #ffb700);
  color: #000;
  font-weight: 800;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(255, 212, 0, 0.25);
}

#acceptCookies:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.35);
}

#acceptCookies:active{
  transform: scale(0.97);
}

@keyframes slideUp{
  from{
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to{
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive adjustments */

@media (max-width: 600px){
  #cookieConsent{
    flex-direction: column;
    text-align: center;
    padding: 14px;
  }

  #acceptCookies{
    width: 100%;
  }
}