/* PFP Generator Section Container */
.pfp-generator-container {
  background: white !important;
  padding: 20px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.pfp-generator {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  padding: 30px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #ff6b35;
  position: relative;
  z-index: 10;
}

.pfp-generator h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.2em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.pfp-controls-simple {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.control-group-simple {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  min-width: 200px;
}

.control-group-simple h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.control-item-simple {
  text-align: center;
}

.control-item-simple select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ff6b35;
  border-radius: 8px;
  background: #2d2d2d;
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
}

.control-item-simple select:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.pfp-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: #000;
  border-radius: 10px;
  border: 2px solid #333;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.pfp-canvas {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  width: 400px;
  height: 400px;
  image-rendering: pixelated;
}

.pfp-actions-simple {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.btn {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 150px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(135deg, #333, #555);
}

.btn-secondary:hover {
  box-shadow: 0 5px 15px rgba(85, 85, 85, 0.4);
}

/* Spooky animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.pfp-generator::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b35, #ffa500, #ff6b35, #ffa500);
  border-radius: 17px;
  z-index: -1;
  animation: float 3s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 768px) {
  .pfp-controls-simple {
    margin-bottom: 20px;
  }

  .control-group-simple {
    padding: 15px;
    min-width: 180px;
  }

  .pfp-generator {
    margin: 20px;
    padding: 20px;
  }

  .pfp-generator h2 {
    font-size: 1.8em;
  }

  .pfp-actions-simple {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
  }
}
