/* ============================================
   Section 17: 実績（論より証拠）v2
   濃紺ベース + ワクワクする素早い動き
   ============================================ */

.results {
  position: relative;
  padding: 100px 20px 120px;
  background:
    radial-gradient(ellipse at top, rgba(91, 164, 217, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(227, 184, 90, 0.1) 0%, transparent 60%),
    linear-gradient(180deg,
      #0F1A30 0%,
      #1A2744 30%,
      #1A2744 70%,
      #0F1A30 100%);
  overflow: hidden;
}

/* 上下のグラデライン */
.results::before,
.results::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-gold) 50%,
    transparent 100%);
  opacity: 0.5;
  z-index: 5;
}
.results::before { top: 0; }
.results::after { bottom: 0; }

.results .sp-only { display: inline; }

/* ============================================
   カメラフラッシュ（周期的にピカッと光る）
   ============================================ */
.results__flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  animation: resultsFlash 8s ease-in-out infinite;
}

@keyframes resultsFlash {
  0%, 88%, 100% { opacity: 0; }
  90% { opacity: 1; }
  92% { opacity: 0.3; }
  94% { opacity: 0.9; }
  96% { opacity: 0; }
}

/* ============================================
   背景の光の粒子（素早く動く）
   ============================================ */
.results__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.results__particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: resultsParticleFloat 6s ease-in-out infinite;
}

.results__particle--1 {
  width: 120px; height: 120px;
  top: 10%; left: -40px;
  background: radial-gradient(circle, rgba(91, 164, 217, 0.3) 0%, transparent 70%);
}
.results__particle--2 {
  width: 80px; height: 80px;
  top: 30%; right: -20px;
  background: radial-gradient(circle, rgba(227, 184, 90, 0.25) 0%, transparent 70%);
  animation-delay: -1.5s;
}
.results__particle--3 {
  width: 140px; height: 140px;
  top: 55%; left: 5%;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.15) 0%, transparent 70%);
  animation-delay: -3s;
}
.results__particle--4 {
  width: 100px; height: 100px;
  bottom: 20%; right: 10%;
  background: radial-gradient(circle, rgba(91, 164, 217, 0.25) 0%, transparent 70%);
  animation-delay: -4.5s;
}
.results__particle--5 {
  width: 60px; height: 60px;
  top: 70%; left: 40%;
  background: radial-gradient(circle, rgba(255, 225, 56, 0.2) 0%, transparent 70%);
  animation-delay: -2s;
}
.results__particle--6 {
  width: 90px; height: 90px;
  bottom: 10%; left: 30%;
  background: radial-gradient(circle, rgba(227, 184, 90, 0.2) 0%, transparent 70%);
  animation-delay: -5.5s;
}

@keyframes resultsParticleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.2); }
}

/* グリッドライン装飾（ずれるアニメ） */
.results__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(91, 164, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 164, 217, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  animation: resultsGridShift 20s linear infinite;
}

@keyframes resultsGridShift {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

/* ============================================
   インナー
   ============================================ */
.results__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* ============================================
   ヘッダー（登場アニメ）
   ============================================ */
.results__header {
  text-align: center;
  margin-bottom: 70px;
}

.results__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 199, 0, 0.15) 0%, rgba(227, 184, 90, 0.08) 100%);
  border: 1px solid rgba(227, 184, 90, 0.5);
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(227, 184, 90, 0.2);
  animation: resultsBadgeDrop 0.6s cubic-bezier(0.34, 1.8, 0.64, 1) both;
}

@keyframes resultsBadgeDrop {
  0% { opacity: 0; transform: translateY(-30px) scale(0.7); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.results__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE138, #E3B85A);
  box-shadow: 0 0 12px rgba(255, 199, 0, 0.9);
  animation: resultsBadgePulse 1s ease-in-out infinite;
}

@keyframes resultsBadgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.7; }
}

.results__badge-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  color: var(--color-gold-light);
  letter-spacing: 0.25em;
}

.results__badge-text {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.results__title {
  margin: 0 0 14px;
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(15, 26, 48, 0.6);
  animation: resultsTitleSlide 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes resultsTitleSlide {
  0% { opacity: 0; transform: translateY(-20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.results__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #FFE138 0%, #E3B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 199, 0, 0.4));
  animation: resultsAccentShake 0.6s ease-out 0.8s both;
}

@keyframes resultsAccentShake {
  0% { opacity: 0; transform: scale(0) rotate(-10deg); }
  60% { opacity: 1; transform: scale(1.15) rotate(3deg); }
  80% { transform: scale(0.95) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.results__subtitle {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  animation: resultsSubtitleFade 0.6s ease-out 1.2s both;
}

@keyframes resultsSubtitleFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   冒頭メッセージ（未来を変える原石）
   ============================================ */
.results__intro {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 24px 22px;
  background: linear-gradient(135deg,
    rgba(91, 164, 217, 0.08) 0%,
    rgba(227, 184, 90, 0.08) 100%);
  border: 1px solid rgba(227, 184, 90, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: resultsIntroFade 0.8s ease-out 1.4s both;
}

@keyframes resultsIntroFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.results__intro-text {
  margin: 0 0 10px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(15, 26, 48, 0.5);
}

.results__intro-highlight {
  display: inline-block;
  font-size: 1.15em;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE138 0%, #E3B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 199, 0, 0.4));
  padding: 0 2px;
}

.results__intro-sub {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ============================================
   TOP3 ハイライト
   ============================================ */
.results__top3 {
  margin-bottom: 60px;
}

.results__top3-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  animation: resultsLabelZoom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both;
}

@keyframes resultsLabelZoom {
  0% { opacity: 0; transform: scale(0.5); letter-spacing: -0.1em; }
  100% { opacity: 1; transform: scale(1); letter-spacing: 0.25em; }
}

.results__top3-crown {
  font-size: 26px;
  filter: drop-shadow(0 2px 8px rgba(255, 199, 0, 0.6));
  animation: resultsCrownDance 1.2s ease-in-out infinite;
}

.results__top3-crown:last-child {
  animation-delay: 0.6s;
}

@keyframes resultsCrownDance {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-8deg); }
  75% { transform: translateY(-6px) rotate(8deg); }
}

.results__top3-text {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  color: var(--color-gold-light);
  letter-spacing: 0.25em;
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.3);
}

/* TOP3 グリッド */
.results__top3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* TOP3 カード */
.results__top3-card {
  position: relative;
  padding: 28px 20px 24px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1.5px solid rgba(227, 184, 90, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: resultsCardBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0s) both;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@keyframes resultsCardBounceIn {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.7) rotate(-5deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05) rotate(2deg);
  }
  80% {
    transform: translateY(5px) scale(0.98) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* TOP3 ホバー：傾く + 浮く + 金色ライン */
.results__top3-card:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(-2deg) scale(1.02);
  border-color: var(--color-yellow);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 199, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 波紋エフェクト（1位のみ） */
.results__top3-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 199, 0, 0.4);
  border-radius: 20px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: resultsRipple 2s ease-out infinite;
  opacity: 0;
}

@keyframes resultsRipple {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

/* 1位カード */
.results__top3-card--first {
  border-color: #FFC700;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 199, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation:
    resultsCardBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0s) both,
    resultsTop1Glow 1.5s ease-in-out 1s infinite;
}

@keyframes resultsTop1Glow {
  0%, 100% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.3),
      0 0 40px rgba(255, 199, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.3),
      0 0 80px rgba(255, 199, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.results__top3-card--second {
  border-color: rgba(192, 192, 192, 0.6);
}

.results__top3-card--third {
  border-color: rgba(205, 127, 50, 0.6);
}

/* シマー効果（1位のみ・素早く） */
.results__top3-card--first::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%);
  animation: resultsTop1Shine 2s ease-in-out infinite;
  pointer-events: none;
  transform: skewX(-20deg);
  z-index: 1;
}

@keyframes resultsTop1Shine {
  0% { left: -100%; }
  50% { left: 200%; }
  100% { left: 200%; }
}

/* ランク（カウントアップ風） */
.results__top3-rank {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  z-index: 2;
}

.results__top3-rank-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
}

.results__top3-rank-num {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE138 0%, #E3B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
  filter: drop-shadow(0 2px 8px rgba(255, 199, 0, 0.4));
  animation: resultsRankPop 0.5s cubic-bezier(0.34, 1.8, 0.64, 1) calc(var(--delay, 0s) + 0.3s) both;
}

@keyframes resultsRankPop {
  0% { opacity: 0; transform: scale(0) rotate(-180deg); }
  70% { transform: scale(1.3) rotate(20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.results__top3-card--second .results__top3-rank-num {
  background: linear-gradient(135deg, #E8E8E8 0%, #B8B8B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results__top3-card--third .results__top3-rank-num {
  background: linear-gradient(135deg, #D89560 0%, #A06838 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* コイン画像（回転しながら登場 + 常時微回転） */
.results__top3-coin {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(227, 184, 90, 0.3);
  border-radius: 50%;
  padding: 10px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation:
    resultsCoinSpin 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--delay, 0s) + 0.2s) both,
    resultsCoinFloat 3s ease-in-out calc(var(--delay, 0s) + 1s) infinite;
}

@keyframes resultsCoinSpin {
  0% { opacity: 0; transform: scale(0) rotate(-360deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes resultsCoinFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}

.results__top3-card:hover .results__top3-coin {
  animation: resultsCoinHoverSpin 0.6s linear infinite;
}

@keyframes resultsCoinHoverSpin {
  from { transform: rotate(0deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1.1); }
}

.results__top3-coin-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* コイン名 */
.results__top3-name {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 20px;
  animation: resultsNameSlide 0.5s ease-out calc(var(--delay, 0s) + 0.5s) both;
}

@keyframes resultsNameSlide {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.results__top3-name-main {
  display: block;
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(15, 26, 48, 0.6);
}

.results__top3-name-symbol {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* 価格ボックス（シャッター風） */
.results__top3-prices {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(15, 26, 48, 0.4);
  border: 1px solid rgba(91, 164, 217, 0.2);
  border-radius: 12px;
  overflow: hidden;
  animation: resultsPricesShutter 0.6s cubic-bezier(0.5, 1.8, 0.5, 1) calc(var(--delay, 0s) + 0.7s) both;
}

@keyframes resultsPricesShutter {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  60% { opacity: 1; transform: scaleY(1.1); }
  100% { opacity: 1; transform: scaleY(1); }
}

.results__top3-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.results__top3-price-label {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.results__top3-price-value {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  word-break: break-all;
}

.results__top3-price--peak .results__top3-price-value {
  font-size: 18px;
  color: var(--color-yellow);
  text-shadow: 0 0 12px rgba(255, 199, 0, 0.5);
  animation: resultsPeakGlow 1.5s ease-in-out infinite;
}

@keyframes resultsPeakGlow {
  0%, 100% { text-shadow: 0 0 12px rgba(255, 199, 0, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 199, 0, 0.9); }
}

.results__top3-price-date {
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

/* 矢印（稲妻風） */
.results__top3-arrow {
  font-size: 20px;
  color: var(--color-gold);
  text-shadow:
    0 0 12px rgba(227, 184, 90, 0.6),
    0 0 24px rgba(255, 199, 0, 0.4);
  animation: resultsArrowLightning 1.2s ease-in-out infinite;
  font-weight: 900;
}

@keyframes resultsArrowLightning {
  0%, 100% {
    transform: translateY(0) scale(1);
    text-shadow:
      0 0 12px rgba(227, 184, 90, 0.6),
      0 0 24px rgba(255, 199, 0, 0.4);
  }
  20% {
    transform: translateY(2px) scale(1.2);
    text-shadow:
      0 0 20px rgba(255, 255, 255, 1),
      0 0 30px rgba(255, 199, 0, 1);
  }
  40% {
    transform: translateY(4px) scale(1);
  }
  60% {
    transform: translateY(3px) scale(1.15);
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.8),
      0 0 28px rgba(255, 199, 0, 0.9);
  }
}

/* 上昇率（脈動 + キラキラ） */
.results__top3-growth {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 14px 10px;
  background: linear-gradient(135deg, rgba(255, 225, 56, 0.12) 0%, rgba(227, 184, 90, 0.08) 100%);
  border: 1px solid rgba(255, 225, 56, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 199, 0, 0.15);
  overflow: hidden;
  animation: resultsGrowthPop 0.6s cubic-bezier(0.34, 1.8, 0.64, 1) calc(var(--delay, 0s) + 0.9s) both;
}

@keyframes resultsGrowthPop {
  0% { opacity: 0; transform: scale(0.5) translateY(20px); }
  70% { opacity: 1; transform: scale(1.1) translateY(-5px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* 上昇率の中を光がサッと走る */
.results__top3-growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);
  animation: resultsGrowthShine 3s ease-in-out infinite;
  pointer-events: none;
  transform: skewX(-20deg);
}

@keyframes resultsGrowthShine {
  0% { left: -100%; }
  40% { left: 200%; }
  100% { left: 200%; }
}

.results__top3-growth-percent {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1.3;
  letter-spacing: 0.01em;
  word-break: break-all;
  margin-bottom: 4px;
  text-shadow: 0 0 12px rgba(255, 199, 0, 0.4);
}

.results__top3-growth-multi {
  position: relative;
  z-index: 1;
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFE138 0%, #FFC700 50%, #E3B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 2px 6px rgba(255, 199, 0, 0.3));
  animation: resultsGrowthMultiPulse 1.8s ease-in-out infinite;
}

@keyframes resultsGrowthMultiPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ============================================
   区切り
   ============================================ */
.results__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 60px auto 40px;
  max-width: 600px;
}

.results__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(227, 184, 90, 0.5) 50%,
    transparent 100%);
}

.results__divider-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  color: var(--color-gold-light);
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.results__divider-star {
  color: var(--color-yellow);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.7);
  animation: resultsStarSpin 1.5s linear infinite;
}

.results__divider-star:last-child {
  animation-direction: reverse;
}

@keyframes resultsStarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   グリッド（残り15個・順次表示）
   ============================================ */
.results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 60px;
}

.results__card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: resultsCardPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) calc(0.05s * var(--i, 0)) both;
}

@keyframes resultsCardPop {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  70% { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* カード ホバー（傾く + 光る） */
.results__card:hover {
  transform: translateY(-4px) scale(1.03) rotateZ(-0.5deg);
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(227, 184, 90, 0.3);
}

/* カード内シマー */
.results__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 199, 0, 0.1) 50%,
    transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
  transform: skewX(-20deg);
  z-index: 0;
}

.results__card:hover::before {
  left: 150%;
}

.results__card-coin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(91, 164, 217, 0.3);
  border-radius: 50%;
  padding: 6px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.results__card:hover .results__card-coin {
  transform: rotate(360deg) scale(1.1);
  border-color: var(--color-gold);
}

.results__card-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.results__card-name {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.results__card-name-main {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
}

.results__card-name-symbol {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.results__card-prices {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-jp);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.results__card-price {
  font-weight: 600;
}

.results__card-price--peak {
  color: var(--color-yellow);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255, 199, 0, 0.3);
}

.results__card-arrow {
  color: var(--color-gold);
  font-size: 12px;
  animation: resultsCardArrow 1.5s ease-in-out infinite;
}

@keyframes resultsCardArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* グリッドカードの日付行 */
.results__card-dates {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.results__card-date-arrow {
  color: rgba(227, 184, 90, 0.6);
  font-size: 10px;
}

.results__card-date {
  letter-spacing: 0.01em;
}

.results__card-growth {
  grid-column: 1 / 3;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px dashed rgba(227, 184, 90, 0.3);
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #FFE138 0%, #E3B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.01em;
  word-break: break-all;
  position: relative;
  z-index: 1;
}

/* ============================================
   フッター注記
   ============================================ */
.results__note {
  padding: 18px 20px;
  background: rgba(15, 26, 48, 0.4);
  border: 1px solid rgba(91, 164, 217, 0.15);
  border-radius: 12px;
  text-align: center;
}

.results__note-text {
  margin: 0 0 4px;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  word-break: break-all;
}

.results__note-updated {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.results__note-disclaimer {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(91, 164, 217, 0.2);
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   PC（768px以上）
   ============================================ */
@media (min-width: 768px) {

  .results {
    padding: 140px 40px 160px;
  }

  .results .sp-only { display: none; }

  /* ヘッダー */
  .results__header {
    margin-bottom: 90px;
  }

  .results__badge {
    padding: 12px 30px;
    margin-bottom: 30px;
  }

  .results__badge-label {
    font-size: 14px;
  }

  .results__badge-text {
    font-size: 17px;
  }

  .results__title {
    font-size: 52px;
    margin-bottom: 20px;
  }

  .results__subtitle {
    font-size: 15px;
  }

  /* 冒頭メッセージ PC */
  .results__intro {
    max-width: 720px;
    padding: 32px 40px;
    margin-bottom: 80px;
  }

  .results__intro-text {
    font-size: 20px;
  }

  .results__intro-sub {
    font-size: 15px;
  }

  .results__note-disclaimer {
    font-size: 11px;
  }

  /* TOP3 */
  .results__top3 {
    margin-bottom: 80px;
  }

  .results__top3-label {
    margin-bottom: 40px;
  }

  .results__top3-crown {
    font-size: 32px;
  }

  .results__top3-text {
    font-size: 16px;
  }

  .results__top3-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .results__top3-card {
    padding: 36px 26px 30px;
  }

  .results__top3-rank {
    top: 18px;
    right: 22px;
  }

  .results__top3-rank-label {
    font-size: 11px;
  }

  .results__top3-rank-num {
    font-size: 56px;
  }

  .results__top3-coin {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .results__top3-name {
    margin-bottom: 24px;
  }

  .results__top3-name-main {
    font-size: 20px;
  }

  .results__top3-name-symbol {
    font-size: 13px;
  }

  .results__top3-prices {
    gap: 10px;
    padding: 18px 20px;
    margin-bottom: 24px;
  }

  .results__top3-price-label {
    font-size: 10px;
  }

  .results__top3-price-value {
    font-size: 17px;
  }

  .results__top3-price--peak .results__top3-price-value {
    font-size: 22px;
  }

  .results__top3-price-date {
    font-size: 12px;
  }

  .results__top3-arrow {
    font-size: 24px;
  }

  .results__top3-growth {
    padding: 18px 14px;
  }

  .results__top3-growth-percent {
    font-size: 15px;
  }

  .results__top3-growth-multi {
    font-size: 24px;
  }

  /* 区切り */
  .results__divider {
    margin: 80px auto 50px;
  }

  .results__divider-text {
    font-size: 13px;
  }

  /* グリッド */
  .results__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 80px;
  }

  .results__card {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .results__card-coin {
    width: 60px;
    height: 60px;
    padding: 7px;
  }

  .results__card-name-main {
    font-size: 15px;
  }

  .results__card-name-symbol {
    font-size: 12px;
  }

  .results__card-prices {
    font-size: 12px;
  }

  .results__card-dates {
    font-size: 11px;
  }

  .results__card-growth {
    font-size: 13px;
  }

  /* フッター注記 */
  .results__note {
    padding: 22px 30px;
  }

  .results__note-text {
    font-size: 12px;
  }

  .results__note-updated {
    font-size: 11px;
  }
}

/* タブレット対応 */
@media (min-width: 576px) and (max-width: 767px) {
  .results__top3-grid {
    grid-template-columns: 1fr 1fr;
  }

  .results__top3-card--first {
    grid-column: 1 / 3;
  }

  .results__grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================
   Section 17 追加スタイル（修正版）
   - 日数バッジ
   - エビデンスボタン
   - 価格ラベル「Crypto Nova 抽出時」
   - 上昇率を赤色に
   - エビデンス画像モーダル
============================================ */

/* ===== エビデンス表記（タイトル下） ===== */
.results__evidence-label {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: #5BA8E0; /* スカイブルー */
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.9;
}

/* ===== 日数バッジ（TOP3用） ===== */
.results__top3-days {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 8px auto 12px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #FFE138 0%, #FFC700 100%);
  color: #1A2744;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(255, 199, 0, 0.4);
  white-space: nowrap;
}

.results__top3-days-num {
  font-size: 22px;
  font-weight: 900;
  color: #C92626;
  margin: 0 2px;
}

/* ===== 日数バッジ（その他カード用） ===== */
.results__card-days {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 6px auto 10px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #FFE138 0%, #FFC700 100%);
  color: #1A2744;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(255, 199, 0, 0.35);
  white-space: nowrap;
}

.results__card-days-num {
  font-size: 18px;
  font-weight: 900;
  color: #C92626;
  margin: 0 2px;
}

/* ===== 上昇率を赤色に（修正③） ===== */
.results__top3-growth-percent,
.results__top3-growth-multi,
.results__card-growth {
  color: #FF3B30 !important;
  text-shadow: 0 0 8px rgba(255, 59, 48, 0.3);
}

/* TOP3 のグロウス強調 */
.results__top3-growth-percent {
  font-weight: 900;
}

.results__top3-growth-multi {
  font-weight: 700;
}

/* ===== エビデンスボタン ===== */
.results__evidence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(91, 168, 224, 0.15);
  color: #5BA8E0;
  border: 1px solid rgba(91, 168, 224, 0.5);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
}

.results__evidence-btn:hover {
  background: rgba(91, 168, 224, 0.3);
  border-color: #5BA8E0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 168, 224, 0.3);
}

.results__evidence-btn:active {
  transform: translateY(0);
}

.results__evidence-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #5BA8E0;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.results__evidence-btn--small {
  padding: 6px 12px;
  font-size: 11px;
}

.results__evidence-btn--small .results__evidence-icon {
  width: 16px;
  height: 16px;
  font-size: 12px;
}

/* ===== カード内のレイアウト調整 ===== */
.results__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.results__card-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
}

.results__card-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.results__card-price-label {
  font-size: 10px;
  color: #93C5FD;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.results__card-arrow {
  font-size: 18px;
  color: #FFC700;
  font-weight: 700;
  line-height: 1;
}

.results__card-date {
  font-size: 10px;
  color: #9CA3AF;
}

/* ===== エビデンスモーダル（拡大表示） ===== */
.evidence-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.evidence-modal[aria-hidden="false"] {
  display: flex;
  animation: evidenceModalFadeIn 0.25s ease;
}

@keyframes evidenceModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.evidence-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.evidence-modal__container {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: evidenceModalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes evidenceModalScaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.evidence-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #1A2744;
  border: 2px solid #E3B85A;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease;
  z-index: 2;
}

.evidence-modal__close:hover {
  transform: scale(1.1);
}

.evidence-modal__image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: calc(95vh - 80px);
  border-radius: 8px;
  touch-action: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evidence-modal__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  transition: transform 0.05s ease-out;
  cursor: default;
  touch-action: none;
}
.evidence-modal__hint {
  font-size: 11px;
  color: #6B7280;
  margin: 4px 0 0;
  text-align: center;
}

/* ===== レスポンシブ調整 ===== */
@media (min-width: 768px) {
  .results__top3-days {
    font-size: 15px;
    padding: 8px 20px;
  }
  .results__top3-days-num {
    font-size: 26px;
  }
  .results__card-days {
    font-size: 12px;
    padding: 5px 14px;
  }
  .results__card-days-num {
    font-size: 20px;
  }
  .results__evidence-label {
    font-size: 13px;
  }
}
/* 修正②: 「証拠」をスカイブルーに */
.results__title-evidence {
  color: #5BA8E0;
  text-shadow: 0 0 12px rgba(91, 168, 224, 0.4);
}
/* 黄色バッジとエビデンスボタンを中央配置 */
.results__top3-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.results__top3-days {
  display: inline-flex !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
}

.results__evidence-btn {
  display: inline-flex !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
}

.results__card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.results__card-days {
  display: inline-flex !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
}
/* 修正④: コイン名と(シンボル)を2行に */
.results__card-name {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}

.results__card-name-main {
  display: block !important;
}

.results__card-name-symbol {
  display: block !important;
}

/* 修正⑥: 上昇率と倍率を2行に */
.results__card-growth {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}

.results__card-growth-percent {
  display: block !important;
}

.results__card-growth-multi {
  display: block !important;
}
/* ズームボタン */
.evidence-modal__zoom-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
  flex-shrink: 0;
}

.evidence-modal__zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B8FD9, #1E6FA0);
  color: #FFFFFF;
  border: none;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(30, 111, 160, 0.4);
  transition: all 0.15s ease;
  user-select: none;
}

.evidence-modal__zoom-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(30, 111, 160, 0.6);
}

.evidence-modal__zoom-btn:active {
  transform: scale(0.95);
}
/* ============================================
   実績画像版（v4 - 画像化対応）
   各カードを画像 + エビデンスボタンのシンプル構成に
============================================ */

/* 共通：画像カード */
.results__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  max-width: 100%;
  animation: resultsItemFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(0.08s * var(--i, 0)) both;
}

@keyframes resultsItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 実績画像本体 */
.results__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: 16px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(227, 184, 90, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.results__item:hover .results__image {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 199, 0, 0.3);
}

/* TOP3 エリアの画像はもう少し大きめ */
.results__top3-grid .results__item {
  --i: 0;
}

.results__top3-grid .results__item:nth-child(1) { --i: 0; }
.results__top3-grid .results__item:nth-child(2) { --i: 1; }
.results__top3-grid .results__item:nth-child(3) { --i: 2; }

.results__top3-grid .results__image {
  max-width: 520px;
}

/* OTHER RESULTS の画像はカード並び */
.results__grid .results__item {
  --i: 0;
}

.results__grid .results__item:nth-child(1) { --i: 0; }
.results__grid .results__item:nth-child(2) { --i: 1; }
.results__grid .results__item:nth-child(3) { --i: 2; }
.results__grid .results__item:nth-child(4) { --i: 3; }
.results__grid .results__item:nth-child(5) { --i: 4; }
.results__grid .results__item:nth-child(6) { --i: 5; }
.results__grid .results__item:nth-child(7) { --i: 6; }
.results__grid .results__item:nth-child(8) { --i: 7; }
.results__grid .results__item:nth-child(9) { --i: 8; }
.results__grid .results__item:nth-child(10) { --i: 9; }
.results__grid .results__item:nth-child(11) { --i: 10; }
.results__grid .results__item:nth-child(12) { --i: 11; }
.results__grid .results__item:nth-child(13) { --i: 12; }
.results__grid .results__item:nth-child(14) { --i: 13; }
.results__grid .results__item:nth-child(15) { --i: 14; }

/* PC（768px以上）：画像をより大きく */
@media (min-width: 768px) {
  .results__top3-grid .results__image {
    max-width: 100%;
  }

  .results__grid .results__image {
    max-width: 100%;
  }

  .results__item {
    gap: 16px;
  }
}