:root {
  --brand-gold: #c9a227;
  --brand-gold-dark: #a8841f;
  --brand-dark: #0a0a0a;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}

.text-brand-gold { color: var(--brand-gold) !important; }

.btn-brand {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #0a0a0a;
  font-weight: 600;
}
.btn-brand:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: #0a0a0a;
}

.btn-outline-brand {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}
.btn-outline-brand:hover {
  background: var(--brand-gold);
  color: #0a0a0a;
}

.app-icon {
  width: 120px;
  height: 120px;
  min-width: 120px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.app-icon-sm {
  width: 36px;
  height: 36px;
  min-width: 36px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.app-icon-lg {
  width: 140px;
  height: 140px;
  min-width: 140px;
}

.hero {
  background: radial-gradient(circle at top, #1a1408 0%, #0a0a0a 55%);
  color: #f5f0e8;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.scroll-box {
  height: 180px;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  background: #fff;
}

.disabled-link {
  opacity: 0.5;
  pointer-events: none;
}

.form-control:focus {
  border-color: #d4b44a;
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.15);
}
