* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Archivo";
}

img {
  width: 100%;
  height: auto;
}

.back {
  position: sticky;
  top: 40px;
  width: 100%;
  height: 80px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back > a {
  width: 180px;
  text-decoration: none;
}

.back > a:hover {
  transform: scale(1.1);
}

.back > a:active {
  transform: scale(0.9);
}

.back > a > button {
  width: 100%;
  height: 80px;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 24px;
  color: #b8b8b8;
  cursor: pointer;
}

.back > a > button > svg {
  width: 50px;
}
.rotated {
  transform: rotate(180deg);
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
  min-width: 140px;
}

.btn-primary {
  background: linear-gradient(135deg, #008812, #00cc44);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 136, 18, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00cc44, #00ff55);
  box-shadow: 0 6px 20px rgba(0, 204, 68, 0.5);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 136, 18, 0.3);
}

.btn:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn:disabled:hover {
  background: #333;
  color: #666;
  box-shadow: none;
  transform: none;
}

@keyframes glow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(76, 175, 80, 0.3);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(76, 175, 80, 0.6);
  }
}

@keyframes appear {
  to {
    opacity: 1;
  }
}

@keyframes appearButton {
  to {
    opacity: 1;
    translate: 0px;
  }
}
