/* ========================================
   LIFE4BETS — Design System
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --c-bg:        #050505;
  --c-surface:   #0a1a0d;
  --c-surface2:  #0f2414;
  --c-border:    #1a3a20;
  --c-green:     #0A1F11;
  --c-green-mid: #14532d;
  --c-gold:      #D4AF37;
  --c-gold-light:#f0d060;
  --c-white:     #ffffff;
  --c-muted:     #8a9e8e;
  --c-text:      #e8f0e9;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --shadow-green: 0 0 40px rgba(10,31,17,0.8);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  transition: var(--transition); letter-spacing: 0.01em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  color: #0a0a0a;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.4); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-outline:hover { background: rgba(212,175,55,0.08); transform: translateY(-2px); }

.btn-green {
  background: var(--c-surface2);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
}
.btn-green:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-2px); }

/* ── Section Helpers ── */
.section { padding: 100px 0; }
.section-alt { background: var(--c-surface); }

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 16px;
  padding: 4px 12px; border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--c-white); margin-bottom: 16px;
}
.section-subtitle { font-size: 1.1rem; color: var(--c-muted); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Gold divider ── */
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  border-radius: 2px; margin: 20px auto 0;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--c-white); letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--c-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-white); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ── Language Switcher ── */
.lang-switcher { position: relative; }
.lang-btn {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-sm); padding: 8px 12px;
  font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--c-white); display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.lang-btn:hover { border-color: var(--c-gold); }
.lang-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-sm); padding: 8px; min-width: 120px;
  display: none; flex-direction: column; gap: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 1001;
}
.lang-dropdown.show { display: flex; }
.lang-dropdown button {
  background: none; text-align: left; padding: 8px 12px;
  font-size: 0.85rem; color: var(--c-muted); border-radius: 4px;
  transition: all 0.2s; width: 100%;
}
.lang-dropdown button:hover { background: rgba(212,175,55,0.1); color: var(--c-gold); }

/* ── RTL Support ── */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .hero-badge::before { margin-left: 8px; margin-right: 0; }
[dir="rtl"] .nav-inner, [dir="rtl"] .hero-ctas, [dir="rtl"] .hero-stats, [dir="rtl"] .method-icon, [dir="rtl"] .testi-author, [dir="rtl"] .footer-social, [dir="rtl"] .form-group { flex-direction: row-reverse; }
[dir="rtl"] .btn i { margin-left: 8px; margin-right: 0; }
[dir="rtl"] .book-features li::before { margin-left: 10px; margin-right: 0; }
[dir="rtl"] .faq-question { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lang-dropdown button { text-align: right; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--c-white); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/hero-bg.png');
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.85) 0%, rgba(10,31,17,0.7) 50%, rgba(5,5,5,0.9) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
  font-size: 0.8rem; font-weight: 600; color: var(--c-gold);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--c-gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; color: var(--c-white);
  line-height: 1.08; margin-bottom: 12px; letter-spacing: -0.02em;
  display: none; /* Hidden by default for i18n */
}
.hero-title.active { display: block; }
.hero-title .gold { color: var(--c-gold); }
.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--c-muted);
  margin-bottom: 40px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid var(--c-border); padding-top: 32px;
}
.hero-stat-value { font-family: 'Outfit',sans-serif; font-size: 2rem; font-weight: 800; color: var(--c-gold); }
.hero-stat-label { font-size: 0.8rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ── METHOD ── */
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.method-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.method-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.method-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.method-card:hover::before { opacity: 1; }
.method-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.method-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-white); margin-bottom: 10px; }
.method-card p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; }

/* ── TRACK RECORD ── */
.chart-wrapper {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 32px; margin-bottom: 40px;
  position: relative;
}
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.chart-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--c-white); }
.chart-legend { display: flex; gap: 20px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--c-muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
#roiChart { max-height: 320px; }
.chart-download-wrap { display: flex; justify-content: flex-end; margin-top: 20px; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* Monthly Table */
.monthly-table-box {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 32px; margin-bottom: 40px;
}
.table-scroll { overflow-x: auto; }
.monthly-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.monthly-table th {
  text-align: left; padding: 10px 16px;
  color: var(--c-muted); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--c-border);
}
.monthly-table td { padding: 10px 16px; border-bottom: 1px solid rgba(26,58,32,0.4); color: var(--c-text); }
.monthly-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.monthly-table .pos { color: #4ade80; font-weight: 600; }
.monthly-table .neg { color: #f87171; font-weight: 600; }
.monthly-table .total-row td {
  font-weight: 700; font-family: 'Outfit', sans-serif;
  border-top: 1px solid var(--c-border); border-bottom: none; color: var(--c-gold);
}
.monthly-table .total-row .pos { color: #4ade80; }
.monthly-table .total-row .neg { color: #f87171; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 40px; }
.stat-card {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 24px; text-align: center;
}
.stat-card .value { font-family: 'Outfit',sans-serif; font-size: 2rem; font-weight: 800; color: var(--c-gold); }
.stat-card .label { font-size: 0.8rem; color: var(--c-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-card .trend { font-size: 0.75rem; color: #4ade80; margin-top: 4px; }

.table-wrapper { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--c-border); }
table { width: 100%; border-collapse: collapse; background: var(--c-surface2); }
thead { background: rgba(212,175,55,0.06); }
th { padding: 14px 20px; text-align: left; font-family: 'Outfit',sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid var(--c-border); }
td { padding: 14px 20px; font-size: 0.9rem; color: var(--c-text); border-bottom: 1px solid rgba(255,255,255,0.04); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(212,175,55,0.03); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
}
.badge-green { background: rgba(74,222,128,0.1); color: #4ade80; }
.badge-gold { background: rgba(212,175,55,0.1); color: var(--c-gold); }
.badge-blue { background: rgba(96,165,250,0.1); color: #60a5fa; }
.positive { color: #4ade80; font-weight: 600; }
.negative { color: #f87171; font-weight: 600; }

/* ── BOOK ── */
#libro { background: linear-gradient(135deg, var(--c-green) 0%, var(--c-bg) 60%); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.book-img-wrap { position: relative; }
.book-img-wrap img { 
  border-radius: var(--r-lg); 
  width: 100%;
  height: auto;
  display: block;
}
.book-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.book-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--c-gold);
}
.book-desc { font-size: 1rem; color: var(--c-muted); margin-bottom: 32px; line-height: 1.7; }
.book-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.book-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--c-text); }
.book-features li::before { content: '✓'; color: var(--c-gold); font-weight: 800; margin-top: 1px; flex-shrink: 0; }

/* ── FORM ── */
.form-group { display: flex; gap: 12px; flex-wrap: wrap; }
.form-input {
  flex: 1; min-width: 200px;
  background: var(--c-surface2); border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm); padding: 14px 18px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--c-white);
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--c-muted); }
.form-input:focus { outline: none; border-color: var(--c-gold); }
.form-note { font-size: 0.75rem; color: var(--c-muted); margin-top: 10px; }
.form-note a { color: var(--c-gold); }

/* ── TESTIMONIALS ── */
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px; 
}
.testi-card {
  background: linear-gradient(145deg, #0a1f11, #06140b);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--r-md);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.testi-quote {
  color: var(--c-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.8;
}
.testi-text {
  font-size: 1.05rem;
  color: var(--c-white);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
  flex-grow: 1;
}
.testi-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}
.testi-source {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testi-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.testi-more-link {
  color: var(--c-gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  padding: 8px 16px;
  border-bottom: 1px solid transparent;
}
.testi-more-link:hover {
  letter-spacing: 0.02em;
  border-bottom-color: var(--c-gold);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-md); overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(212,175,55,0.3); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; background: none; font-family: 'Outfit',sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--c-white); text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--c-gold); }
.faq-icon { font-size: 1.2rem; color: var(--c-gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 0.9rem; color: var(--c-muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FOOTER ── */
footer {
  background: var(--c-surface); border-top: 1px solid var(--c-border);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--c-surface2); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition); color: var(--c-muted);
}
.social-btn:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-2px); }
.footer-col h4 { font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--c-white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--c-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--c-gold); }
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.footer-disclaimer {
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--r-sm); padding: 16px 20px;
  font-size: 0.75rem; color: var(--c-muted); line-height: 1.7;
}
.footer-disclaimer strong { color: var(--c-gold); }
.footer-copy { font-size: 0.8rem; color: var(--c-muted); text-align: center; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ── Notification Toast ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--c-surface2); border: 1px solid var(--c-gold);
  border-radius: var(--r-md); padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--c-white);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-img-wrap { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; flex-direction: column; align-items: center; text-align: center; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .mobile-menu { display: flex; }
  .chart-wrapper { padding: 16px; }
  .stat-card { padding: 16px; }
  .live-card { padding: 16px; }
  .testi-card { padding: 24px; }
  .section-header { margin-bottom: 40px; }
  .monthly-table-box { padding: 16px; }
  .monthly-table th, .monthly-table td { padding: 8px 10px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem !important; }
  .hero-tagline { font-size: 1rem; }
  .container { padding: 0 16px; }
  .nav-logo { font-size: 1.2rem; }
  .method-card { padding: 24px 20px; }
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--c-bg); padding: 100px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Outfit',sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--c-white); padding: 14px 0; border-bottom: 1px solid var(--c-border); }
.mobile-menu a:hover { color: var(--c-gold); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* Live Predictions */
.live-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.live-card {
  background: var(--c-bg-alt); border: 1px solid var(--c-border);
  border-radius: 16px; padding: 24px; position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.live-card:hover { transform: translateY(-5px); border-color: var(--c-gold); }
.live-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.sport-badge {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  color: var(--c-gold); display: flex; align-items: center; gap: 6px;
}
.live-date { font-size: 0.8rem; color: var(--c-muted); }
.live-card-content { position: relative; padding: 20px 0; }
.blur-box { filter: blur(8px); opacity: 0.3; user-select: none; }
.blur-text { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--c-white); }
.blur-odds { font-weight: 600; color: var(--c-gold); }
.lock-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--c-white); z-index: 2;
}
.lock-overlay i { font-size: 2rem; color: var(--c-gold); }
.lock-overlay span { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.live-cta-wrap { text-align: center; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* ── Payment Modal ── */
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center;
  z-index: 10000; padding: 20px; backdrop-filter: blur(10px);
}
.modal.open { display: flex; }
.modal-content {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 24px; padding: 40px; max-width: 500px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.close-modal {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  color: var(--c-muted); font-size: 2rem; cursor: pointer; transition: color 0.3s;
}
.close-modal:hover { color: var(--c-white); }
.modal-header h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; margin-bottom: 8px; color: var(--c-white); }
.modal-header p { color: var(--c-gold); font-weight: 700; margin-bottom: 32px; font-size: 1.1rem; }

.pay-card {
  background: var(--c-bg-alt); border: 1px solid var(--c-border);
  border-radius: 16px; padding: 24px; margin-bottom: 24px;
}
.pay-card-title { font-weight: 700; color: var(--c-white); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pay-card-title i { color: var(--c-gold); }

.qr-wrap { background: white; padding: 10px; border-radius: 12px; display: inline-block; margin-bottom: 16px; }
.qr-wrap img { display: block; width: 180px; height: 180px; }

.wallet-address {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  padding: 12px; border-radius: 8px; margin-bottom: 12px;
}
.wallet-address code { font-size: 0.8rem; color: var(--c-gold); word-break: break-all; }
.copy-btn { background: none; border: none; color: var(--c-muted); cursor: pointer; transition: color 0.3s; }
.copy-btn:hover { color: var(--c-gold); }

.pay-info { font-size: 0.9rem; color: var(--c-muted); }
.pay-info-sm { font-size: 0.8rem; color: var(--c-muted); margin-bottom: 16px; line-height: 1.4; }

.btn-full { width: 100%; justify-content: center; margin-top: 10px; }
.modal-footer { margin-top: 24px; border-top: 1px solid var(--c-border); padding-top: 24px; }
.modal-footer p { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 16px; }

@media (max-width: 480px) {
  .modal-content { padding: 30px 20px; }
  .modal-header h3 { font-size: 1.5rem; }
}
