/* Bannière de cookies KUCK - Design cohérent avec le site */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #090b14 0%, #1a1d2e 100%);
  border-top: 2px solid #00f0ff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 240, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text a {
  color: #00f0ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-text a:hover {
  color: #ff2d75;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00f0ff 0%, #0099cc 100%);
  color: #090b14;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #00d4e6 0%, #0088bb 100%);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #666;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00f0ff;
  color: #00f0ff;
}

.cookie-close {
  background: none;
  border: none;
  color: #666;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: #ff2d75;
}

/* Responsive */
@media (max-width: 768px) {
  #cookie-banner {
    padding: 15px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-text {
    min-width: auto;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-btn {
    font-size: 11px;
    padding: 8px 16px;
  }
}
