:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --repair-gradient: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  --update-gradient: linear-gradient(135deg, #0984e3 0%, #0984e3 100%);
  --complete-gradient: linear-gradient(135deg, #27ae60 0%, #219150 100%);
  --records-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --report-red-gradient: linear-gradient(135deg, #ff4757 0%, #e84393 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
}

body {
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f8f9fa;
  background-attachment: fixed;
  background-image: radial-gradient(
      at 0% 0%,
      hsla(253, 16%, 7%, 1) 0,
      transparent 50%
    ),
    radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* Base Container */
.form-container {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 95%;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px auto;
  animation: fadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Wide Container for lists */
.form-container.wide {
  max-width: 900px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-weight: 800;
  color: #2d3436;
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.header p {
  color: #636e72;
  font-size: 0.95rem;
}

/* Form Controls */
.form-label {
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-control {
  border-radius: 12px;
  padding: 14px 18px;
  border: 2px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  background: white;
}

.btn-submit {
  background: var(--primary-gradient);
  border: none;
  border-radius: 12px;
  padding: 16px;
  color: white;
  font-weight: 700;
  width: 100%;
  margin-top: 25px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

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

/* Card Selection */
.selection-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.selection-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.selection-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
}

.selection-card .icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.selection-card.report { border-left: 5px solid #ff4757; }
.selection-card.report .icon-box { background: var(--report-red-gradient); }
.selection-card.repair {
  border-left: 5px solid #00b894;
}
.selection-card.repair .icon-box {
  background: var(--repair-gradient);
}
.selection-card.records {
  border-left: 5px solid #f5576c;
  text-decoration: none;
}
.selection-card.records .icon-box {
  background: var(--records-gradient);
}

.selection-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3436;
}

.selection-card p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #636e72;
}

/* Utils */
.hidden {
  display: none !important;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #636e72;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: #667eea;
  text-decoration: none;
}

/* Radios */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.radio-item label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  color: #4a5568;
}
