/* ============================================================
   index.php-only styles. Loaded in addition to app.css.
   ============================================================ */

.bt-hero { min-height: 88vh; }

.bt-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .bt-hero-inner { grid-template-columns: 1fr; }
  .bt-hero { min-height: auto; }
}

.bt-hero-title { font-size: clamp(2rem, 5vw, 3.4rem); }

/* Typewriter welcome greeting */
.bt-typed-wrap { display: inline-flex; align-items: baseline; flex-wrap: wrap; min-height: 1.15em; }
.bt-typed-text {
  background: linear-gradient(90deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: pre-wrap;
}
.bt-typed-cursor { color: #c084fc; font-weight: 400; margin-left: 2px; animation: bt-blink 0.9s step-end infinite; }
@keyframes bt-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.bt-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.bt-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.bt-hero-btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bt-hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.4); color: #fff; }

.bt-hero-btn-ghost {
  padding: 14px 28px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bt-hero-btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

.bt-hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.bt-stat { display: flex; flex-direction: column; }
.bt-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.bt-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.bt-stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* Featured / hero card */
.bt-featured-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s;
}
.bt-featured-card:hover { transform: translateY(-6px); }
.bt-featured-img { width: 100%; height: 200px; object-fit: cover; display: block; background:#1e2240; }
.bt-featured-body { padding: 20px; }
.bt-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.bt-featured-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.4; }
.bt-featured-btn {
  display: block;
  text-align: center;
  padding: 11px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
}
.bt-featured-btn:hover { opacity: .9; color: #fff; }

/* Verify banner */
.bt-verify-banner {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-bottom: 1px solid #fde68a;
  color: #92400e;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bt-verify-banner i { color: #d97706; }
.bt-verify-banner a { color: #4f46e5; font-weight: 700; text-decoration: underline; }
.bt-verify-banner a:hover { color: #3730a3; }

/* Ticker */
.bt-ticker { background: #0d0f2b; padding: 10px 0; overflow: hidden; position: relative; }
.bt-ticker-track { display: flex; gap: 32px; animation: bt-scroll 30s linear infinite; width: max-content; }
.bt-ticker:hover .bt-ticker-track { animation-play-state: paused; }
.bt-ticker-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; color: rgba(255,255,255,0.7); font-size: 13px; flex-shrink: 0; }
.bt-ticker-img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; background: #1e2240; }
.bt-ticker-link {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  margin-left: 4px;
  transition: background .15s;
}
.bt-ticker-link:hover { background: #4f46e5; color: #fff; }
@keyframes bt-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* CTA banner */
.bt-cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 72px;
}
.bt-cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
  border-radius: 50%;
}
.bt-cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
.bt-cta-banner p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 28px; position: relative; }
.bt-cta-banner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.bt-cta-banner a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.5); color: #fff; }
