body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.setup-container {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 30px;
  margin: 20px auto;
  max-width: 800px;
  color: white;
  backdrop-filter: blur(10px);
}

.setup-title {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 218, 247, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.setup-list {
  margin-top: 40px;
}

.setup-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 218, 247, 0.1);
}

.setup-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 218, 247, 0.3);
  box-shadow: 0 0 20px rgba(0, 218, 247, 0.2);
}

.item-icon {
  font-size: 2em;
  margin-right: 20px;
  min-width: 50px;
  text-align: center;
}

.item-content {
  flex: 1;
}

.item-title {
  color: #00daf7;
  font-size: 1.2em;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.item-spec {
  color: white;
  font-size: 1.1em;
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.specs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 218, 247, 0.2);
  color: #00daf7;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(0, 218, 247, 0.2); }
  50% { box-shadow: 0 0 20px rgba(0, 218, 247, 0.4); }
  100% { box-shadow: 0 0 5px rgba(0, 218, 247, 0.2); }
}

.setup-card:hover .specs-badge {
  animation: glow 2s infinite;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.setup-item {
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}

.setup-item:nth-child(1) { animation-delay: 0.1s; }
.setup-item:nth-child(2) { animation-delay: 0.2s; }
.setup-item:nth-child(3) { animation-delay: 0.3s; }
.setup-item:nth-child(4) { animation-delay: 0.4s; }
.setup-item:nth-child(5) { animation-delay: 0.5s; }
.setup-item:nth-child(6) { animation-delay: 0.6s; }
.setup-item:nth-child(7) { animation-delay: 0.7s; }
.setup-item:nth-child(8) { animation-delay: 0.8s; }
.setup-item:nth-child(9) { animation-delay: 0.9s; }
.setup-item:nth-child(10) { animation-delay: 1.0s; }
.setup-item:nth-child(11) { animation-delay: 1.1s; }
.setup-item:nth-child(12) { animation-delay: 1.2s; }
.setup-item:nth-child(13) { animation-delay: 1.3s; }
.setup-item:nth-child(14) { animation-delay: 1.4s; } 