:root {
  --primary-bg: #13111C;
  --secondary-bg: #1E1B2E;
  --accent: rgb(61, 106, 255);
  --text-clr: rgba(255, 255, 255, 0.7);
  --gradient: linear-gradient(90deg, #5f94ff, #0900ab);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --card-border: 1px solid rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(30, 27, 46, 0.95);
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

#cookie__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-bg);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#cookie__banner.show {
  transform: translateY(0);
}

#cookie__banner.hide {
  transform: translateY(100%);
}

#cookie__banner.hidden {
  display: none;
}

.cookie__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie__icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

#cookie__banner h4 {
  color: white;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

#cookie__banner p {
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.button__group {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

#cookie__banner button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

#cookie__banner button:hover {
  transform: translateY(-1px);
}

#cookie__banner button:active {
  transform: translateY(0);
}

#accept__cookies {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 12px rgba(95, 148, 255, 0.25);
}

#accept__cookies:hover {
  box-shadow: 0 6px 16px rgba(95, 148, 255, 0.35);
}

#decline__cookies {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-clr);
  backdrop-filter: blur(10px);
}

#decline__cookies:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
  .button__group {
      flex-direction: column;
  }
  
  #cookie__banner button {
      width: 100%;
  }

  #cookie__banner {
      padding: 1.25rem;
  }
}