/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 30, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-banner .cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

#cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 0 1 auto;
  white-space: nowrap;
}

#cookie-banner p a {
  color: #902bf1;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#cookie-banner p a:hover {
  color: #b24fff;
}

#cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

#cookie-banner button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#accept-cookies {
  background: linear-gradient(135deg, #902bf1 0%, #b24fff 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(144, 43, 241, 0.3);
}

#accept-cookies:hover {
  background: linear-gradient(135deg, #b24fff 0%, #ff6ec7 100%);
  box-shadow: 0 6px 16px rgba(144, 43, 241, 0.4);
  transform: translateY(-2px);
}

#accept-cookies:active {
  transform: translateY(0);
}

#reject-cookies {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

#reject-cookies:active {
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #cookie-banner {
    padding: 20px 16px;
  }

  #cookie-banner .cookie-banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
  }

  #cookie-banner p {
    font-size: 13px;
    text-align: left;
    white-space: normal;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  #cookie-banner .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  #cookie-banner button {
    flex: 1;
    min-width: 120px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #cookie-banner .cookie-banner-buttons {
    flex-direction: column;
  }

  #cookie-banner button {
    width: 100%;
  }
}

