/* ==========================================================================
   ピクノベ LP — ナイト・アミューズメント調（紫・夜空・ランタン風ライト）
   ベース＆共通スタイル
   ========================================================================== */
:root {
  --bg-deep: #0a0515;
  --bg-mid: #150a26;
  --bg-elev: rgba(42, 24, 78, 0.45);
  --text: #faf5ff;
  --muted: #c9b8e8;
  --accent-purple: #c084fc;
  --accent-purple-dim: #9333ea;
  --accent-magenta: #e879f9;
  --glow-gold: #fcd34d;
  --glow-warm: #fda4af;
  --border: rgba(251, 191, 36, 0.22);
  --border-strong: rgba(244, 114, 182, 0.35);
  --glass: rgba(88, 28, 135, 0.25);
  --radius: 16px;
  --font-sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI",
    Meiryo, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(
      ellipse 100% 60% at 50% -5%,
      rgba(147, 51, 234, 0.45) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 8%,
      rgba(251, 191, 36, 0.18) 0%,
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 25%,
      rgba(236, 72, 153, 0.12) 0%,
      transparent 30%
    ),
    linear-gradient(180deg, #1a0a30 0%, var(--bg-deep) 42%, #050208 100%);
  background-attachment: fixed;
}

a {
  color: var(--glow-gold);
  transition:
    color 0.15s ease,
    filter 0.15s ease;
}

a:hover {
  color: #fef3c7;
  filter: brightness(1.08);
}

a:focus-visible {
  outline: 2px solid var(--glow-gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.skip:focus {
  left: 16px;
  top: 16px;
  padding: 0.5rem 1rem;
  background: var(--glow-gold);
  color: #1e0530;
  border-radius: 8px;
  font-weight: 700;
}

.shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-strong {
  color: var(--text);
  font-weight: 700;
}

/* ==========================================================================
   ヘッダー (Header) & ボタン並列調整
   ========================================================================== */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 5, 30, 0.72);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand:hover {
  color: #fef08a;
}

.brand-sub {
  opacity: 0.85;
  font-weight: 600;
  font-size: 0.92em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.35));
}

.header-btn-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.site-header .btn-apk {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 480px) {
  .header-btn-group {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }
}

/* ==========================================================================
   タイポグラフィ & セクション共通
   ========================================================================== */
h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  line-height: 1.22;
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(192, 132, 252, 0.35);
}

.hero-tagline {
  margin: 0 0 1.1rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: #fde68a;
  letter-spacing: 0.02em;
  text-shadow: 0 0 28px rgba(251, 191, 36, 0.4);
}

h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  margin: 0 0 1.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  font-weight: 700;
  color: #fef3ff;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
}

section {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  text-shadow: 0 0 20px rgba(192, 132, 252, 0.3);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   ボタン (Buttons)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.76rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    filter 0.14s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  border: none;
  color: #1a0528;
  background: linear-gradient(
    135deg,
    var(--accent-magenta) 0%,
    var(--accent-purple) 42%,
    var(--glow-gold) 165%
  );
  box-shadow:
    0 4px 22px rgba(232, 121, 249, 0.4),
    0 0 0 1px rgba(251, 191, 36, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.07);
  box-shadow:
    0 8px 32px rgba(232, 121, 249, 0.5),
    0 0 0 1px rgba(253, 224, 71, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fefce8;
  border: 1px solid rgba(253, 224, 71, 0.45);
  box-shadow:
    inset 0 0 22px rgba(168, 85, 247, 0.12),
    0 0 0 rgba(0, 0, 0, 0);
}

.btn-secondary:hover {
  border-color: var(--accent-magenta);
  background: rgba(88, 28, 135, 0.35);
  filter: brightness(1.06);
}

/* ==========================================================================
   ヒーローエリア & 背景装飾 (Hero Section)
   ========================================================================== */
.hero {
  position: relative;
  overflow: clip;
  padding: 3rem 0 4.25rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(
      ellipse 85% 50% at 50% 100%,
      rgba(236, 72, 153, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle 55% at 72% 28%,
      rgba(251, 191, 36, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle 40% at 22% 60%,
      rgba(147, 51, 234, 0.2) 0%,
      transparent 42%
    );
}

.hero-bg-stars {
  position: absolute;
  inset: -5% -10%;
  opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(255, 255, 255, 0.95) 50%, transparent 50%),
    radial-gradient(1px 1px at 22% 8%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 92% 18%, rgba(255, 251, 214, 0.85) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 42%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 52% 6%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
    radial-gradient(1px 1px at 38% 28%, rgba(255, 255, 255, 0.45) 50%, transparent 50%),
    radial-gradient(1px 1px at 14% 55%, rgba(254, 240, 255, 0.55) 50%, transparent 50%),
    radial-gradient(1px 1px at 68% 12%, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  mix-blend-mode: screen;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
}

.hero-blob--a {
  width: min(70vw, 380px);
  height: min(70vw, 380px);
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -8%;
  right: -15%;
}

.hero-blob--b {
  width: min(55vw, 280px);
  height: min(55vw, 280px);
  background: radial-gradient(circle, #f59e0b 0%, transparent 65%);
  bottom: -5%;
  left: -8%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn-direct {
  background: linear-gradient(135deg, #3b82f6 0%, var(--accent-purple) 60%, var(--glow-gold) 150%);
  box-shadow: 0 4px 22px rgba(59, 130, 246, 0.4);
}
.btn-direct:hover {
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
}

@media (max-width: 640px) {
  .hero-cta .btn {
    width: 100%;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-magenta) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(232, 121, 249, 0.15);
  border: 1px solid rgba(232, 121, 249, 0.4);
  color: var(--accent-magenta);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
}

/* ==========================================================================
   スマホモックアップ (Phone Mockups)
   ========================================================================== */
.hero-mocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 430px;
  margin-inline: auto;
}

@media (min-width: 860px) {
  .hero-mocks {
    margin-inline: 0 auto;
    margin-inline-start: auto;
  }
}

.phone {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(
    165deg,
    rgba(76, 29, 149, 0.35) 0%,
    rgba(16, 6, 32, 0.85) 100%
  );
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(251, 191, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.phone-notch {
  height: 14px;
  background: linear-gradient(180deg, #2e1065 0%, #1f1035 100%);
}

.phone-body {
  padding: 12px;
  min-height: 172px;
  font-size: 0.74rem;
  color: rgba(237, 233, 254, 0.85);
}

.phone-label {
  opacity: 0.65;
  margin-bottom: 10px;
  font-weight: 600;
}

.phone.mock-list .thumb-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}

.phone.mock-list .thumb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 9px;
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.4);
}

.thumb-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thumb-text .title {
  font-weight: 700;
  color: var(--text);
}

.tag {
  display: inline-block;
  align-self: flex-start;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
}

.tag--novel { background: rgba(192, 132, 252, 0.3); color: #e9d5ff; border: 1px solid rgba(192, 132, 252, 0.5); }
.tag--gallery { background: rgba(251, 191, 36, 0.25); color: #fde68a; border: 1px solid rgba(251, 191, 36, 0.5); }

.thumb--novel { background: linear-gradient(135deg, #a855f7, #6366f1) !important; }
.thumb--gallery { background: linear-gradient(135deg, #ec4899, #f59e0b) !important; }
.thumb--empty { background: rgba(255,255,255,0.05) !important; border: 1px dashed rgba(255,255,255,0.2); box-shadow: none !important; }

.phone.mock-play .viewport {
  height: 150px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 25%, rgba(251, 191, 36, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.25) 0%, transparent 45%),
    linear-gradient(180deg, #1e0b38 0%, #0f0620 88%);
  display: grid;
  place-items: center;
  color: rgba(233, 213, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.45);
}

.icon-glow {
  font-size: 2rem;
  filter: drop-shadow(0 0 12px var(--glow-gold));
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   メリット体験メリットグリッド (Value Section)
   ========================================================================== */
.list-check-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .list-check-grid { grid-template-columns: repeat(3, 1fr); }
}

.list-check-grid li {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.list-check-grid li:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.list-icon {
  font-size: 1.75rem;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem;
  border-radius: 12px;
  line-height: 1;
}

.list-content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.list-content p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   機能特徴グリッドカード (Features Section)
   ========================================================================== */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

.card-rich {
  background: linear-gradient(145deg, rgba(42, 24, 78, 0.4) 0%, rgba(20, 10, 35, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.card-rich:hover {
  border-color: rgba(232, 121, 249, 0.5);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.25);
  transform: scale(1.02);
}

.card-rich h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.card-rich p {
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   3ステップフロー (Steps Section)
   ========================================================================== */
.steps-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps-flow {
    flex-direction: row;
    justify-content: space-between;
  }
}

.step-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  flex: 1;
  position: relative;
  width: 100%;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(251, 191, 36, 0.15);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--border-strong);
  font-weight: bold;
}

@media (max-width: 767px) {
  .step-arrow { transform: rotate(90deg); margin: 0.25rem 0; }
}

/* ==========================================================================
   スクショ解説ガイド（画像の縮小・文字潰れ防止固定スタイル）
   ========================================================================== */
.compact-tutorial-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.tutorial-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: rgba(15, 7, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 14px;
}

.highlight-row {
  background: linear-gradient(90deg, rgba(88, 28, 135, 0.4) 0%, rgba(15, 7, 30, 0.6) 100%);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.tutorial-info {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.num-badge--gold {
  background: var(--glow-gold);
  color: #1a0528;
  box-shadow: 0 0 10px var(--glow-gold);
}

.tutorial-info h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  color: #fef3ff;
}

.tutorial-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.tutorial-thumb-wrap {
  margin: 0;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 150px;
  min-width: 140px;
  display: flex;
  justify-content: center;
}

.tutorial-shot-mini {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 580px) {
  .tutorial-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .tutorial-thumb-wrap {
    width: 100%;
    flex-basis: auto;
    justify-content: center;
  }
  .tutorial-shot-mini {
    width: 160px;
  }
}

/* ==========================================================================
   公式サイトダウンロードリンク ＋ QRコード連携
   ========================================================================== */
.direct-dl-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.dl-qr-code {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.dl-qr-code img {
  border-radius: 6px;
  background: #fff;
  padding: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dl-qr-code:hover img {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(192, 132, 252, 0.4);
}

.qr-tooltip {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(15, 5, 30, 0.95);
  border: 1px solid var(--border-strong);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.dl-qr-code:hover .qr-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
  .direct-dl-wrapper {
    width: 100%;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .direct-dl-wrapper .btn-direct {
    flex: 1;
    width: auto;
  }

  .dl-qr-code img {
    width: 44px;
    height: 44px;
  }

  .qr-tooltip {
    display: none;
  }
}

/* ==========================================================================
   よくある質問 (FAQ)
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.92rem 1.05rem;
  margin-bottom: 0.7rem;
  backdrop-filter: blur(6px);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq summary:focus-visible {
  outline: 2px solid var(--glow-gold);
}

.inline-code {
  background: rgba(46, 16, 101, 0.55);
  padding: 0.12rem 0.42rem;
  border-radius: 6px;
  color: var(--text);
  border: 1px solid rgba(251, 191, 36, 0.2);
  font-size: 0.9em;
}

.faq p {
  margin: 0.72rem 0 0;
  font-size: 0.93rem;
  color: var(--muted);
}

/* ==========================================================================
   フッター (Footer)
   ========================================================================== */
.site-footer {
  padding: 2.6rem 0 3rem;
  color: rgba(216, 201, 255, 0.85);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(8, 2, 20, 0.55) 100%
  );
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-links a {
  color: rgba(233, 213, 255, 0.88);
}

.footer-links a:hover {
  color: var(--glow-gold);
}

.footer-note {
  font-size: 0.82rem;
  margin-top: 1.2rem;
  color: rgba(196, 181, 235, 0.78);
}

/* ==========================================================================
   エフェクトアニメーション (Animations)
   ========================================================================== */
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-reverse { animation: floatReverse 4.5s ease-in-out infinite; }
.animate-pulse { animation: pulseGlow 2s infinite alternate; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 4px 12px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.1); }
  100% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.4); border-color: var(--glow-gold); }
}

.animation-delay-1 { animation-delay: 0.2s; }
.animation-delay-2 { animation-delay: 0.4s; }
.animation-delay-3 { animation-delay: 0.6s; }