/* ============================================================
   BSD Premium Signals — Dark Gold Theme
   signals.getreplytube.com
   ============================================================ */

:root {
  --bg:          #07070f;
  --bg-card:     #0d0d1a;
  --bg-card2:    #111122;
  --gold:        #FFD700;
  --gold-light:  #FFE566;
  --gold-dim:    #CC9900;
  --gold-glow:   rgba(255, 215, 0, 0.18);
  --gold-border: rgba(255, 215, 0, 0.25);
  --text:        #f0f0f0;
  --text-muted:  #777;
  --text-dim:    #aaa;
  --green:       #00e676;
  --red:         #ff1744;
  --radius:      14px;
  --radius-lg:   22px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Ambient glow background ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 30%, rgba(255,215,0,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(255,165,0,0.03) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ── Particles canvas ── */
#particles { position:fixed; inset:0; z-index:0; pointer-events:none; opacity:0.5; }

/* ── Section layout ── */
section { position:relative; z-index:1; }
.container { max-width:900px; margin:0 auto; padding:0 20px; }

/* ────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 20px 40px;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(255,215,0,0); }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 .gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* User greeting */
.user-greeting {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 15px; font-weight: 600;
  margin-bottom: 28px;
  color: var(--gold-light);
}
.user-greeting img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
#user-greeting { display: none; }

/* Spots bar */
.spots-wrap {
  width: 100%; max-width: 520px;
  margin: 0 auto 32px;
}
.spots-label {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 8px;
}
.spots-label strong { color: var(--gold); font-size: 15px; }
.spots-track {
  background: rgba(255,255,255,0.07);
  border-radius: 50px; height: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  border-radius: 50px;
  transition: width 1s ease;
  box-shadow: 0 0 12px rgba(255,215,0,0.6);
}
.spots-warning {
  margin-top: 8px;
  font-size: 13px; color: #ff6b35;
  display: flex; align-items: center; gap: 6px;
}

/* CTA Button */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #CC9900, #FFD700, #FFA500);
  color: #000;
  border: none; border-radius: 50px;
  padding: 18px 40px;
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,215,0,0.35), 0 0 60px rgba(255,215,0,0.15);
  transition: transform .2s, box-shadow .2s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  border-radius: 50px;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 48px rgba(255,215,0,0.5), 0 0 80px rgba(255,215,0,0.25);
}
.cta-btn:active { transform: translateY(0) scale(0.98); }

.cta-small {
  font-size: 13px; color: var(--text-muted);
  margin-top: 12px;
}

/* ────────────────────────────────────────────────
   SOCIAL TICKER
──────────────────────────────────────────────── */
.ticker-wrap {
  position: relative; z-index: 1;
  background: rgba(255,215,0,0.06);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 48px;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
}
.ticker-item .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
}
.ticker-item strong { color: var(--text); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────
   PICKS SECTION
──────────────────────────────────────────────── */
.picks-section {
  padding: 72px 20px;
  text-align: center;
}
.section-tag {
  display: inline-block;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; margin-bottom: 10px;
}
.section-sub {
  color: var(--text-dim); font-size: 15px;
  margin-bottom: 40px;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto 32px;
}

.pick-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.pick-card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}
.pick-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

.pick-card .league {
  font-size: 11px; font-weight: 700;
  color: var(--gold-dim); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.pick-card .match {
  font-size: 15px; font-weight: 700;
  margin-bottom: 6px;
}
.pick-card .ko {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 14px;
}
.pick-card .prediction {
  display: flex; align-items: center; justify-content: space-between;
}
.pick-label {
  font-size: 12px; color: var(--text-muted);
}
.pick-value {
  background: rgba(255,215,0,0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 13px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.conf-bar-wrap { margin-top: 14px; }
.conf-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-muted);
  margin-bottom: 5px;
}
.conf-bar {
  background: rgba(255,255,255,0.07);
  border-radius: 50px; height: 5px; overflow: hidden;
}
.conf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 50px;
}

/* Blurred locked cards */
.pick-card.locked {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

/* Blur overlay */
.blur-overlay {
  position: relative; z-index: 2;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(7,7,15,0.85) 60%, transparent 100%);
  margin-top: -120px;
  padding: 140px 20px 40px;
  text-align: center;
}
.blur-msg {
  font-size: 22px; font-weight: 800;
  margin-bottom: 8px;
}
.blur-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }

/* ────────────────────────────────────────────────
   RESULTS TABLE
──────────────────────────────────────────────── */
.results-section {
  padding: 72px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,215,0,0.02) 50%, transparent 100%);
}
.results-table {
  max-width: 780px; margin: 40px auto;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.results-table table {
  width: 100%; border-collapse: collapse;
}
.results-table thead {
  background: rgba(255,215,0,0.08);
}
.results-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
}
.results-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.results-table tbody tr:hover { background: rgba(255,215,0,0.03); }
.badge-win {
  background: rgba(0,230,118,0.15);
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--green);
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.badge-loss {
  background: rgba(255,23,68,0.15);
  border: 1px solid rgba(255,23,68,0.3);
  color: var(--red);
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

/* Stats row */
.stats-row {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-top: 48px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 40px; text-align: center;
  min-width: 160px;
  position: relative; overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}
.stat-num {
  font-size: 2.2rem; font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  display: block;
}
.stat-lbl {
  font-size: 13px; color: var(--text-muted);
  margin-top: 4px; display: block;
}

/* ────────────────────────────────────────────────
   LIVE MATCH COUNTDOWN
──────────────────────────────────────────────── */
.live-section {
  padding: 72px 20px;
  text-align: center;
}
.live-dot {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.live-dot::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.2; }
}

.live-match-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 560px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.live-match-card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--red), #ff6b35, var(--gold));
}
.live-teams {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 8px;
}
.live-vs {
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 4px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
}
.live-league {
  font-size: 13px; color: var(--gold-dim);
  margin-bottom: 24px;
}
.countdown-row {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 28px;
}
.countdown-box {
  background: rgba(255,215,0,0.07);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 14px 18px; min-width: 70px;
  text-align: center;
}
.countdown-num {
  font-size: 2rem; font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-lbl { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.live-pick-locked {
  background: rgba(255,215,0,0.05);
  border: 1px dashed var(--gold-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.live-pick-locked .lock-icon { font-size: 1.5rem; }
.live-pick-locked .lock-text {
  text-align: left;
  font-size: 14px; font-weight: 700;
}
.live-pick-locked .lock-text span {
  display: block; font-size: 12px;
  color: var(--text-muted); font-weight: 400; margin-top: 2px;
}

/* ────────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────────── */
.how-section {
  padding: 72px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,215,0,0.02) 50%, transparent 100%);
}
.steps {
  display: flex; gap: 20px;
  max-width: 820px; margin: 48px auto 0;
  flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 200px; max-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: #000;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* ────────────────────────────────────────────────
   FINAL CTA
──────────────────────────────────────────────── */
.final-cta {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,215,0,0.05) 0%, transparent 70%);
}
.final-cta h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900; margin-bottom: 16px;
}
.price-tag {
  font-size: 1.1rem; color: var(--text-dim);
  margin-bottom: 32px;
}
.price-tag .price-now {
  color: var(--gold); font-size: 2rem; font-weight: 900;
}
.price-tag .price-next {
  color: var(--text-muted); text-decoration: line-through; font-size: 1rem;
}
.guarantee {
  margin-top: 20px; font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 20px; text-align: center;
  color: var(--text-muted); font-size: 13px;
  position: relative; z-index:1;
}
footer a { color: var(--gold-dim); text-decoration: none; }

/* ────────────────────────────────────────────────
   GAMBLING WARNING MODAL
──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset:0; z-index:1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity:0; pointer-events:none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity:1; pointer-events:all; }

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,215,0,0.08);
  transform: translateY(20px) scale(0.97);
  transition: transform .3s;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.warning-icon {
  font-size: 3.5rem; display: block; text-align: center;
  margin-bottom: 20px;
  animation: warning-pulse 1.5s ease-in-out infinite;
}
@keyframes warning-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

.modal-box h2 {
  text-align: center;
  font-size: 1.4rem; font-weight: 800;
  color: #ff6b35; margin-bottom: 20px;
}
.warning-list {
  list-style: none;
  margin-bottom: 28px;
}
.warning-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-dim);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.warning-list li:last-child { border-bottom: none; }
.warning-list li::before {
  content: '⚠';
  flex-shrink: 0; font-size: 14px; margin-top: 2px;
}
.modal-btns {
  display: flex; gap: 12px;
}
.btn-accept {
  flex: 1;
  background: linear-gradient(135deg, #CC9900, #FFD700);
  color: #000; border: none; border-radius: 50px;
  padding: 14px; font-size: 15px; font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.4);
}
.btn-decline {
  flex: 1;
  background: transparent;
  color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 14px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-decline:hover { background: rgba(255,255,255,0.05); }

/* ────────────────────────────────────────────────
   EMAIL MODAL
──────────────────────────────────────────────── */
#email-modal .modal-box { max-width: 420px; }
#email-modal h2 { font-size:1.3rem; text-align:center; margin-bottom:8px; }
#email-modal p  { text-align:center; color:var(--text-dim); font-size:14px; margin-bottom:24px; }
.input-group { position:relative; margin-bottom:20px; }
.input-group input {
  width:100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 15px; color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.input-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}
.input-group input::placeholder { color: var(--text-muted); }

/* ────────────────────────────────────────────────
   SUCCESS / LOADING STATES
──────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  z-index: 9999;
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.gold  { color: var(--gold); }
.toast.green { color: var(--green); }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 80px 16px 40px; }
  .live-match-card { padding: 24px 16px; }
  .modal-box { padding: 28px 20px; }
  .modal-btns { flex-direction: column; }
  .stats-row { gap: 12px; }
  .stat-box { padding: 20px 24px; }
  .cta-btn { padding: 16px 28px; font-size:15px; }
  .countdown-row { gap: 10px; }
  .countdown-box { min-width: 58px; padding: 10px 12px; }
}
