@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --orange: #FF6A00;
  --orange-dark: #e05500;
  --orange-light: #fff3eb;
  --navy: #111827;
  --navy2: #1f2937;
  --gray: #f3f4f6;
  --gray2: #e5e7eb;
  --muted: #6b7280;
  --white: #ffffff;
  --text: #111827;
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: 'Nunito Sans', sans-serif; font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; }

/* ── PRELOADER ── */
.preloader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.preloader .spinner { width: 40px; height: 40px; border: 3px solid var(--gray2); border-top-color: var(--orange); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOPBAR ── */
.topbar-strip { background: var(--navy); padding: 7px 0; }
.topbar-strip .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-strip span { color: #9ca3af; font-size: 12px; font-weight: 600; letter-spacing: .5px; }
.topbar-strip .live-dot { display: inline-block; width: 7px; height: 7px; background: #ef4444; border-radius: 50%; margin-right: 6px; animation: pulse 1.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── HEADER ── */
.header { background: var(--white); border-bottom: 3px solid var(--orange); position: sticky; top: 0; z-index: 500; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo-wrap img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 8px 14px; border-radius: 6px; transition: all .2s; }
.nav-links a:hover { color: var(--orange); background: var(--orange-light); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }
.navbar-toggler { background: none; border: 2px solid var(--gray2); border-radius: 6px; padding: 6px 10px; cursor: pointer; display: none; }

/* ── FLASH ── */
.alert { border-radius: 8px; padding: 12px 16px; margin: 12px 0; font-size: 14px; font-weight: 600; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #16a34a; }
.alert-danger { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.alert-info { background: var(--orange-light); border: 1px solid #fed7aa; color: var(--orange-dark); }

/* ── BANNER ── */
.banner { background: var(--navy); position: relative; overflow: hidden; min-height: 580px; display: flex; align-items: center; }
.banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.banner-diagonal { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; background: var(--orange); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
.banner-img-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; display: flex; align-items: flex-end; justify-content: center; z-index: 2; }
.banner-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.banner-img-placeholder .img-slot { width: 320px; height: 480px; background: rgba(255,255,255,.1); border: 2px dashed rgba(255,255,255,.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: rgba(255,255,255,.5); font-size: 13px; text-align: center; }
.banner-img-placeholder .img-slot i { font-size: 36px; }
.banner-content { position: relative; z-index: 3; padding: 60px 0; }
.banner-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,106,0,.2); border: 1px solid rgba(255,106,0,.4); color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; margin-bottom: 20px; }
.banner-tag .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 1.2s infinite; }
.banner h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(52px, 7vw, 88px); font-weight: 900; color: var(--white); line-height: .95; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px; }
.banner h1 span { color: var(--orange); }
.banner-sub { color: #9ca3af; font-size: 16px; max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.btn-primary { display: inline-block; background: var(--orange); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 800; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; border: none; cursor: pointer; transition: all .2s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,106,0,.35); color: var(--white); }
.btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; margin-left: 12px; transition: all .2s; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.banner-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.banner-stat .num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; color: var(--orange); line-height: 1; }
.banner-stat .lbl { display: block; font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── SECTION TITLE ── */
.section-head { margin-bottom: 48px; }
.section-head .tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; margin-bottom: 12px; }
.section-head h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1; margin-bottom: 12px; }
.section-head h2 span { color: var(--orange); }
.section-head p { color: var(--muted); font-size: 15px; max-width: 520px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ── STATS BAND ── */
.stats-band { background: var(--orange); padding: 40px 0; }
.stats-band .stat-item { text-align: center; }
.stats-band .num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; display: block; }
.stats-band .lbl { font-size: 12px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: 4px; display: block; }
.stats-band .divider { width: 1px; background: rgba(255,255,255,.2); height: 60px; margin: auto; display: none; }
@media(min-width:768px) { .stats-band .divider { display: block; } }

/* ── HOW IT WORKS ── */
.how-section { padding: 80px 0; background: var(--white); }
.step-card { background: var(--white); border: 2px solid var(--gray2); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all .25s; position: relative; overflow: hidden; }
.step-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform .3s; }
.step-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,106,0,.12); }
.step-card:hover::before { transform: scaleX(1); }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 900; color: var(--gray2); line-height: 1; position: absolute; top: 12px; right: 16px; }
.step-icon { width: 64px; height: 64px; background: var(--orange-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; color: var(--orange); }
.step-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 14px; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder { background: var(--gray); border: 2px dashed var(--gray2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 600; text-align: center; padding: 20px; }
.img-placeholder i { font-size: 32px; color: var(--gray2); }

/* ── HISTORY ── */
.history-section { padding: 80px 0; background: var(--gray); }
.day-card { background: var(--white); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.day-card-header { background: var(--navy); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }
.day-card-header .date-label { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .5px; }
.day-card-header .day-record { display: flex; gap: 12px; }
.day-card-header .rec-win { background: rgba(34,197,94,.2); color: #4ade80; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.day-card-header .rec-lose { background: rgba(239,68,68,.15); color: #f87171; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.pick-row { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--gray); }
.pick-row:last-child { border-bottom: none; }
.pick-teams { flex: 1; font-weight: 700; font-size: 14px; color: var(--navy); }
.pick-league { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.pick-odd-badge { background: var(--orange); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; padding: 4px 14px; border-radius: 6px; min-width: 52px; text-align: center; }
.badge-win { background: #f0fdf4; border: 1px solid #86efac; color: #16a34a; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.badge-lose { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.badge-pending { background: #fffbeb; border: 1px solid #fde68a; color: #d97706; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.notice-public { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }
.notice-public a { color: var(--orange); font-weight: 700; }
.empty-day { padding: 18px 20px; color: var(--muted); font-size: 13px; font-style: italic; text-align: center; }

/* ── SUBSCRIPTION ── */
.sub-section { padding: 80px 0; background: var(--white); }
.plan-wrap { background: var(--white); border: 2px solid var(--gray2); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.plan-header { background: var(--navy); padding: 32px; text-align: center; position: relative; overflow: hidden; }
.plan-header::after { content: ''; position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; background: var(--white); border-radius: 50%; }
.plan-badge-top { display: inline-block; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 30px; margin-bottom: 16px; }
.plan-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); text-transform: uppercase; }
.plan-body { padding: 40px 32px 32px; }
.currency-btns { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.currency-btns button { padding: 7px 18px; border-radius: 20px; border: 2px solid var(--gray2); background: var(--white); color: var(--navy); font-weight: 700; font-size: 13px; cursor: pointer; transition: all .2s; font-family: 'Nunito Sans', sans-serif; }
.currency-btns button.active, .currency-btns button:hover { border-color: var(--orange); background: var(--orange); color: var(--white); }
.plan-price-display { text-align: center; margin-bottom: 28px; }
.plan-price-display .amount { font-family: 'Barlow Condensed', sans-serif; font-size: 80px; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-price-display .symbol { font-size: 36px; color: var(--orange); vertical-align: top; margin-top: 14px; display: inline-block; }
.plan-price-display .period { font-size: 15px; color: var(--muted); }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--gray); font-size: 14px; color: var(--navy); }
.plan-features li:last-child { border-bottom: none; }
.plan-features .fi { color: var(--orange); flex-shrink: 0; margin-top: 2px; font-size: 15px; }
.btn-subscribe { display: block; width: 100%; background: var(--orange); color: var(--white); padding: 15px; border-radius: 8px; font-weight: 800; font-size: 16px; letter-spacing: .5px; text-transform: uppercase; border: none; cursor: pointer; text-align: center; transition: all .2s; font-family: 'Nunito Sans', sans-serif; }
.btn-subscribe:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); }
.plan-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }
.plan-stripe { text-align: center; font-size: 13px; color: var(--muted); margin-top: 8px; }
.plan-stripe i { color: #6772e5; margin-right: 4px; }
.benefits-list { padding-left: 16px; }
.benefit-card { display: flex; gap: 16px; margin-bottom: 24px; }
.benefit-icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 20px; flex-shrink: 0; }
.benefit-text h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PICKS PAGE ── */
.picks-section { padding: 60px 0; min-height: 70vh; background: var(--gray); }
.picks-pending { text-align: center; padding: 80px 20px; }
.clock-icon { font-size: 60px; color: var(--orange); margin-bottom: 20px; }
.picks-pending h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 12px; }
.picks-pending p { color: var(--muted); max-width: 400px; margin: 0 auto 20px; }
.pub-time { display: inline-block; background: var(--orange-light); border: 1px solid #fed7aa; color: var(--orange-dark); padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 700; }
.picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.pick-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid var(--gray2); transition: box-shadow .2s; }
.pick-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.pick-card-header { background: var(--navy); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.pick-card-league { font-size: 11px; color: #9ca3af; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.pick-card-time { font-size: 12px; color: #9ca3af; }
.pick-card-body { padding: 20px 18px; }
.pick-card-teams { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.2; margin-bottom: 16px; }
.pick-card-teams .vs { color: var(--orange); font-size: 14px; display: block; margin: 4px 0; }
.pick-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--gray); }
.pick-market { background: var(--orange-light); color: var(--orange-dark); font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: .3px; }
.pick-odd { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: var(--orange); }
.result-win { color: #16a34a; font-weight: 800; font-size: 13px; }
.result-lose { color: #dc2626; font-weight: 800; font-size: 13px; }
.result-pending { color: var(--muted); font-size: 13px; }

/* ── AUTH ── */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--gray); }
.auth-card { background: var(--white); border-radius: 16px; padding: 44px 40px; width: 100%; max-width: 480px; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.auth-card-header { background: var(--navy); margin: -44px -40px 32px; padding: 28px 40px; border-radius: 16px 16px 0 0; }
.auth-card-header h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 4px; }
.auth-card-header p { color: #9ca3af; font-size: 13px; }
.auth-form-group { margin-bottom: 18px; }
.auth-form-group label { display: block; font-size: 12px; color: var(--navy); font-weight: 800; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 7px; }
.auth-form-group input, .auth-form-group select { width: 100%; background: var(--gray); border: 2px solid var(--gray2); color: var(--navy); padding: 11px 14px; border-radius: 8px; font-size: 14px; font-family: 'Nunito Sans', sans-serif; transition: border-color .2s; }
.auth-form-group input:focus, .auth-form-group select:focus { outline: none; border-color: var(--orange); background: var(--white); }
.auth-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 14px; border-radius: 8px; font-weight: 800; font-size: 15px; cursor: pointer; font-family: 'Nunito Sans', sans-serif; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
.auth-submit:hover { background: var(--orange-dark); }
.auth-errors { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; list-style: none; }
.auth-errors li { color: #dc2626; font-size: 13px; font-weight: 600; }
.auth-footer { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }
.auth-footer a { color: var(--orange); font-weight: 700; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input { width: auto; border: 2px solid var(--gray2); }
.form-check label { font-size: 13px; color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 600; }

/* ── ACCOUNT ── */
.account-page { padding: 60px 0; background: var(--gray); min-height: 70vh; }
.account-card { background: var(--white); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.account-card-header { background: var(--navy); padding: 16px 24px; }
.account-card-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.account-card-header h3 i { color: var(--orange); }
.account-card-body { padding: 24px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray); }
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.info-value { font-size: 14px; color: var(--navy); font-weight: 600; }
.status-active { color: #16a34a; font-weight: 800; display: flex; align-items: center; gap: 6px; }

/* ── SUCCESS PAGE ── */
.success-page { text-align: center; padding: 100px 20px; }
.success-icon { font-size: 70px; color: #22c55e; margin-bottom: 24px; }
.success-page h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 14px; }
.success-page p { color: var(--muted); max-width: 420px; margin: 0 auto 28px; font-size: 16px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--navy); padding: 60px 0; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; left: -100px; top: -100px; width: 300px; height: 300px; background: rgba(255,106,0,.1); border-radius: 50%; }
.newsletter-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
.newsletter-section h2 span { color: var(--orange); }
.newsletter-section p { color: #9ca3af; font-size: 15px; margin-bottom: 24px; }
.nl-form { display: flex; max-width: 460px; }
.nl-form input { flex: 1; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15); color: var(--white); padding: 12px 18px; border-radius: 8px 0 0 8px; font-size: 14px; font-family: 'Nunito Sans', sans-serif; }
.nl-form input::placeholder { color: #6b7280; }
.nl-form input:focus { outline: none; border-color: var(--orange); }
.nl-form button { background: var(--orange); border: none; color: var(--white); padding: 12px 20px; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 16px; transition: background .2s; }
.nl-form button:hover { background: var(--orange-dark); }

/* ── FOOTER ── */
.footer { background: var(--navy2); padding: 50px 0 30px; border-top: 3px solid var(--orange); }
.footer-brand p { color: #6b7280; font-size: 13px; margin: 14px 0 20px; line-height: 1.7; max-width: 280px; }
.social-links { display: flex; gap: 8px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: all .2s; }
.social-icon:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,106,0,.1); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #9ca3af; font-size: 13px; font-weight: 600; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--orange); }
.footer-col a::before { content: '›'; color: var(--orange); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #4b5563; }
.footer-bottom a { color: #6b7280; }
.payment-badges { display: flex; gap: 6px; }
.pm-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 3px 10px; font-size: 11px; color: #6b7280; font-weight: 600; }

/* ── LANG SWITCHER ── */
.lang-switcher { position: relative; display: inline-block; }
.lang-toggle { background: var(--gray); border: 2px solid var(--gray2); color: var(--navy); padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; font-family: 'Nunito Sans', sans-serif; }
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
.lang-dropdown { position: absolute; right: 0; top: calc(100% + 6px); background: var(--white); border: 2px solid var(--gray2); border-radius: 8px; padding: 6px; min-width: 80px; display: none; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-dropdown a { display: block; padding: 6px 10px; font-size: 12px; color: var(--navy); border-radius: 4px; font-weight: 600; }
.lang-dropdown a:hover { background: var(--orange-light); color: var(--orange); }

/* ── 404 ── */
.error-page { text-align: center; padding: 120px 20px; background: var(--gray); min-height: 70vh; }
.error-page .err-num { font-family: 'Barlow Condensed', sans-serif; font-size: 140px; font-weight: 900; color: var(--orange); line-height: 1; }
.error-page h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; color: var(--navy); text-transform: uppercase; margin-bottom: 12px; }
.error-page p { color: var(--muted); margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media(max-width:991px) {
  .banner-diagonal, .banner-img-wrap { display: none; }
  .banner { min-height: auto; }
  .navbar-toggler { display: block; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px; border-top: 2px solid var(--gray2); box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 100; }
}
@media(max-width:767px) {
  .banner-content { padding: 40px 0; }
  .banner-stats { gap: 20px; flex-wrap: wrap; }
  .picks-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 0; }
  .auth-card-header { margin: 0 0 24px; border-radius: 0; }
  .auth-card-header, .auth-card .auth-form-group, .auth-submit, .auth-footer { padding-left: 24px; padding-right: 24px; }
  .plan-body { padding: 32px 20px 24px; }
  .nl-form { max-width: 100%; }
}

/* Footer grid responsive */
@media(max-width:991px) {
  .footer .container > div[style*="grid-template-columns:2fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media(max-width:600px) {
  .footer .container > div[style*="grid-template-columns:2fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── BOXED LAYOUT ── */
.container { max-width: 1160px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

/* ── LOGO GRAND QUI DÉPASSE ── */
.logo-wrap img {
  height: 90px !important;
  width: auto;
  margin-top: -22px;
  margin-bottom: -22px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
  transition: transform .2s;
}
.logo-wrap:hover img { transform: scale(1.03); }
.header { overflow: visible !important; }
.header .container { overflow: visible !important; }
.topbar-strip .container { max-width: 1160px; }

/* ── SECTIONS INTERNES ── */
section .container, .picks-section .container, .history-section .container,
.sub-section .container, .account-page .container, .newsletter-section .container,
.stats-band .container, .banner .container, .footer .container { max-width: 1160px; }

/* ── LOGO PLUS GRAND ── */
.logo-wrap img {
  height: 110px !important;
  margin-top: -28px;
  margin-bottom: -28px;
}

/* ── BANNER BOXED ── */
.banner > .container {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
}
