/* カスタムユーティリティ & アニメーション */
.no-select {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

@keyframes glow {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.4));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.8));
  }
}

.animate-glow {
  animation: glow 3s infinite ease-in-out;
}

/* スクロールバーのカスタマイズ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0b0e14;
}

::-webkit-scrollbar-thumb {
  background: #252e42;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c5a059;
}
