body {
  margin: 0;
  padding: 0;
  background-image: url("./assets/image");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.logo-gradient {
  background: linear-gradient(135deg, #00d4ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-gradient {
  box-shadow: rgba(250, 101, 250, 0.44) 0px 1px 7rem;
  background: rgb(25, 27, 26);
  border-radius: 17px;
  max-width: 35rem;
  width: 100%;
  border-color: rgb(39, 39, 39);
  /* border: 1px solid rgba(75, 85, 99, 0.3); */
}

.button-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
}

.button-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tab-active {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
}

.tab-inactive {
  background: transparent;
  color: #9ca3af;
}

.error-card {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.info-card {
  background: rgba(59, 131, 246, 0.512);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.hexagon-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.upload-area {
  border: 2px dashed rgba(75, 85, 99, 0.5);
  transition: all 0.3s ease;
}

.upload-area:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 1px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

