* { font-family: 'Noto Sans JP', sans-serif; }
html { scroll-behavior: smooth; }

.gold { color: #C9A84C; }
.gold-bg { background-color: #C9A84C; }
.gold-border { border-color: #C9A84C; }

.gradient-bg {
  background: linear-gradient(135deg, #0A0E1A 0%, #0D1527 50%, #0A0E1A 100%);
}
.hero-gradient {
  background: linear-gradient(180deg, #0A0E1A 0%, #0D1A2E 100%);
}
.card-bg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
}
.line-btn {
  background: linear-gradient(135deg, #06C755 0%, #04A847 100%);
  box-shadow: 0 4px 24px rgba(6,199,85,0.45);
}
.line-btn:active {
  transform: scale(0.97);
}
.urgent-bar {
  background: linear-gradient(90deg, #C9A84C, #E8C96A, #C9A84C);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite linear;
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.pulse-dot {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.stat-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.3);
}
.ticker-wrap {
  overflow: hidden;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.ticker-content {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.chart-bar {
  animation: grow 1.2s ease forwards;
  transform-origin: bottom;
}
@keyframes grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  background: rgba(10,14,26,0.95);
  border-top: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(10px);
}
.badge {
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #0A0E1A;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}
.warning-box {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-left: 3px solid #FF5050;
}
.success-box {
  background: rgba(6,199,85,0.08);
  border: 1px solid rgba(6,199,85,0.25);
  border-left: 3px solid #06C755;
}
