/* ===== COINS PAGE ===== */
.coins-page { background: var(--bg); }

.coins-main {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(36px + var(--nav-h) + 60px) 24px 80px;
}

.active-link { color: var(--green) !important; }

/* ===== BAŞLIK ===== */
.coins-header { text-align: center; margin-bottom: 60px; }
.coins-tag {
  display: inline-block;
  background: rgba(255,215,64,0.12);
  border: 1px solid rgba(255,215,64,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: tagPulse 2.5s ease-in-out infinite;
}
.coins-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.coins-title .highlight {
  -webkit-text-stroke: 3px var(--gold);
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,215,64,0.4));
}
.coins-sub { color: var(--muted); font-size: 1rem; margin-bottom: 16px; }
.platform-badge {
  display: inline-block;
  background: rgba(0,150,255,0.1);
  border: 1px solid rgba(0,150,255,0.3);
  color: #60b4ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== SLIDER BÖLÜMÜ ===== */
.slider-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 32px;
}

/* Coin display */
.coin-display {
  text-align: center;
  margin-bottom: 48px;
}
.coin-icon { font-size: 3.5rem; margin-bottom: 8px; animation: coinSpin 3s ease-in-out infinite; }
@keyframes coinSpin {
  0%,100% { transform: rotateY(0deg); }
  50%      { transform: rotateY(20deg); }
}
.coin-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.coin-label { font-size: 0.85rem; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; margin-top: 6px; }

/* Slider */
.slider-wrap { margin-bottom: 40px; }
.slider-track {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.slider-fill {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #ffaa00);
  border-radius: 3px;
  pointer-events: none;
  transition: width 0.15s;
  box-shadow: 0 0 12px rgba(255,215,64,0.4);
  z-index: 1;
}

input[type="range"]#coinSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

input[type="range"]#coinSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(255,215,64,0.5);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 3;
}
input[type="range"]#coinSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 24px rgba(255,215,64,0.7);
}
input[type="range"]#coinSlider::-moz-range-thumb {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(255,215,64,0.5);
  cursor: pointer;
}

.slider-arrow {
  position: absolute;
  bottom: -8px;
  font-size: 1rem;
  color: var(--gold);
  pointer-events: none;
  transition: left 0.15s;
  transform: translateX(-50%);
  z-index: 4;
  text-shadow: 0 0 8px rgba(255,215,64,0.8);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: 8px;
}
.slider-labels span {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.slider-labels span.active-label { color: var(--gold); }

/* Fiyat kutusu */
.price-box {
  background: rgba(255,215,64,0.05);
  border: 1px solid rgba(255,215,64,0.25);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.price-box-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.pb-coins {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pb-platform { font-size: 0.8rem; color: var(--muted); }
.pb-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pb-per { font-size: 0.78rem; color: var(--muted); text-align: right; }

.btn-buy {
  width: 100%;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
}
.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,215,64,0.4);
}

/* Uyarı */
.coin-warn {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,180,0,0.07);
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.83rem;
  color: #ffd580;
  line-height: 1.6;
}
.coin-warn span { font-size: 1.1rem; flex-shrink: 0; }
.coin-warn strong { color: #ffd580; }

/* ===== ÖZELLİKLER ===== */
.coin-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.cf-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.cf-item:hover { border-color: rgba(255,215,64,0.3); transform: translateY(-4px); }
.cf-icon { font-size: 1.6rem; flex-shrink: 0; }
.cf-text strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 4px; }
.cf-text span { font-size: 0.78rem; color: var(--muted); }

/* ===== NASIL ÇALIŞIR ===== */
.how-coins { text-align: center; }
.how-coins .section-title { margin-bottom: 40px; }
.how-coins-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hcs {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  width: 180px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.hcs:hover { border-color: rgba(255,215,64,0.3); transform: translateY(-4px); }
.hcs-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,215,64,0.12);
  border: 1px solid rgba(255,215,64,0.3);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.hcs h4 { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
.hcs p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.hcs-arrow { font-size: 1.5rem; color: var(--muted); margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .slider-section { padding: 32px 20px; }
  .coin-features { grid-template-columns: repeat(2, 1fr); }
  .how-coins-steps { flex-direction: column; align-items: center; }
  .hcs-arrow { transform: rotate(90deg); margin: 0; }
  .hcs { width: 100%; max-width: 280px; }
  .coin-amount { font-size: 3rem; }
}

/* ===== FUT COIN GÖRSEL ===== */
.fut-coin-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: coinFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(255,215,64,0.4));
}
@keyframes coinFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
.tag-coin-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}

/* ===== PLATFORM SEÇİMİ ===== */
.platform-select {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.plat-btn {
  background: var(--bg3);
  border: 2px solid var(--border);
  color: var(--muted);
  padding: 12px 36px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.plat-btn:hover { border-color: rgba(255,215,64,0.4); color: var(--text); }
.plat-btn.active {
  background: rgba(255,215,64,0.1);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255,215,64,0.15);
}
.plat-btn.console-active {
  background: rgba(0,150,255,0.1);
  border-color: #60b4ff;
  color: #60b4ff;
  box-shadow: 0 0 20px rgba(0,150,255,0.15);
}

/* ===== KONSOL TEMASI ===== */
.coins-page.console-mode {
  --green:    #0070f3;
  --gold:     #00c6ff;
  --border-g: rgba(0,198,255,0.25);
}

.coins-page.console-mode body,
.coins-page.console-mode {
  background: #070714;
}

/* Konsol arka plan */
.coins-page.console-mode .coins-main {
  background: transparent;
}

/* Konsol header parıltı */
.coins-page.console-mode::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(0,70,200,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 70%, rgba(100,0,200,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0,150,255,0.07) 0%, transparent 70%);
  animation: consoleBgAnim 6s ease-in-out infinite alternate;
}
@keyframes consoleBgAnim {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* Konsol başlık */
.coins-page.console-mode .coins-tag {
  background: rgba(0,112,243,0.12);
  border-color: rgba(0,112,243,0.35);
  color: #60b4ff;
}
.coins-page.console-mode .coins-title .highlight {
  -webkit-text-stroke: 3px #0070f3;
  filter: drop-shadow(0 0 20px rgba(0,112,243,0.6));
}
.coins-page.console-mode .platform-badge {
  background: rgba(160,0,255,0.1);
  border-color: rgba(160,0,255,0.3);
  color: #c084fc;
}

/* Konsol slider */
.coins-page.console-mode .slider-fill {
  background: linear-gradient(90deg, #0070f3, #a855f7);
  box-shadow: 0 0 12px rgba(0,112,243,0.5);
}
.coins-page.console-mode input[type="range"]#coinSlider::-webkit-slider-thumb {
  background: linear-gradient(135deg, #0070f3, #a855f7);
  box-shadow: 0 4px 16px rgba(0,112,243,0.6);
}
.coins-page.console-mode .slider-labels span.active-label { color: #60b4ff; }
.coins-page.console-mode .slider-arrow { color: #60b4ff; text-shadow: 0 0 8px rgba(0,112,243,0.8); }

/* Konsol coin miktarı */
.coins-page.console-mode .coin-amount { color: #60b4ff; }
.coins-page.console-mode .coin-icon .fut-coin-img {
  filter: drop-shadow(0 8px 24px rgba(0,112,243,0.5));
}

/* Konsol fiyat kutusu */
.coins-page.console-mode .price-box {
  background: rgba(0,112,243,0.06);
  border-color: rgba(0,112,243,0.25);
}
.coins-page.console-mode .pb-price { color: #60b4ff; }
.coins-page.console-mode .btn-buy {
  background: linear-gradient(135deg, #0070f3, #a855f7);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,112,243,0.25);
}
.coins-page.console-mode .btn-buy:hover {
  box-shadow: 0 10px 30px rgba(0,112,243,0.5);
}

/* Konsol kartlar */
.coins-page.console-mode .cf-item:hover,
.coins-page.console-mode .hcs:hover {
  border-color: rgba(0,112,243,0.35);
}
.coins-page.console-mode .hcs-num {
  background: rgba(0,112,243,0.12);
  border-color: rgba(0,112,243,0.3);
  color: #60b4ff;
}

/* Konsol platform butonu */
.coins-page.console-mode .plat-btn.console-active {
  background: rgba(0,112,243,0.12);
  border-color: #0070f3;
  color: #60b4ff;
  box-shadow: 0 0 20px rgba(0,112,243,0.2);
}

/* Geçiş animasyonu */
.coins-page { transition: background 0.5s ease; }
.coins-page *:not(img) { transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s; }

/* ===== YENİ NASIL ÇALIŞIR ===== */
.how-coins {
  text-align: center;
  padding: 80px 0 20px;
}
.how-coins .section-title { margin-bottom: 10px; }
.how-coins .section-sub { margin-bottom: 48px; }

.hiw-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hiw-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  width: 260px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.hiw-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,215,64,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hiw-card-mid {
  background: rgba(255,215,64,0.05);
  border-color: rgba(255,215,64,0.25);
  transform: scale(1.03);
}
.hiw-card-mid:hover { transform: scale(1.03) translateY(-8px); }

.hiw-step-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  color: var(--text);
}
.hiw-num {
  color: var(--muted);
  font-weight: 400;
  margin-right: 4px;
}
.hiw-accent { color: var(--gold); }

.hiw-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,215,64,0.08);
  border: 2px solid rgba(255,215,64,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  transition: background 0.3s, border-color 0.3s;
}
.hiw-card:hover .hiw-icon-wrap {
  background: rgba(255,215,64,0.15);
  border-color: rgba(255,215,64,0.4);
}

.hiw-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.hiw-arrow {
  font-size: 3rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 0 8px;
  margin-bottom: 0;
  opacity: 0.6;
}

.hiw-note {
  margin-top: 36px;
  display: inline-block;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Konsol modunda renk değişimi */
.coins-page.console-mode .hiw-accent { color: #60b4ff; }
.coins-page.console-mode .hiw-icon-wrap { background:rgba(0,112,243,0.08); border-color:rgba(0,112,243,0.2); }
.coins-page.console-mode .hiw-card:hover .hiw-icon-wrap { background:rgba(0,112,243,0.15); border-color:rgba(0,112,243,0.4); }
.coins-page.console-mode .hiw-card-mid { background:rgba(0,112,243,0.05); border-color:rgba(0,112,243,0.25); }
.coins-page.console-mode .hiw-card:hover { border-color:rgba(0,112,243,0.35); }
.coins-page.console-mode .hiw-arrow { color:#60b4ff; }

@media (max-width: 900px) {
  .hiw-cards { flex-direction: column; align-items: center; gap: 0; }
  .hiw-arrow { transform: rotate(90deg); padding: 4px 0; }
  .hiw-card { width: 100%; max-width: 360px; }
  .hiw-card-mid { transform: scale(1); }
  .hiw-card-mid:hover { transform: translateY(-8px); }
}

/* ===== HIW KART GÖRSELLERİ ===== */
.hiw-icon-wrap {
  width: 160px !important;
  height: 200px !important;
  border-radius: 12px !important;
  background: transparent !important;
  border: none !important;
  margin: 0 auto 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  transition: transform 0.3s;
}
.hiw-card:hover .hiw-card-img { transform: translateY(-6px) scale(1.04); }

/* ===== YENİ NASIL ÇALIŞIR — SİNEMATİK TASARIM ===== */
.how-coins { padding: 60px 0 20px; }

.hiw-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(120,0,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(255,180,0,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0515 0%, #0d0820 50%, #080510 100%);
  border-radius: 32px;
  border: 1px solid rgba(120,0,255,0.15);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.hiw-bg::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), #a855f7, var(--gold), transparent);
  border-radius: 2px;
}

/* Header */
.hiw-header { text-align: center; margin-bottom: 60px; }
.hiw-tag {
  display: inline-block;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.3);
  color: #c084fc;
  font-size: 0.72rem;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hiw-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: var(--text);
}
.hiw-gold { color: var(--gold); }
.hiw-sub { color: var(--muted); font-size: 1rem; }

/* Flow */
.hiw-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* Adım kartı */
.hiw-step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px 24px;
  width: 240px;
  text-align: center;
  position: relative;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  backdrop-filter: blur(10px);
}
.hiw-step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,215,64,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,215,64,0.08);
}
.hiw-step-mid {
  background: rgba(255,215,64,0.04);
  border-color: rgba(255,215,64,0.2);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,215,64,0.1);
}
.hiw-step-mid:hover { transform: scale(1.05) translateY(-10px); }

/* Adım numarası */
.hiw-step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid rgba(168,85,247,0.4);
  color: #c084fc;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.hiw-step-num.gold {
  border-color: rgba(255,215,64,0.5);
  color: var(--gold);
}

/* Görsel wrap */
.hiw-step-img-wrap {
  position: relative;
  width: 160px;
  height: 200px;
  margin: 16px auto 20px;
}
.hiw-step-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.6));
  transition: transform 0.35s;
}
.hiw-step-card:hover .hiw-step-img { transform: scale(1.06) translateY(-4px); }

.hiw-step-glow {
  position: absolute;
  inset: 10px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.2) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
.gold-glow { background: radial-gradient(ellipse, rgba(255,215,64,0.2) 0%, transparent 70%); }

/* İçerik */
.hiw-step-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: var(--text);
}
.hiw-step-content p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.hiw-step-content strong { color: var(--gold); }

/* Bağlayıcı ok */
.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 12px;
  margin-top: -20px;
}
.hiw-connector-line {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, transparent, rgba(255,215,64,0.4), transparent);
}
.hiw-connector-arrow {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  animation: arrowPulse 1.5s ease-in-out infinite alternate;
}
@keyframes arrowPulse {
  from { opacity: 0.4; transform: translateX(-3px); }
  to   { opacity: 1;   transform: translateX(3px); }
}

/* Disclaimer */
.hiw-disclaimer {
  text-align: center;
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 0.82rem;
  color: var(--muted);
  width: 100%;
  justify-content: center;
}

/* Konsol modu uyumu */
.coins-page.console-mode .hiw-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,100,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(0,150,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #050a1a 0%, #080d20 50%, #05080f 100%);
  border-color: rgba(0,100,255,0.15);
}
.coins-page.console-mode .hiw-bg::before {
  background: linear-gradient(90deg, transparent, #60b4ff, #0070f3, #60b4ff, transparent);
}
.coins-page.console-mode .hiw-tag { background:rgba(0,100,255,0.12); border-color:rgba(0,100,255,0.3); color:#60b4ff; }
.coins-page.console-mode .hiw-step-glow { background:radial-gradient(ellipse, rgba(0,100,255,0.2) 0%, transparent 70%); }
.coins-page.console-mode .gold-glow { background:radial-gradient(ellipse, rgba(0,150,255,0.2) 0%, transparent 70%); }
.coins-page.console-mode .hiw-connector-arrow { color:#60b4ff; }
.coins-page.console-mode .hiw-step-mid { background:rgba(0,112,243,0.04); border-color:rgba(0,112,243,0.2); box-shadow:0 0 40px rgba(0,112,243,0.1); }
.coins-page.console-mode .hiw-step-num.gold { border-color:rgba(0,112,243,0.5); color:#60b4ff; }
.coins-page.console-mode .hiw-step-card:hover { border-color:rgba(0,112,243,0.3); box-shadow:0 24px 60px rgba(0,0,0,0.5),0 0 40px rgba(0,112,243,0.08); }

/* Responsive */
@media (max-width: 900px) {
  .hiw-flow { flex-direction: column; align-items: center; }
  .hiw-connector { flex-direction: row; padding: 8px 0; margin-top: 0; }
  .hiw-connector-line { width: 20px; height: 1px; }
  .hiw-connector-arrow { transform: rotate(90deg); }
  .hiw-step-card { width: 100%; max-width: 320px; }
  .hiw-step-mid { transform: scale(1); }
  .hiw-step-mid:hover { transform: translateY(-10px); }
  .hiw-bg { padding: 40px 20px; }
}

/* ===== GEREKSİNİMLER ===== */
.coin-requirements {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.req-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 16px;
}
.req-items { display: flex; flex-direction: column; gap: 12px; }
.req-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
}
.req-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.req-item strong { display: block; color: var(--text); margin-bottom: 2px; }
.req-item span { color: var(--muted); line-height: 1.5; }

/* Konsol modunda renk */
.coins-page.console-mode .coin-requirements {
  background: rgba(0,100,255,0.06);
  border-color: rgba(0,100,255,0.2);
}
.coins-page.console-mode .req-title { color: #60b4ff; }
