@keyframes _fadeInUp_2bfxw_1 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes _pulseGlow_2bfxw_1 {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
  }
}
@keyframes _countUp_2bfxw_1 {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes _shimmer_2bfxw_1 {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes _trophyBounce_2bfxw_1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
._pageWrapper_2bfxw_45 {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff5f0 0%, #fff 30%, #f8f6ff 100%);
  padding: var(--spacing-xl) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

._header_2bfxw_54 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  animation: _fadeInUp_2bfxw_1 0.6s ease-out;
}
._header_2bfxw_54 h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--main, #1a1a2e);
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
@media (min-width: 600px) {
  ._header_2bfxw_54 h1 {
    font-size: 2.5rem;
  }
}
._header_2bfxw_54 ._subtitle_2bfxw_71 {
  color: var(--secondaryText, #666);
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

._trophyIcon_2bfxw_78 {
  display: inline-flex;
  vertical-align: middle;
  animation: _trophyBounce_2bfxw_1 2s ease-in-out infinite;
  color: #f59e0b;
}
._trophyIcon_2bfxw_78 svg {
  width: 1.4em;
  height: 1.4em;
}

._container_2bfxw_89 {
  width: 100%;
  max-width: 640px;
  animation: _fadeInUp_2bfxw_1 0.6s ease-out 0.1s both;
}

._modeToggle_2bfxw_95 {
  margin-bottom: var(--spacing-lg);
}

._controlsCard_2bfxw_99 {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}
._controlsCard_2bfxw_99:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
}

._sliderRow_2bfxw_112:last-child {
  margin-bottom: 0;
}

._sliderHeader_2bfxw_116 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

._sliderLabel_2bfxw_123 {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--main, #1a1a2e);
}
._sliderLabel_2bfxw_123 ._labelIcon_2bfxw_131 {
  display: flex;
}
._sliderLabel_2bfxw_123 ._labelIcon_2bfxw_131 svg {
  width: 18px;
  height: 18px;
}

._sliderValue_2bfxw_139 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color, #ff6b35);
  min-width: 36px;
  text-align: right;
  transition: transform 0.15s ease;
}
._sliderValue_2bfxw_139._bumped_2bfxw_147 {
  transform: scale(1.2);
}

._sliderTrack_2bfxw_151 {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--main, #1a1a2e) var(--fill-pct, 30%), #e8e8e8 var(--fill-pct, 30%));
  outline: none;
  cursor: pointer;
  transition: background 0.1s ease;
}
._sliderTrack_2bfxw_151::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--main, #1a1a2e);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
._sliderTrack_2bfxw_151::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
._sliderTrack_2bfxw_151::-webkit-slider-thumb:active {
  transform: scale(1.25);
}
._sliderTrack_2bfxw_151::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--main, #1a1a2e);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

._twoCol_2bfxw_190 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}
@media (max-width: 480px) {
  ._twoCol_2bfxw_190 {
    grid-template-columns: 1fr;
  }
}

._switchRow_2bfxw_201 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
  background: var(--cardBg, #f8f8f8);
  border-radius: 12px;
  margin-top: var(--spacing-lg);
}
._switchRow_2bfxw_201 ._switchLabel_2bfxw_210 {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--main, #1a1a2e);
}
._switchRow_2bfxw_201 ._switchLabel_2bfxw_210 ._switchIcon_2bfxw_218 {
  display: flex;
}
._switchRow_2bfxw_201 ._switchLabel_2bfxw_210 ._switchIcon_2bfxw_218 svg {
  width: 18px;
  height: 18px;
}
._switchRow_2bfxw_201 ._switch_2bfxw_201 input + span {
  background-color: var(--main) !important;
}

._resultCard_2bfxw_229 {
  border-radius: 16px;
  padding: var(--spacing-lg);
  text-align: center;
  animation: _fadeInUp_2bfxw_1 0.5s ease-out;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}
._resultCard_2bfxw_229._capacityResult_2bfxw_238 {
  background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 30%, #f0e8ff 100%);
  border: 1.5px solid rgba(255, 107, 53, 0.2);
}
._resultCard_2bfxw_229._requirementsResult_2bfxw_242 {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f0ff 50%, #fff0f8 100%);
  border: 1.5px solid rgba(107, 107, 255, 0.2);
}

._resultLabel_2bfxw_247 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--main, #1a1a2e);
  margin-bottom: var(--spacing-md);
}

._resultNumber_2bfxw_256 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin: var(--spacing-md) 0;
  transition: transform 0.2s ease;
}
._resultNumber_2bfxw_256._capacityNumber_2bfxw_263 {
  color: var(--primary-color, #ff6b35);
}
._resultNumber_2bfxw_256._requirementsNumber_2bfxw_266 {
  color: #6366f1;
}
@media (max-width: 480px) {
  ._resultNumber_2bfxw_256 {
    font-size: 3rem;
  }
}

._resultUnit_2bfxw_275 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main, #1a1a2e);
  margin-bottom: var(--spacing-lg);
}

._resultDetail_2bfxw_282 {
  font-size: 14px;
  color: var(--secondaryText, #666);
  line-height: 1.5;
}
._resultDetail_2bfxw_282 strong {
  color: var(--main, #1a1a2e);
  font-weight: 700;
}

._resultSubDetail_2bfxw_292 {
  font-size: 13px;
  color: var(--secondaryText, #888);
  margin-top: var(--spacing-md);
}

._loadingPulse_2bfxw_298 {
  animation: _shimmer_2bfxw_1 1.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
  background-size: 200% 100%;
  border-radius: 16px;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
}
._loadingPulse_2bfxw_298 ._loadingText_2bfxw_307 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryText, #666);
}
._loadingPulse_2bfxw_298 ._loadingText_2bfxw_307 ._spinner_2bfxw_316 {
  display: inline-block;
  animation: _spin_2bfxw_316 1s linear infinite;
  font-size: 18px;
}

@keyframes _spin_2bfxw_316 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
._tip_2bfxw_330 {
  text-align: center;
  font-size: 13px;
  color: var(--secondaryText, #888);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: _fadeInUp_2bfxw_1 0.6s ease-out 0.3s both;
}
._tip_2bfxw_330 svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

._particlesContainer_2bfxw_346 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  border-radius: inherit;
}

._particle_2bfxw_346 {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  animation: _confettiExplode_2bfxw_1 cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
._particle_2bfxw_346:nth-child(odd) {
  border-radius: 50%;
}
._particle_2bfxw_346:nth-child(even) {
  border-radius: 2px;
}
._particle_2bfxw_346:nth-child(3n) {
  border-radius: 1px;
  transform: rotate(45deg);
}

@keyframes _confettiExplode_2bfxw_1 {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0);
    opacity: 0;
  }
  15% {
    opacity: 0.4;
    transform: translate(-50%, -50%) translate(calc(var(--x-end, 50px) * 0.3), calc(var(--y-end, 50px) * 0.3)) rotate(calc(var(--rotation, 360deg) * 0.2)) scale(1.2);
  }
  60% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) translate(var(--x-end, 50px), var(--y-end, 50px)) rotate(var(--rotation, 360deg)) scale(0.4);
    opacity: 0;
  }
}
._divisionSliders_2bfxw_392 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

._divider_2bfxw_398 {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: var(--spacing-md) 0;
}