/* ============================================================
   Toolly Platform — 커스텀 컴포넌트 스타일
   (Tailwind 유틸리티로 표현 불가한 커스텀 클래스만 정의)
   ============================================================ */

/* ── 앰비언트 배경 글로우 ── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99,102,241,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(168,85,247,.14) 0%, transparent 60%);
}

/* ── 글래스 카드 ── */
.glass-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── 기본 버튼 ── */
.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
}
.btn-primary:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

/* ── 페이지 콘텐츠 영역 ── */
.page-content {
  animation: fadeIn .2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 스크롤바 (다크 테마) ── */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: transparent; }
::-webkit-scrollbar-thumb  { background: rgba(255,255,255,.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.22); }

/* ── body 기본 ── */
body {
  background-color: #0a0a0f;
  color: #e5e7eb;
  min-height: 100vh;
}
