.simulation-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.sim-icon-box {
  background-color: #eff6ff;
  color: #3b82f6;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.sim-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.sim-subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

.sim-coming-soon {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 28rem;
  margin: 0 auto 2.5rem auto;
  border: 1px dashed #f3f4f6;
}

.sim-coming-title {
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.sim-coming-list {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: max-content;
  margin: 0 auto;
}

.sim-coming-list li {
  display: block;
}

.sim-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.sim-btn-back:hover {
  background-color: #1f2937;
}

/* 프리미엄 트랜지션 & 마이크로 인터랙션 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 텍스트 2줄 생략 처리 폴백 */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 스무스 노출 모달 및 카드 */
.aqm-modal-content {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 반응형 모바일 터치 개선 */
@media (max-width: 640px) {
  input[type="number"] {
    font-size: 16px !important; /* 모바일 사파리 줌 방지 */
  }
}

/* 프리미엄 모달 오버레이 시스템 */
.aqm-sim-auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.aqm-sim-auth-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* 프리미엄 럭셔리 토스트 스타일 */
#aqm-premium-toast {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 💎 프리미엄 럭셔리 네온 및 등급 서클링 애니메이션 */
@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.premium-rating-container {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  opacity: 0.8;
  filter: blur(5px);
  animation: spinRing 6s linear infinite;
}

.premium-glass-card {
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-glass-card:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 50px 0 rgba(245, 158, 11, 0.06);
}


