@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Anton&family=Montserrat+Alternates:wght@700&family=Bebas+Neue&family=Rubik+Mono+One&display=swap');

#crazy_coder-gamertag-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #4A3AFD 0%, #000000 100%);
  color: #000;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100vh;
  backdrop-filter: blur(6px);
}

.crazy_coder-container {
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(74,58,253,0.3);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(74,58,253,0.4);
  padding: 24px;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.crazy_coder-subtitle {
  color: #fff;
  margin-bottom: 20px;
}

.crazy_coder-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.crazy_coder-label {
  font-weight: 600;
  text-align: left;
  color: #fff;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(74,58,253,0.4);
  background: rgba(255,255,255,0.8);
  font-size: 1rem;
  color: #000;
}

.crazy_coder-slider {
  width: 100%;
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  align-items: center;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #4A3AFD, #B4B8FF);
  color: white;
  border: none;
}

.crazy_coder-btn:hover {
  transform: scale(1.05);
}

.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #4A3AFD;
  color: #4A3AFD;
}

.crazy_coder-btn-outline:hover {
  background: #4A3AFD;
  color: white;
}

.crazy_coder-preview {
  margin-top: 25px;
}

.crazy_coder-preview-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.crazy_coder-preview-gamertags {
  background: rgba(0,0,0,0.95);
  border-radius: 16px;
  padding: 20px 22px;
  min-height: 260px;
  max-height: 420px;
  overflow-y: auto;
  box-shadow: 0 0 16px rgba(74,58,253,0.6);
  border: 1px solid rgba(74,58,253,0.3);
  font-size: 1rem;
  line-height: 1.55;
  color: #fff;
}

.crazy_coder-preview-gamertags h2,
.crazy_coder-preview-gamertags h3 {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 1rem;
}

.crazy_coder-preview-gamertags p {
  margin: 4px 0;
}
