/* =========================================================
   EspaceJeeux static export — main.css
   Pink / White / Red theme
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: #3a1420; background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px; line-height: 1.15; font-weight: 700;
  color: #2a0812; font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.015em;
}
h1 { font-size: 46px; } h2 { font-size: 34px; } h3 { font-size: 22px; } h4 { font-size: 18px; }
p { margin: 0 0 16px; }
a { color: #e63971; text-decoration: none; }
a:hover { color: #d92e56; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 16px; padding-left: 20px; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
summary { cursor: pointer; }

:root {
  --emerald: #e63971; --emerald-dark: #b3123e; --emerald-soft: #ffdbe6; --emerald-bg: #fff2f6;
  --ivory: #ffffff; --gold: #ff4d6d; --gold-dark: #d92e56; --gold-soft: #ffe4ec;
  --charcoal: #2a0812; --text: #3a1420; --muted: #8a5566; --white: #ffffff;
  --border: #f5d5df; --container: 1240px;
  --shadow-sm: 0 1px 2px rgba(42,8,18,0.06), 0 1px 3px rgba(42,8,18,0.05);
  --shadow-md: 0 6px 18px rgba(42,8,18,0.10);
  --shadow-lg: 0 24px 50px rgba(42,8,18,0.20);
}

@keyframes fade-in-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

.section { padding: 72px 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-3, .col-4, .col-5, .col-6, .col-7, .col-12 { padding: 0 12px; width: 100%; }
.col-12 { flex: 0 0 100%; }
.col-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
.col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.text-center { text-align: center; }

.eyebrow { display: inline-block; padding: 6px 14px; background: var(--emerald-soft);
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px; color: var(--emerald-dark); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; transition: all .2s; text-decoration: none; line-height: 1; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--emerald); color: #fff; }
.btn-primary:hover { background: var(--emerald-dark); color: #fff; }
.btn-cta { background: var(--gold); color: #fff; }
.btn-cta:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--emerald-dark); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: #fff; }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-ghost { background: transparent; color: var(--charcoal); }
.btn-ghost:hover { background: var(--emerald-soft); }

/* Header */
.site-header { background: rgba(247, 245, 238, 0.94); padding: 14px 0; position: sticky;
  top: 0; z-index: 50; border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
.site-header .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand-logo { height: 48px; width: auto; max-width: 200px; display: block; }
.nav-panel { display: flex; align-items: center; justify-content: center; }
.site-nav { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--charcoal); font-weight: 600; font-size: 15px; padding: 6px 10px;
  border-radius: 8px; transition: color .2s, background .2s; }
.site-nav a:hover { color: #fff; background: var(--emerald); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-icon-btn { position: relative; width: 42px; height: 42px; border-radius: 999px;
  background: rgba(230,57,113,0.10); color: var(--charcoal);
  display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.header-icon-btn:hover { background: var(--emerald); color: #fff; }
.header-icon-badge { position: absolute; bottom: -4px; right: -4px; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 999px; background: var(--gold); color: #fff; font-size: 11px;
  font-weight: 800; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.header-cta { display: inline-flex; align-items: center; gap: 10px; padding: 8px 8px 8px 20px;
  border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--charcoal);
  font-weight: 700; font-size: 14px; text-decoration: none; transition: all .2s; }
.header-cta:hover { border-color: var(--emerald); background: var(--emerald); color: #fff; }
.header-cta:hover .header-cta-arrow { background: #fff; color: var(--emerald); }
.header-cta-arrow { width: 32px; height: 32px; border-radius: 999px; background: var(--gold);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; transition: all .2s; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* Page header */
.page-header { background: linear-gradient(135deg, var(--emerald-bg) 0%, #ffe4ec 100%);
  padding: 64px 0; text-align: center; border-bottom: 1px solid var(--border); position: relative; }
.page-header h1 { color: var(--charcoal); margin-bottom: 8px; }
.page-header p { color: var(--muted); margin: 0; }

.responsible-card, .contact-info-card { background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 26px; box-shadow: var(--shadow-sm); }
.responsible-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.responsible-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--emerald-soft);
  color: var(--emerald-dark); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.responsible-badge { display: inline-block; background: var(--emerald); color: #fff; padding: 3px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .5px; }
.responsible-lead { color: var(--charcoal); font-weight: 600; margin-top: 4px; font-size: 15px; }
.responsible-list { list-style: none; padding: 0; margin: 0 0 16px; }
.responsible-list li { padding: 8px 0 8px 22px; position: relative; color: var(--text);
  border-bottom: 1px dashed var(--border); }
.responsible-list li:last-child { border-bottom: 0; }
.responsible-list li::before { content: "✦"; position: absolute; left: 0; top: 8px; color: var(--gold); }
.responsible-help { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.contact-info-card h2 { font-size: 22px; margin-bottom: 12px; }

/* Forms */
.form-card { max-width: 500px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 32px; box-shadow: var(--shadow-md); }
.contact-form { max-width: 680px; margin: 0; }
.form-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.form-card-icon { width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px; }
.form-card-header h2 { font-size: 22px; margin: 0 0 4px; }
.form-card-header p { margin: 0; color: var(--muted); font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 12px; margin-bottom: 6px;
  color: var(--charcoal); text-transform: uppercase; letter-spacing: .6px; }
input, textarea, select { font: inherit; color: inherit; width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 12px; background: #fff;
  transition: border-color .2s, box-shadow .2s; }
textarea { border-radius: 14px; resize: vertical; min-height: 120px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(230,57,113,.15); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.link-btn { background: none; border: 0; padding: 0; color: var(--emerald); font-weight: 600;
  cursor: pointer; text-decoration: underline; }
.auth-section { min-height: 70vh; display: flex; align-items: center; background: var(--emerald-bg); }
.muted { color: var(--muted); }

.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 32px; font-size: 22px; }
.legal-content li { margin-bottom: 8px; }

/* Footer */
.site-footer { background: var(--charcoal); color: #f5d5df; padding: 56px 0 24px; position: relative; }
.site-footer::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
  background-size: 200% auto; animation: shimmer 5s linear infinite; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; text-transform: uppercase;
  letter-spacing: 1px; font-family: "Inter", sans-serif; }
.site-footer a { color: #f5d5df; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-brand { display: inline-block; margin-bottom: 14px; }
.footer-logo { height: 44px; width: auto; max-width: 200px; display: block; filter: brightness(0) invert(1); }
.footer-bottom { margin-top: 40px; padding-top: 22px;
  font-size: 13px; color: #c4a0ac; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px; }
.responsible-note { display: inline-block; background: var(--gold); color: var(--charcoal);
  padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }

/* Consent banner */
.consent-wrap { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 10000;
  display: flex; justify-content: center; pointer-events: none; }
.consent-wrap[hidden] { display: none; }
.consent-card { pointer-events: auto; width: 100%; max-width: 940px; background: #fff;
  border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 20px 50px rgba(42,8,18,.18);
  padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.consent-title { margin: 0 0 4px; font-family: "Inter", sans-serif; font-size: 17px; color: var(--charcoal); }
.consent-text { margin: 0; font-size: 14px; color: var(--text); }
.consent-text a { color: var(--emerald); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.consent-list { list-style: none; padding: 0; margin: 10px 0 0; border-top: 1px solid var(--border); }
.consent-list li { display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--border); }
.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: #f5d5df; border-radius: 999px; transition: background .2s; }
.switch span::before { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + span { background: var(--emerald); }
.switch input:checked + span::before { transform: translateX(18px); }
.switch input:disabled + span { opacity: .7; }

/* ============= HOME (dark) ============= */
.ej-home { --ej-bg: #2a0812; --ej-bg-2: #3a0d1c; --ej-panel: #4a1027; --ej-line: #6b1a35;
  --ej-text: #ffffff; --ej-muted: #f5c9d5; --ej-gold: #ff4d6d; --ej-gold-soft: #ffe4ec;
  --ej-emerald-light: #ff85a8;
  background: var(--ej-bg); color: var(--ej-text); overflow: hidden; }
.ej-home h1, .ej-home h2, .ej-home h3, .ej-home h4 { color: var(--ej-text);
  font-family: "Playfair Display", Georgia, serif; letter-spacing: -.015em; margin: 0 0 16px; line-height: 1.1; }
.ej-home p { color: var(--ej-muted); margin: 0 0 16px; line-height: 1.7; }
.ej-home a { color: inherit; }
.ej-home .ej-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }
.ej-home .ej-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--ej-gold); font-weight: 600;
  margin-bottom: 16px; font-family: "Inter", sans-serif; }
.ej-home .ej-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--ej-gold); }
.ej-home .ej-section-title { font-size: 56px; line-height: 1.05; margin-bottom: 20px; }
.ej-home .ej-section-title em { color: var(--ej-gold); font-style: italic; }

body.ej-home-active { background: #2a0812; }
body.ej-home-active .site-header { background: rgba(42,8,18,0.92); border-bottom: 1px solid rgba(255,255,255,0.08); }
body.ej-home-active .site-nav a, body.ej-home-active .brand { color: #fff; }
body.ej-home-active .site-nav a:hover { color: #fff; background: #ff4d6d; }
body.ej-home-active .header-icon-btn { background: rgba(255,255,255,0.08); color: #fff; }
body.ej-home-active .header-icon-btn:hover { background: #ff4d6d; color: #fff; }
body.ej-home-active .header-cta { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
body.ej-home-active .header-cta:hover { border-color: #ff4d6d; background: #ff4d6d; color: #fff; }
body.ej-home-active .header-cta:hover .header-cta-arrow { background: #fff; color: #ff4d6d; }
body.ej-home-active .nav-toggle { background: transparent; border-color: rgba(255,255,255,0.2); }
body.ej-home-active .nav-toggle span { background: #fff; }
body.ej-home-active .brand-logo { filter: brightness(0) invert(1); }

.ej-hero { position: relative; padding: 40px 0 50px;
  background: radial-gradient(ellipse at 15% 30%, rgba(255,133,168,0.28) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 70%, rgba(255,255,255,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #2a0812 0%, #1a040a 100%);
  overflow: hidden; }
.ej-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; }
.ej-hero-pill { display: inline-block; padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4); color: var(--ej-gold); font-weight: 600; font-size: 13px; }
.ej-hero h1 { font-size: clamp(38px, 5.6vw, 76px); line-height: 1.05; margin-bottom: 22px; }
.ej-hero h1 .accent { color: var(--ej-gold); font-style: italic; }
.ej-hero-desc { max-width: 540px; font-size: 17px; color: var(--ej-muted); }
.ej-hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.ej-hero-actions .ej-play { display: inline-flex; align-items: center; gap: 12px;
  background: var(--ej-gold); color: var(--ej-bg); padding: 6px 6px 6px 26px; border-radius: 999px;
  font-weight: 700; transition: transform .2s; }
.ej-hero-actions .ej-play:hover { transform: translateY(-2px); }
.ej-hero-actions .ej-play .ej-arrow-btn { width: 40px; height: 40px; border-radius: 999px;
  background: var(--ej-bg); color: var(--ej-gold); display: inline-flex; align-items: center; justify-content: center; }
.ej-hero-actions .ej-txt-link { color: #fff; font-weight: 600;
  border-bottom: 2px solid var(--ej-gold); padding-bottom: 3px; }
.ej-hero-actions .ej-txt-link:hover { color: var(--ej-gold); }
.ej-hero-visual { position: relative; }
.ej-hero-visual img { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)); }
.ej-hero-visual::before { content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%); z-index: -1; }
.ej-hero-bg-grid { position: absolute; inset: 0; z-index: 0; opacity: .35; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.ej-hero-top { position: relative; z-index: 2; display: flex; justify-content: space-between;
  align-items: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.ej-hero-jackpot-mini { text-align: right; padding: 8px 18px; border-radius: 14px;
  border: 1px solid var(--ej-line); background: rgba(255,255,255,0.03); }
.ej-hero-jackpot-mini small { display: block; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ej-muted); }
.ej-hero-jackpot-mini b { color: var(--ej-gold); font-size: 22px; font-family: "Playfair Display", serif; }
.ej-hero-sub-h1 { display: block; font-family: "Inter", sans-serif; font-weight: 400;
  font-size: 22px; color: var(--ej-muted); margin-top: 12px; }
.ej-hero-card-stack { position: relative; }
.ej-hero-badge { position: absolute; padding: 14px 18px; border-radius: 16px;
  background: rgba(42,8,18,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--ej-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.4); min-width: 170px; }
.ej-hero-badge small { display: block; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ej-muted); }
.ej-hero-badge b { display: block; font-size: 26px; color: var(--ej-gold);
  font-family: "Playfair Display", serif; margin: 2px 0; }
.ej-hero-badge span { font-size: 11px; color: #fff; }
.ej-hero-badge-1 { top: 8%; left: -30px; }
.ej-hero-badge-2 { bottom: 12%; right: -20px; }
.ej-hero-strip { position: relative; z-index: 2; margin-top: 60px; display: grid;
  grid-template-columns: repeat(4, 1fr); padding: 26px 30px; border-radius: 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--ej-line); }
.ej-hero-strip .ej-hero-stat { padding: 0 20px; }
.ej-hero-strip .ej-hero-stat + .ej-hero-stat { border-left: 1px solid rgba(255,255,255,0.1); }
.ej-hero-stat b { display: block; font-size: 30px; font-weight: 800; color: #fff; font-family: "Playfair Display", serif; }
.ej-hero-stat small { color: var(--ej-muted); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

.ej-how { background: var(--ej-bg-2); padding: 120px 0; }
.ej-how-head { max-width: 640px; margin-bottom: 60px; }
.ej-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ej-step { background: rgba(255,255,255,0.02); border: 1px solid var(--ej-line);
  border-radius: 20px; padding: 34px 28px; transition: transform .3s, border-color .3s; }
.ej-step:hover { transform: translateY(-6px); border-color: var(--ej-gold); }
.ej-step-num { display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.14); color: var(--ej-gold);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 22px; }
.ej-step-big { font-size: 90px; font-weight: 800; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px var(--ej-gold); margin-bottom: 12px;
  font-family: "Playfair Display", serif; }
.ej-step h4 { font-size: 20px; margin-bottom: 10px; font-family: "Playfair Display", serif; }
.ej-step p { font-size: 14px; margin: 0; }

.ej-offer { padding: 120px 0; background: var(--ej-bg); }
.ej-offer-head { display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 50px; gap: 30px; flex-wrap: wrap; }
.ej-offer-head .ej-btn-primary { padding: 14px 24px; border-radius: 999px; background: var(--ej-gold);
  color: var(--ej-bg); font-weight: 700; font-size: 14px; display: inline-flex; gap: 8px; transition: transform .2s; }
.ej-offer-head .ej-btn-primary:hover { transform: translateY(-2px); background: #fff; }
.ej-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ej-product { background: var(--ej-panel); border-radius: 22px; overflow: hidden;
  border: 1px solid var(--ej-line); transition: transform .3s, border-color .3s; position: relative; }
.ej-product:hover { transform: translateY(-8px); border-color: var(--ej-gold); }
.ej-product-media { position: relative; padding: 30px; background: #2a0812; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ej-product-media img { width: 78%; height: auto; border-radius: 50%; transition: transform .4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.ej-product:hover .ej-product-media img { transform: scale(1.06) rotate(-3deg); }
.ej-product-body { padding: 24px; }
.ej-product-meta { display: flex; gap: 18px; margin-bottom: 12px; color: var(--ej-muted); font-size: 12px; }
.ej-product-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ej-gold); display: inline-block; margin-right: 6px; vertical-align: middle; }
.ej-product-title { font-size: 22px; margin-bottom: 10px; color: #fff; font-family: "Playfair Display", serif; }
.ej-product-title a:hover { color: var(--ej-gold); }
.ej-product-price { font-size: 22px; font-weight: 800; color: var(--ej-gold); margin-bottom: 14px;
  font-family: "Playfair Display", serif; }
.ej-product-price small { color: var(--ej-muted); font-weight: 600; font-size: 11px;
  margin-left: 6px; text-transform: uppercase; letter-spacing: 1px; font-family: "Inter", sans-serif; }
.ej-product-foot { display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--ej-line); color: var(--ej-muted); font-size: 13px; }
.ej-product-foot b { color: #fff; }
.ej-product-buy { color: var(--ej-gold); font-weight: 700; font-size: 14px; }
.ej-product-buy:hover { color: #fff; }

.ej-tst { padding: 120px 0; background: var(--ej-bg-2); overflow: visible; }
.ej-tst-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 50px; }
.ej-tst-trust { display: flex; align-items: center; gap: 18px; justify-self: end;
  padding: 16px 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--ej-line); border-radius: 16px; }
.ej-tst-trust b { color: #fff; font-size: 16px; }
.ej-tst-trust small { display: block; color: var(--ej-muted); font-size: 12px; }
.ej-tst-stars { color: var(--ej-gold); letter-spacing: 2px; font-size: 14px; }
.ej-tst-lede { max-width: 460px; margin-top: 10px; }
.ej-tst-masonry { columns: 3; column-gap: 24px; }
.ej-tst-tile { break-inside: avoid; margin: 0 0 24px; padding: 28px; border-radius: 22px;
  background: linear-gradient(180deg, #4a1027 0%, #3a0d1c 100%);
  border: 1px solid var(--ej-line); transition: transform .3s, border-color .3s; }
.ej-tst-tile:hover { transform: translateY(-4px); border-color: var(--ej-gold); }
.ej-tst-tile-0, .ej-tst-tile-3 { background: linear-gradient(180deg, var(--ej-gold) 0%, #b3123e 100%);
  border-color: var(--ej-gold); }
.ej-tst-tile-0 blockquote, .ej-tst-tile-3 blockquote { color: #fff; }
.ej-tst-tile-0 .ej-tst-mark, .ej-tst-tile-3 .ej-tst-mark { color: #fff; }
.ej-tst-tile-0 figcaption b, .ej-tst-tile-3 figcaption b { color: #fff; }
.ej-tst-tile-0 figcaption small, .ej-tst-tile-3 figcaption small { color: rgba(255,255,255,0.75); }
.ej-tst-tile blockquote { margin: 0 0 18px; font-size: 16px; line-height: 1.55; color: #f5d5df;
  font-family: "Playfair Display", serif; font-style: italic; }
.ej-tst-mark { display: inline-block; font-size: 44px; line-height: 0.6;
  color: var(--ej-gold); margin-right: 6px; vertical-align: -8px; font-family: "Playfair Display", serif; }
.ej-tst-tile figcaption { display: flex; align-items: center; gap: 12px; }
.ej-tst-tile figcaption b { display: block; color: #fff; font-family: "Inter", sans-serif; font-size: 14px; }
.ej-tst-tile figcaption small { color: var(--ej-muted); font-size: 12px; }
.ej-tst-avatar { width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ej-gold), var(--ej-emerald-light));
  color: var(--ej-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; }

.ej-cta { padding: 100px 0; background: var(--ej-bg); }
.ej-cta-inner { background: linear-gradient(135deg, var(--ej-gold) 0%, #ff8fa8 100%);
  border-radius: 28px; padding: 60px 50px; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 40px; align-items: center; color: var(--ej-bg); position: relative; overflow: hidden; }
.ej-cta-inner::before { content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.ej-cta h2 { color: var(--ej-bg); font-size: 46px; line-height: 1.05; margin: 0 0 14px; }
.ej-cta-eyebrow { color: var(--ej-bg); font-weight: 700; letter-spacing: 3px; font-size: 12px;
  margin-bottom: 12px; text-transform: uppercase; }
.ej-cta p { color: rgba(42,8,18,0.75); font-weight: 500; }
.ej-cta-email { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px;
  background: var(--ej-bg); color: #fff !important; padding: 12px 20px 12px 12px;
  border-radius: 999px; font-weight: 700; position: relative; z-index: 1; }
.ej-cta-email .ej-arrow-btn { width: 32px; height: 32px; border-radius: 999px; background: var(--ej-gold);
  color: var(--ej-bg); display: inline-flex; align-items: center; justify-content: center; }
.ej-cta-form { background: var(--ej-bg); border-radius: 22px; padding: 28px; position: relative; z-index: 1; }
.ej-cta-form label { display: block; color: #fff; font-size: 12px; margin-bottom: 12px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.ej-cta-form form { display: flex; gap: 8px; background: #4a1027; border-radius: 999px; padding: 5px; }
.ej-cta-form input { flex: 1; background: transparent; border: 0; color: #fff; padding: 10px 18px;
  font-size: 14px; outline: none; }
.ej-cta-form input::placeholder { color: #c48a9a; }
.ej-cta-form button { background: var(--ej-gold); color: var(--ej-bg); padding: 10px 20px;
  border-radius: 999px; font-weight: 700; font-size: 13px; border: 0; cursor: pointer; }
.ej-cta-agree { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: #c48a9a; font-size: 12px; }
.ej-cta-agree input { width: auto; }

.ej-win { padding: 120px 0; background: var(--ej-bg); }
.ej-win-head { text-align: left; max-width: 640px; margin-bottom: 40px; }
.ej-win-lede { max-width: 500px; }
.ej-win-timeline { list-style: none; padding: 0; margin: 0 0 40px; }
.ej-win-row { display: grid; grid-template-columns: 80px 60px 1fr auto; align-items: center; gap: 24px;
  padding: 22px 28px; border-radius: 18px; background: var(--ej-panel);
  border: 1px solid var(--ej-line); margin-bottom: 14px; transition: transform .2s, border-color .2s; }
.ej-win-row:hover { transform: translateX(6px); border-color: var(--ej-gold); }
.ej-win-time span { display: block; font-family: "Playfair Display", serif; font-size: 28px;
  color: var(--ej-gold); font-weight: 700; }
.ej-win-time small { color: var(--ej-muted); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.ej-win-avatar { width: 56px; height: 56px; margin: 0; font-size: 22px;
  background: linear-gradient(135deg, var(--ej-gold), var(--ej-gold-soft));
  color: var(--ej-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-weight: 800; }
.ej-win-info b { display: block; color: #fff; font-size: 16px; font-family: "Inter", sans-serif; }
.ej-win-info small { color: var(--ej-muted); font-size: 13px; }
.ej-win-amount { font-size: 24px; padding: 8px 18px; background: rgba(255,255,255,0.08);
  border-radius: 999px; color: var(--ej-gold); font-family: "Playfair Display", serif; font-weight: 700; }
.ej-win-actions { text-align: center; }
.ej-win-actions .ej-btn-primary { padding: 14px 24px; border-radius: 999px; background: var(--ej-gold);
  color: var(--ej-bg); font-weight: 700; font-size: 14px; display: inline-flex; gap: 8px; }

.ej-faq { padding: 120px 0; background: var(--ej-bg-2); }
.ej-faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.ej-faq p { max-width: 380px; }
.ej-faq-tabs { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.ej-faq-tab { padding: 12px 20px; border-radius: 999px; background: var(--ej-panel);
  border: 1px solid var(--ej-line); color: #fff; font-weight: 600; text-align: left;
  transition: all .2s; cursor: pointer; }
.ej-faq-tab:hover, .ej-faq-tab.active { background: var(--ej-gold); color: var(--ej-bg); border-color: var(--ej-gold); }
.ej-faq-list details { background: var(--ej-panel); border: 1px solid var(--ej-line);
  border-radius: 16px; padding: 20px 24px; margin-bottom: 12px; transition: border-color .2s; }
.ej-faq-list details[open] { border-color: var(--ej-gold); }
.ej-faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; color: #fff; font-size: 16px; }
.ej-faq-list summary::-webkit-details-marker { display: none; }
.ej-faq-list summary::after { content: "+"; width: 30px; height: 30px; border-radius: 999px;
  background: rgba(255,255,255,0.14); color: var(--ej-gold);
  display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform .2s; }
.ej-faq-list details[open] summary::after { content: "−"; background: var(--ej-gold); color: var(--ej-bg); }
.ej-faq-list details p { margin: 14px 0 0; color: var(--ej-muted); font-size: 14px; }

/* ============= INNER PAGES (dark) ============= */
body.ej-inner-active { background: #2a0812; }
body.ej-inner-active .auth-section, body.ej-inner-active .section { background: transparent !important; }
body.ej-inner-active .brand-logo { filter: brightness(0) invert(1); }
body.ej-inner-active .site-header { background: rgba(42,8,18,0.92); border-bottom: 1px solid rgba(255,255,255,0.08); }
body.ej-inner-active .site-nav a, body.ej-inner-active .brand { color: #fff; }
body.ej-inner-active .site-nav a:hover { color: #fff; background: #ff4d6d; }
body.ej-inner-active .header-icon-btn { background: rgba(255,255,255,0.08); color: #fff; }
body.ej-inner-active .header-icon-btn:hover { background: #ff4d6d; color: #fff; }
body.ej-inner-active .header-cta { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
body.ej-inner-active .header-cta:hover { border-color: #ff4d6d; background: #ff4d6d; color: #fff; }
body.ej-inner-active .header-cta:hover .header-cta-arrow { background: #fff; color: #ff4d6d; }
body.ej-inner-active .nav-toggle { background: transparent; border-color: rgba(255,255,255,0.2); }
body.ej-inner-active .nav-toggle span { background: #fff; }

.ej-inner { --ej-bg: #2a0812; --ej-bg-2: #3a0d1c; --ej-panel: #4a1027; --ej-line: #6b1a35;
  --ej-text: #ffffff; --ej-muted: #f5c9d5; --ej-gold: #ff4d6d; --ej-emerald-light: #ff85a8;
  background: var(--ej-bg); color: var(--ej-text); min-height: 100vh; overflow: hidden; }
.ej-inner h1, .ej-inner h2, .ej-inner h3, .ej-inner h4 { color: #fff;
  font-family: "Playfair Display", Georgia, serif; letter-spacing: -.015em; line-height: 1.15;
  font-weight: 700; margin: 0 0 16px; }
.ej-inner p { color: var(--ej-muted); line-height: 1.75; margin: 0 0 16px; }
.ej-inner a { color: var(--ej-gold); text-decoration: none; }
/*.ej-inner a:hover { color: #fff; }*/
.ej-inner strong, .ej-inner b { color: #fff; }
.ej-inner .muted { color: var(--ej-muted); }
.ej-inner ul, .ej-inner ol { color: var(--ej-muted); line-height: 1.8; padding-left: 22px; margin: 0 0 18px; }
.ej-inner li { margin-bottom: 6px; }
.ej-inner hr { border: 0; border-top: 1px solid var(--ej-line); margin: 30px 0; }
.ej-inner .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.ej-inner .section { padding: 80px 0; }
.ej-inner .page-header { padding: 120px 0 60px; text-align: center; overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,133,168,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #3a0d1c 0%, #1a040a 100%);
  border-bottom: 1px solid var(--ej-line); }
.ej-inner .page-header h1 { color: #fff; font-size: clamp(36px, 5vw, 60px); margin-bottom: 12px; }
.ej-inner .page-header p { color: var(--ej-muted); font-size: 17px; max-width: 620px; margin: 0 auto; }

.ej-inner .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .2s; text-decoration: none; }
.ej-inner .btn-cta, .ej-inner .btn-primary { background: var(--ej-gold); color: var(--ej-bg); }
.ej-inner .btn-cta:hover, .ej-inner .btn-primary:hover { background: #fff; transform: translateY(-2px); }
.ej-inner .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.ej-inner .btn-outline:hover { background: var(--ej-gold); color: var(--ej-bg); border-color: var(--ej-gold); }
.ej-inner .btn-block { display: flex; width: 100%; }
.ej-inner .btn-lg { padding: 14px 32px; font-size: 16px; }

.ej-inner .form-card { max-width: 520px; margin: 0 auto; background: var(--ej-panel);
  border: 1px solid var(--ej-line); border-radius: 22px; padding: 36px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.ej-inner .contact-form { max-width: 680px; margin: 0; }
.ej-inner .form-card h2 { color: #fff; }
.ej-inner input, .ej-inner textarea, .ej-inner select { width: 100%; padding: 12px 14px; border-radius: 10px;
  background: #2a0812; color: #fff; border: 1px solid var(--ej-line); }
.ej-inner input:focus, .ej-inner textarea:focus, .ej-inner select:focus {
  outline: none; border-color: var(--ej-gold); box-shadow: 0 0 0 3px rgba(255,255,255,.18); }
.ej-inner input::placeholder, .ej-inner textarea::placeholder { color: #a86678; }
.ej-inner .form-group label { color: #fff; }
.ej-inner .link-btn { color: var(--ej-gold); }
.ej-inner .auth-section { min-height: 78vh; display: flex; align-items: center; padding: 130px 0 80px; }

.ej-inner .contact-info-card, .ej-inner .responsible-card, .ej-inner .responsible-help {
  background: linear-gradient(180deg, #4a1027 0%, #3a0d1c 100%);
  border: 1px solid var(--ej-line); border-radius: 20px; padding: 26px; margin-bottom: 20px; }
.ej-inner .contact-info-card h2 { font-size: 22px; margin-bottom: 12px; }
.ej-inner .responsible-icon { background: linear-gradient(135deg, var(--ej-gold), var(--ej-emerald-light));
  color: var(--ej-bg); }
.ej-inner .responsible-badge { background: rgba(255,255,255,.14); color: var(--ej-gold);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.ej-inner .responsible-lead { color: #fff; font-weight: 600; font-size: 15px; }
.ej-inner .responsible-list li { color: var(--ej-muted); border-bottom: 1px solid var(--ej-line); }
.ej-inner .responsible-list li::before { color: var(--ej-gold); }

.ej-inner .legal-content { max-width: 820px; }
.ej-inner .legal-content h2 { color: #fff; margin-top: 32px; font-size: 22px; }

/* Tickets page */
.ej-inner .tickets-page { padding-top: 120px; padding-bottom: 60px; }
.ej-inner .tickets-page .container { max-width: 1360px; }
.ej-inner .tickets-topbar { margin-bottom: 26px; }
.ej-inner .tickets-hero-heading .eyebrow { display: inline-block; background: transparent;
  color: var(--ej-gold); font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  font-size: 12px; margin-bottom: 6px; padding: 0; }
.ej-inner .tickets-hero-heading h1 { font-size: clamp(38px, 5.5vw, 68px); line-height: 1.03; margin-bottom: 18px; }
.ej-inner .tickets-hero-heading h1 .accent { color: var(--ej-gold); font-style: italic; }
.ej-inner .tickets-hero-heading .hero-line { display: block; }
.ej-inner .tickets-hero-heading .muted { max-width: 620px; }

.ej-inner .step-heading { font-size: 24px; margin: 0 0 20px; color: #fff; }
.ej-inner .step-heading-row { display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin: 26px 0 16px; }
.ej-inner .step-heading-row .step-heading { margin: 0; }
.ej-inner .muted-inline { color: var(--ej-muted); font-weight: 400; font-size: 15px; }

.ej-inner .tickets-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px; align-items: start; }
.ej-inner .tickets-main { background: var(--ej-panel); border: 1px solid var(--ej-line);
  border-radius: 22px; padding: 26px; }

.ej-inner .tickets-lotto-row { display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 24px; }
.ej-inner .tickets-lotto-card { background: linear-gradient(180deg, #4a1027 0%, #3a0d1c 100%);
  border: 2px solid var(--ej-line); border-radius: 20px; overflow: hidden; text-align: left;
  cursor: pointer; transition: transform .25s, border-color .25s; position: relative;
  color: inherit; font-family: inherit; }
.ej-inner .tickets-lotto-card:hover { transform: translateY(-4px); border-color: var(--ej-gold); }
.ej-inner .tickets-lotto-card.is-active { border-color: var(--ej-gold);
  box-shadow: 0 12px 30px rgba(255,255,255,0.14); }
.ej-inner .tickets-lotto-media { position: relative; padding: 20px; background: #2a0812;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.ej-inner .tickets-lotto-media img { width: 78%; height: auto; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.ej-inner .tickets-lotto-featured { position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; color: var(--ej-bg); background: var(--ej-gold); }
.ej-inner .tickets-lotto-badge { position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 12px; border-radius: 999px; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; color: #fff; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15); }
.ej-inner .tickets-lotto-select { position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%) translateY(50px); background: var(--ej-gold); color: var(--ej-bg);
  padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 12px; opacity: 0; transition: all .3s; }
.ej-inner .tickets-lotto-card:hover .tickets-lotto-select,
.ej-inner .tickets-lotto-card.is-active .tickets-lotto-select {
  opacity: 1; transform: translateX(-50%) translateY(0); }
.ej-inner .tickets-lotto-body { padding: 18px; }
.ej-inner .tickets-lotto-meta { display: flex; gap: 14px; margin-bottom: 10px;
  color: var(--ej-muted); font-size: 11px; }
.ej-inner .tickets-lotto-meta span::before { content: ""; width: 4px; height: 4px;
  border-radius: 50%; background: var(--ej-gold); display: inline-block; margin-right: 6px; vertical-align: middle; }
.ej-inner .tickets-lotto-title { font-size: 18px; margin-bottom: 8px; color: #fff;
  font-family: "Playfair Display", serif; }
.ej-inner .tickets-lotto-price { font-size: 16px; font-weight: 800; color: var(--ej-gold);
  margin-bottom: 10px; font-family: "Playfair Display", serif; }
.ej-inner .tickets-lotto-price small { color: var(--ej-muted); font-weight: 600; font-size: 10px;
  margin-left: 4px; text-transform: uppercase; letter-spacing: 1px; font-family: "Inter", sans-serif; }
.ej-inner .tickets-lotto-foot { display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--ej-line); color: var(--ej-muted); font-size: 12px; }
.ej-inner .tickets-lotto-foot b { color: #fff; }
.ej-inner .tickets-lotto-action { color: var(--ej-gold); font-weight: 700; font-size: 13px; }

.ej-inner .draw-badge { display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 999px; background: rgba(255,255,255,0.14); color: var(--ej-gold);
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.ej-inner .ghost-btn { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--ej-line);
  background: transparent; color: #fff; font-weight: 600; cursor: pointer; transition: all .2s; font-size: 13px; }
.ej-inner .ghost-btn:hover { border-color: var(--ej-gold); color: var(--ej-gold); }
.ej-inner .ghost-btn-primary { background: var(--ej-gold); color: var(--ej-bg); border-color: var(--ej-gold); }
.ej-inner .ghost-btn-primary:hover { background: #fff; color: var(--ej-bg); }

.ej-inner .pick-progress { display: flex; align-items: center; gap: 14px; margin: 12px 0 16px; }
.ej-inner .progress-dots { display: flex; gap: 4px; flex: 1; }
.ej-inner .progress-dot { flex: 1; height: 4px; border-radius: 4px; background: var(--ej-line); transition: background .2s; }
.ej-inner .progress-dot.is-filled { background: var(--ej-gold); }
.ej-inner .progress-count { color: var(--ej-muted); font-size: 13px; font-weight: 600; white-space: nowrap; }

.ej-inner .number-panel { background: #2a0812; border: 1px solid var(--ej-line);
  border-radius: 16px; padding: 20px; margin-top: 12px; }
.ej-inner .number-grid-lg { display: grid; grid-template-columns: repeat(10, 1fr); gap: 8px; }
.ej-inner .num-btn { aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--ej-line);
  background: transparent; color: #fff; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all .15s; }
.ej-inner .num-btn:hover:not(:disabled) { border-color: var(--ej-gold); color: var(--ej-gold); }
.ej-inner .num-btn.is-picked { background: radial-gradient(circle at 30% 30%, #fff 0%, var(--ej-gold) 40%, #b3123e 100%);
  color: var(--ej-bg); border-color: var(--ej-gold); }
.ej-inner .num-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.ej-inner .tickets-side { position: sticky; top: 100px; }
.ej-inner .side-card { background: var(--ej-panel); border: 2px solid var(--ej-line);
  border-radius: 22px; padding: 24px; transition: border-color .2s; }
.ej-inner .side-card.is-ready { border-color: var(--ej-gold); box-shadow: 0 12px 30px rgba(255,255,255,0.14); }
.ej-inner .side-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ej-inner .side-price { font-size: 13px; color: var(--ej-muted); font-weight: 600; }
.ej-inner .side-name { font-size: 20px; margin: 6px 0 4px; color: #fff; }
.ej-inner .side-jackpot { color: var(--ej-gold); font-weight: 800; font-size: 24px;
  margin-bottom: 14px; font-family: "Playfair Display", serif; }
.ej-inner .side-meta { color: var(--ej-muted); font-size: 13px; margin: 4px 0; }
.ej-inner .side-picks { margin: 18px 0 14px; padding-top: 14px; border-top: 1px solid var(--ej-line); }
.ej-inner .side-picks-label { color: #fff; font-size: 12px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: 1px; text-transform: uppercase; }
.ej-inner .side-picks-empty { color: var(--ej-muted); font-size: 13px; }
.ej-inner .side-picks-row { display: flex; flex-wrap: wrap; gap: 6px; }
.ej-inner .picked-ball { display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--ej-gold) 40%, #b3123e 100%);
  color: var(--ej-bg); font-weight: 800; font-size: 13px; }
.ej-inner .add-btn { margin-top: 6px; }
.ej-inner .add-btn:disabled { background: rgba(255,255,255,0.35) !important;
  color: rgba(13,42,30,0.6) !important; cursor: not-allowed; }

/* Responsive */
@media (max-width: 1024px) { .container { padding: 0 18px; } h1 { font-size: 38px; } h2 { font-size: 28px; }
  .ej-home .ej-section-title { font-size: 42px; } .ej-hero-inner { grid-template-columns: 1fr; }
  .ej-hero-visual { max-width: 460px; margin: 0 auto; }
  .ej-how-grid, .ej-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .ej-faq-grid, .ej-cta-inner, .ej-tst-head { grid-template-columns: 1fr; }
  .ej-cta h2 { font-size: 34px; } .ej-tst-masonry { columns: 2; }
  .ej-hero-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ej-hero-strip .ej-hero-stat + .ej-hero-stat { border-left: 0; } }
@media (max-width: 960px) { h1 { font-size: 30px; } h2 { font-size: 24px; }
  .col-3, .col-4, .col-5, .col-6, .col-7 { flex: 0 0 100%; max-width: 100%; margin-bottom: 18px; }
  .section { padding: 52px 0; } .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; order: 4; }
  .site-header { padding: 10px 0; }
  .site-header .container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; }
  .brand { order: 1; margin-right: auto; }
  .header-actions { order: 3; gap: 8px; }
  .brand-logo { height: 38px; }
  .nav-panel { display: none; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 10px; padding: 12px 4px; order: 5; }
  .nav-panel.is-open { display: flex; }
  .site-nav { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .site-nav a { display: block; padding: 12px 10px; border-bottom: 1px solid var(--border);
    font-size: 16px; border-radius: 0; }
  .header-cta { padding: 6px 6px 6px 14px; font-size: 13px; }
  .header-cta-arrow { width: 28px; height: 28px; }
  .ej-inner .tickets-layout { grid-template-columns: 1fr; }
  .ej-inner .tickets-side { position: static; }
  .ej-inner .tickets-lotto-row { grid-template-columns: 1fr 1fr; }
  .ej-inner .number-grid-lg { grid-template-columns: repeat(7, 1fr); } }
@media (max-width: 720px) {
  .ej-hero, .ej-how, .ej-offer, .ej-tst, .ej-win, .ej-cta, .ej-faq { padding: 70px 0; }
  .ej-home .ej-section-title { font-size: 30px; }
  .ej-hero { padding: 90px 0 60px; }
  .ej-how-grid, .ej-offer-grid { grid-template-columns: 1fr; }
  .ej-step-big { font-size: 72px; }
  .ej-cta-inner { padding: 36px 22px; }
  .ej-tst-masonry { columns: 1; }
  .ej-hero-badge { display: none; }
  .ej-hero-top { flex-direction: column; gap: 14px; align-items: flex-start; }
  .ej-win-row { grid-template-columns: 1fr auto; gap: 12px; }
  .ej-win-row .ej-win-time, .ej-win-row .ej-win-avatar { display: none; } }
@media (max-width: 600px) { html { font-size: 15px; } .container { padding: 0 14px; }
  .section { padding: 40px 0; } .btn { padding: 11px 20px; font-size: 14px; }
  .brand-logo { height: 34px; max-width: 160px; }
  .header-icon-btn { width: 38px; height: 38px; } .nav-toggle { width: 38px; height: 38px; }
  .header-cta span:not(.header-cta-arrow) { display: none; }
  .header-cta { padding: 4px; border: 0; background: transparent; }
  .ej-inner .tickets-lotto-row { grid-template-columns: 1fr; }
  .ej-inner .number-grid-lg { grid-template-columns: repeat(6, 1fr); } }
  
.footer-notice {
    margin-bottom: 2.5rem;
    border-radius: .75rem;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    padding: 1.5rem;
    text-align: center;
}
.lq-footer-legal {
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    line-height: 1.625;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.footer-badges {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: .75rem;
    color: rgba(255,255,255,.5);
}
.footer-badges img {
    width: auto;
    height: 3rem;
    border-radius: .25rem;
    padding: .5rem;
}
.lq-badge-white {
    background-color: #fff;
}
.lq-footer-nav {
    margin-bottom: 2rem;
}
.lq-footer-nav-warning {
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    color: red;
    margin-bottom: 1rem;
}
.lq-footer-nav-desktop {
 
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .875rem;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 1rem 0;
    text-align: center;
}
.lq-footer-nav-desktop a {
    font-weight: 600;
    color: rgba(255,255,255,.7);
    padding: 0 .75rem;
}
.lq-footer-nav-mobile a {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: .75rem 0;
    text-align: center;
    font-weight: 600;
    color: rgba(255,255,255,.7);
}
.lq-footer-nav-mobile {
       display: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: .875rem;
}
.lq-footer-nav-desktop span {
    color: rgba(255,255,255,.2);
}
.footer-bottom {
    text-align: center;
}
.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}
.footer-bottom p.copy {
    font-size: .875rem;
    font-weight: 700;
    color: rgba(255,255,255,.7);
}
.footer-bottom p.reg {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    margin-top: .25rem;
}
.footer-bottom img {
    width: auto;
    height: 55px;
}
@media(max-width:768px){
.lq-footer-nav-desktop {
    display: flex;
}
    .lq-footer-nav-mobile {
    display: none;
}
}