
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-900.woff2') format('woff2');
}

:root {
  --teal: #1F7A7F;
  --teal-dark: #155357;
  --teal-light: #E8F3F3;
  --orange: #F39C2E;
  --orange-light: #FEF1DE;
  --cream: #FDFBF5;
  --text: #2B3340;
  --text-mute: #525B68;
  --red: #E55B4C;
  --green: #3FB06B;
  --border: #E5E7EB;
}

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

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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


.site-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky; top: 0; z-index: 100;
}
.site-nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 24px; font-weight: 900; color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo img { border-radius: 8px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--teal); }


.lang-switcher { display: flex; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; }
.lang-switcher__current { color: var(--teal); border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
.lang-switcher__link { color: var(--text); text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.lang-switcher__link:hover { color: var(--teal); }
@media (max-width: 720px) {
  .site-nav .container { flex-wrap: wrap; row-gap: 10px; }
}


.hero { padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.hero-mascot { width: 160px; height: auto; margin-bottom: 24px; filter: drop-shadow(0 8px 24px rgba(31,122,127,0.15)); }
.badges { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.badge {
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--teal-light); color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.5px;
}
h1 { font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
h1 .highlight { color: var(--teal-dark); }
.hero-sub { font-size: 18px; color: var(--text-mute); margin-bottom: 32px; max-width: 500px; }
.btn-group { display: flex; gap: 12px; }
.btn {
  padding: 16px 32px; border-radius: 16px; border: none; font-family: inherit;
  font-weight: 800; font-size: 16px; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 4px 14px rgba(243,156,46,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,156,46,0.45); }
.btn-secondary { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal-light); }


.options { display: flex; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.option-group { display: flex; flex-direction: column; gap: 8px; }
.option-label { font-size: 12px; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; }
.range-row { display: flex; align-items: center; gap: 8px; }
.range-dash { color: var(--text-mute); font-weight: 700; }
.select {
  padding: 10px 14px; border: 2px solid var(--border); border-radius: 12px;
  background: white; font-family: inherit; font-weight: 700; font-size: 15px;
  color: var(--text); cursor: pointer; min-width: 90px;
}
.select:focus { outline: none; border-color: var(--teal); }


.seg {
  display: inline-flex; background: #F5F6F8; border-radius: 12px; padding: 4px; gap: 2px;
}
.seg-btn {
  padding: 8px 16px; border: none; background: transparent; font-family: inherit;
  font-weight: 700; font-size: 14px; color: var(--text-mute); cursor: pointer;
  border-radius: 8px; transition: all 0.15s;
}
.seg-btn:hover { color: var(--text); }
.seg-btn.active { background: white; color: var(--teal); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }


.ticket {
  background: white; border-radius: 24px; padding: 32px;
  box-shadow: 0 20px 60px rgba(31,122,127,0.12);
  border: 1px solid var(--border);
}
.ticket-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px dashed var(--border);
}
.ticket-title { font-weight: 900; color: var(--teal); font-size: 18px; letter-spacing: 1px; }
.ticket-counter { font-size: 13px; color: var(--text-mute); font-weight: 700; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 24px;
}
.num {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #F5F6F8; font-weight: 800; font-size: 15px;
  cursor: pointer; user-select: none; transition: all 0.15s; border: 2px solid transparent;
}
.num:hover { background: var(--teal-light); }
.num.selected { background: var(--teal); color: white; transform: scale(1.05); }
.super-label { font-size: 13px; color: var(--text-mute); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.super-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; }
.super { aspect-ratio: 1; font-size: 13px; }
.super.selected { background: var(--orange); color: white; }


.result {
  background: white; margin-top: 40px; padding: 60px 48px; border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04); display: none;
}
.result.visible { display: block; animation: fadeUp 0.6s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.result-label { text-align: center; font-size: 14px; color: var(--text-mute); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.result-headline { text-align: center; font-size: 64px; font-weight: 900; line-height: 1.1; margin-bottom: 12px; }
.result-headline .amount { color: var(--red); }
.result-headline .amount.win { color: var(--green); }
.result-sub { text-align: center; color: var(--text-mute); font-size: 16px; margin-bottom: 8px; }
.result-tip-count {
  text-align: center; color: var(--teal); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px;
  margin: 0 0 40px 0;
}
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.stat-card { padding: 28px; background: var(--cream); border-radius: 20px; border: 1px solid var(--border); }
.stat-card.highlight { border-color: var(--red); background: #FDF2F1; }
.stat-label { font-size: 12px; color: var(--text-mute); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-value { font-size: 32px; font-weight: 900; }
.stat-card.highlight .stat-value { color: var(--red); }

.breakdown { margin-bottom: 40px; }
.breakdown h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.bar-row { display: grid; grid-template-columns: 140px 1fr 80px; align-items: center; gap: 16px; margin-bottom: 12px; }
.bar-label { font-size: 14px; font-weight: 700; }
.bar-track { height: 24px; background: #F5F6F8; border-radius: 12px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--teal); border-radius: 12px; transition: width 1s ease; }
.bar-count { text-align: right; font-weight: 800; font-size: 14px; }
.breakdown-empty { color: var(--text-mute); font-size: 15px; padding: 12px 0; }


.etf-extras-grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px; margin-top: 32px;
  align-items: stretch;
}
.etf-extras-grid > * { min-width: 0; }


.etf-card {
  background: var(--orange); color: white; padding: 32px; border-radius: 24px;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px; align-items: center;
}
.etf-card__text, .etf-card > * { min-width: 0; }
.etf-card, .etf-card * { overflow-wrap: break-word; word-break: normal; }
.etf-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 14px; line-height: 1.2; }
.etf-card p { opacity: 0.95; margin-bottom: 14px; font-size: 15px; line-height: 1.5; }
.etf-amount { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 14px; letter-spacing: -0.01em; }
.etf-gain { font-weight: 700; font-size: 15px; opacity: 1; margin-bottom: 14px; }
.etf-disclaimer { font-size: 12px; opacity: 0.85; margin-bottom: 0; line-height: 1.4; }

.etf-chart {
  height: 150px; display: flex; align-items: flex-end; gap: 3px;
  background: rgba(0,0,0,0.08); border-radius: 10px; padding: 8px;
  min-width: 0; width: 100%;
}
.etf-bar {
  flex: 1; background: rgba(255,255,255,0.92); border-radius: 3px 3px 0 0;
  min-height: 2px; transition: height 0.8s cubic-bezier(.2,.8,.2,1);
}


.comparison-card {
  background: var(--cream); border: 2px solid var(--border); border-radius: 20px;
  padding: 24px; display: flex; gap: 18px; align-items: center;
  min-width: 0; overflow-wrap: break-word;
}
.comparison-card__image { flex-shrink: 0; }
.comparison-card__image img {
  border-radius: 12px; width: 96px; height: 96px; object-fit: contain;
  background: var(--teal-light); padding: 8px;
}
.comparison-card__text { min-width: 0; flex: 1; }
.comparison-card__lead {
  font-weight: 800; color: var(--teal); margin-bottom: 6px;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-card__body { font-size: 15px; line-height: 1.5; color: var(--text); margin: 0; }


.info-note {
  background: var(--teal-light); border-radius: 16px;
  padding: 20px 24px; margin: 32px 0 0; color: var(--text-mute);
  text-align: center; font-size: 15px;
}
.info-note p { margin: 0; }


.landing-filters {
  background: var(--cream); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 20px; margin-top: 24px; margin-bottom: 24px;
}
.landing-filters .filter-row { justify-content: center; }
.landing-cta {
  text-align: center; margin-top: 32px; margin-bottom: 16px;
}
.filter-row { display: flex; gap: 16px; align-items: end; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label {
  font-size: 12px; font-weight: 700; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-group select {
  padding: 8px 12px; border: 2px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  background: white; color: var(--text); cursor: pointer;
}
.filter-group select:focus { outline: none; border-color: var(--teal); }
.filter-submit {
  padding: 10px 20px; background: var(--teal); color: white; border: none;
  border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
}
.filter-submit:hover { background: var(--teal-dark); }


.hero-intro { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.hero-intro .hero-mascot { margin: 0 auto 16px; display: block; }
.hero-intro .badges { justify-content: center; }
.hero-intro h1 { font-size: 44px; }
.hero-intro .hero-sub { margin: 0 auto 24px; }


.takeaways {
  list-style: none; padding: 24px 28px; margin: 0 0 24px;
  background: var(--bg-soft, #f7f8fa);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
}
.takeaways li {
  position: relative; padding-left: 28px;
  margin-bottom: 14px; line-height: 1.6;
}
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800;
}
.takeaways strong { color: var(--text); font-weight: 800; }


.combo-story__inner {
  max-width: 760px; margin: 0 auto;
  background: white; border-radius: 20px; padding: 32px 36px;
  border: 1px solid var(--border);
}
.combo-story__inner h2 { font-size: 26px; margin-bottom: 18px; }
.combo-story__inner p {
  font-size: 16px; line-height: 1.7; color: var(--text);
  margin-bottom: 14px;
}
.combo-story__inner p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .combo-story__inner { padding: 24px 22px; }
  .combo-story__inner h2 { font-size: 22px; }
  .combo-story__inner p { font-size: 15px; }
}


.trust-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px;
  list-style: none; padding: 0; margin: 0 auto 24px;
  max-width: 760px;
  font-size: 13px; color: var(--text-mute);
}
.trust-stats li { display: inline-flex; align-items: baseline; gap: 6px; }
.trust-stats strong { color: var(--teal); font-weight: 800; font-size: 15px; }
@media (max-width: 600px) {
  .trust-stats { gap: 8px 18px; font-size: 12px; }
  .trust-stats strong { font-size: 14px; }
}


.lottoschein-form { max-width: 1100px; margin: 0 auto; }
.lottoschein {
  background: white; border-radius: 24px; padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.lottoschein__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.lottoschein__badge {
  background: var(--teal); color: white;
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 800; letter-spacing: 1px;
}
.lottoschein__subtitle {
  font-size: 14px; color: var(--text-mute);
  font-weight: 600; margin-left: 12px;
}
.lottoschein__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-bottom: 24px;
}

.tipfield {
  border: 2px solid var(--border); border-radius: 14px;
  padding: 10px; position: relative;
  transition: border-color 0.15s, opacity 0.15s, background 0.15s;
}
.tipfield--active { border-color: var(--teal); }
.tipfield--complete { border-color: var(--teal); background: var(--teal-light); }
.tipfield--inactive { opacity: 0.5; cursor: pointer; }
.tipfield--inactive:hover { opacity: 0.8; }
.tipfield__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.tipfield__label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  color: var(--teal); letter-spacing: 0.5px;
}
.tipfield__counter { font-size: 11px; font-weight: 700; color: var(--text-mute); }

.tipfield__numbers {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.numcell {
  width: 100%; aspect-ratio: 1; border: none;
  background: #F6F2E8; border-radius: 4px;
  font-family: inherit; font-size: 11px; font-weight: 700;
  color: var(--text); cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.1s, color 0.1s;
}
.numcell:hover { background: var(--teal-light); }
.numcell--selected { background: var(--teal); color: white; }
.numcell--selected:hover { background: var(--teal-dark); }
.numcell--disabled { opacity: 0.3; cursor: default; }
.numcell--disabled:hover { background: #F6F2E8; }

.tipfield__actions {
  display: flex; justify-content: space-between; margin-top: 6px;
}
.tipfield__quicktipp, .tipfield__clear {
  font-size: 10px; font-weight: 700; background: none; border: none;
  color: var(--teal); cursor: pointer; padding: 2px 0;
  font-family: inherit;
}
.tipfield__quicktipp:hover, .tipfield__clear:hover { text-decoration: underline; }

.tipfield__overlay {
  position: absolute; inset: 0; border-radius: 12px;
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: var(--teal);
  pointer-events: none;
}
.tipfield--active .tipfield__overlay { display: none; }

.lottoschein__superzahl { margin-bottom: 24px; text-align: center; }
.lottoschein__sz-label {
  font-size: 13px; font-weight: 700; color: var(--text-mute);
  margin-bottom: 8px; display: block;
}
.lottoschein__sz-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.sz-ball {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  font-family: inherit; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all 0.1s; color: var(--text);
}
.sz-ball:hover { border-color: var(--orange); }
.sz-ball--selected { background: var(--orange); color: white; border-color: var(--orange); }

.lottoschein__filters {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.lottoschein__filters .filter-group label { color: var(--text-mute); }

.lottoschein__error {
  background: #FEECEC; color: #A6372B; border-radius: 10px;
  padding: 12px 16px; font-size: 14px; font-weight: 600;
  margin: 0 0 16px; text-align: center;
}

.lottoschein__submit {
  width: 100%; padding: 16px; background: var(--orange); color: white;
  border: none; border-radius: 14px; font-family: inherit;
  font-size: 18px; font-weight: 800; cursor: pointer;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(243,156,46,0.35);
}
.lottoschein__submit:hover:not(:disabled) {
  background: #E08A1A; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243,156,46,0.45);
}
.lottoschein__submit:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }

@media (max-width: 1100px) { .lottoschein__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) {
  .lottoschein__grid { grid-template-columns: repeat(3, 1fr); }
  .lottoschein__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-intro h1 { font-size: 32px; }
}
@media (max-width: 480px) {
  
  .lottoschein__grid { grid-template-columns: 1fr; }
  .numcell { font-size: 13px; }
}


.combo-showcase {
  background: white; border-radius: 20px; padding: 24px 28px;
  margin-bottom: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.combo-showcase__label {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal); margin-bottom: 14px;
}
.combo-showcase__balls {
  display: flex; gap: 10px; flex-wrap: wrap;
}


.latest-draw {
  background: white; border-radius: 20px; padding: 24px 28px;
  margin-bottom: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  text-align: center; border: 1px solid var(--border);
}
.latest-draw__header {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.latest-draw__label {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal-dark);
  background: var(--teal-light); padding: 4px 12px; border-radius: 20px;
}
.latest-draw__date { font-size: 15px; font-weight: 700; color: var(--text-mute); }
.latest-draw__numbers {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.lotto-ball {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.lotto-ball--super {
  background: var(--orange); color: var(--text); font-size: 12px;
  width: auto; padding: 0 14px; border-radius: 24px;
}
.lotto-ball--small {
  width: 32px; height: 32px; font-size: 13px;
}
.lotto-ball--small.lotto-ball--super {
  width: auto; padding: 0 10px; height: 32px; font-size: 11px;
}


.share-summary {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px;
  margin-bottom: 32px;
}
.share-summary__row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.share-summary__row + .share-summary__row {
  border-top: 1px solid var(--border);
}
.share-summary__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-mute); min-width: 140px;
}
.share-summary__tips {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.share-summary__tip {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.share-summary__sz {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-mute); font-weight: 600;
}
.share-summary__range {
  font-size: 14px; color: var(--text); font-weight: 600;
}
.latest-draw__cta {
  display: inline-block; font-size: 14px; font-weight: 700;
  color: var(--teal); text-decoration: none;
}
.latest-draw__cta:hover { text-decoration: underline; }


section.block { padding: 80px 0; }



section.how,
section.combos-section { background: var(--teal-light); }
.how-lead { color: var(--text-mute); font-size: 17px; max-width: 640px; margin-bottom: 40px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.how-step {
  background: var(--cream); padding: 32px 28px; border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(31,122,127,0.10); }
.how-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: white; color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(31,122,127,0.12);
}
.how-icon svg { width: 30px; height: 30px; }
.how-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.how-step p { font-size: 15px; color: var(--text-mute); }
.how-note {
  background: white; border-radius: 16px; padding: 20px 24px;
  font-size: 14px; color: var(--text-mute); line-height: 1.6;
  border: 1px solid var(--border);
}
.how-note strong { color: var(--teal); font-weight: 800; }
h2 { font-size: 36px; font-weight: 900; margin-bottom: 32px; }
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.combo-card {
  background: white; padding: 24px; border-radius: 20px; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s; text-decoration: none; color: inherit; display: block;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: var(--teal); }
.combo-title { font-weight: 800; font-size: 18px; margin-bottom: 12px; }
.combo-nums { display: flex; gap: 6px; margin-bottom: 12px; }
.combo-ball {
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal);
  color: white; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.combo-desc { font-size: 13px; color: var(--text-mute); }


.archive-table {
  width: 100%; border-collapse: collapse; background: white; border-radius: 16px; overflow: hidden;
}
.archive-table th, .archive-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px;
}
.archive-table th {
  background: var(--teal-light); font-weight: 700; color: var(--teal); text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.5px;
}
.archive-table tbody tr:hover { background: var(--cream); }


.footer { background: var(--teal-dark); color: white; padding: 50px 0 30px; }
.footer-nav {
  display: grid; grid-template-columns: max-content max-content;
  gap: 80px; justify-content: center;
}
.footer-column h4, .footer-col-title { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; opacity: 0.7; font-weight: 800; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin: 0; }
.footer-column a { color: white; text-decoration: none; display: block; padding: 4px 0; opacity: 0.9; font-size: 14px; }
.footer-column a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-responsibility {
  background: rgba(255,255,255,0.06); padding: 12px 20px; border-radius: 10px;
  font-size: 14px; color: var(--cream); margin-bottom: 12px; line-height: 1.5;
}
.footer-responsibility a { color: var(--orange); text-decoration: underline; }
.footer-responsibility a:hover { color: white; }
.footer-copyright { font-size: 12px; opacity: 0.7; text-align: center; margin: 0; }


.static-section { padding: 60px 0; }
.static-page { max-width: 760px; margin: 0 auto; background: white; padding: 48px 56px; border-radius: 24px; border: 1px solid var(--border); }
.static-page h1 { font-size: 36px; font-weight: 900; margin-bottom: 24px; line-height: 1.15; }
.static-page h2 { font-size: 22px; font-weight: 800; margin-top: 36px; margin-bottom: 14px; color: var(--teal); }
.static-page h3 { font-size: 17px; font-weight: 800; margin-top: 28px; margin-bottom: 10px; }
.static-page p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; color: var(--text); }
.static-page p.lead { font-size: 18px; color: var(--text-mute); }
.static-page ul { margin: 0 0 18px 22px; padding: 0; }
.static-page li { font-size: 16px; line-height: 1.6; margin-bottom: 6px; }
.static-page a { color: var(--teal); text-decoration: underline; }
.static-page a:hover { color: var(--teal-dark); }
.static-page strong { font-weight: 800; }

@media (max-width: 900px) {
  .footer-nav { gap: 40px; }
  .static-page { padding: 32px 24px; }
  .static-page h1 { font-size: 28px; }
}


.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


@media (max-width: 900px) {
  .hero-grid, .etf-card, .etf-extras-grid, footer .container { grid-template-columns: 1fr; gap: 24px; }
  .stat-cards, .combo-grid, .how-grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  .result-headline { font-size: 42px; }
  .result { padding: 32px 20px; }
  .nav-links { display: none; }
  .hero-mascot { width: 120px; }
  .etf-amount { font-size: 36px; }
  .comparison-card { flex-direction: column; text-align: center; }
}


.insights-section { margin-top: 40px; }
.insights-section__title { font-size: 26px; font-weight: 900; text-align: center; margin-bottom: 8px; }
.insights-section__subtitle { text-align: center; color: var(--text-mute); font-size: 15px; margin-bottom: 24px; }

.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.insight-card {
  background: white; border-radius: 20px; padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  border: 2px solid var(--border);
}
.insight-card--past { background: #EEF5FB; border-color: #7FB3D8; }
.insight-card--future { background: #F4EFFB; border-color: #B197D9; }

.insight-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.insight-icon {
  width: 44px; height: 44px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.insight-title { font-size: 20px; font-weight: 900; }
.insight-sub { color: var(--text-mute); font-size: 13px; margin-bottom: 20px; }

.segment {
  display: inline-flex; background: rgba(255,255,255,0.7); border-radius: 12px;
  padding: 4px; gap: 2px; margin-bottom: 20px;
}
.segment button {
  padding: 8px 14px; border: none; background: transparent; font-family: inherit;
  font-weight: 700; font-size: 13px; color: var(--text-mute); cursor: pointer;
  border-radius: 8px; transition: all 0.15s;
}
.segment button:hover { color: var(--text); }
.segment button.active { background: white; color: var(--teal); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

.past-date { font-size: 13px; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.past-numbers { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.lotto-ball--hit { background: var(--green) !important; color: white !important; border-color: var(--green) !important; }

.past-result {
  padding: 12px 16px; background: white; border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.past-result-label { font-size: 13px; font-weight: 700; color: var(--text-mute); }
.past-result-value--hit { color: var(--green); font-weight: 900; }
.past-result-value--miss { color: var(--red); font-weight: 700; }

.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.scenario-tile { padding: 14px; border-radius: 12px; background: white; text-align: center; }
.scenario-tile--lotto { border-left: 4px solid var(--red); }
.scenario-tile--pillow { border-left: 4px solid #999; }
.scenario-tile--savings { border-left: 4px solid #D4A843; }
.scenario-tile--etf { border-left: 4px solid var(--green); }
.scenario-tile__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-mute); margin-bottom: 4px; }
.scenario-tile__value { font-size: 18px; font-weight: 900; }
.scenario-tile__value--negative { color: var(--red); }
.scenario-tile__value--positive { color: var(--green); }
.scenario-tile__detail { font-size: 10px; color: var(--text-mute); margin-top: 2px; }

.scenario-disclaimer {
  font-size: 11px; color: var(--text-mute); line-height: 1.5;
  padding: 10px; background: rgba(255,255,255,0.5); border-radius: 8px; margin-bottom: 14px;
}

.owl-quote {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: rgba(255,255,255,0.5); border-radius: 12px;
  font-size: 13px; font-style: italic; line-height: 1.5;
}
.owl-quote__img { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.insights-faq-link { display: inline; font-size: 12px; color: var(--teal); font-weight: 700; text-decoration: none; font-style: normal; }
.insights-faq-link:hover { text-decoration: underline; }

.insights-grid .hidden { display: none; }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .segment { flex-wrap: wrap; }
}


.affiliate-box {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 28px;
  margin: 40px 0;
}
.affiliate-box__title { font-size: 18px; font-weight: 800; color: var(--teal-dark); margin-bottom: 16px; text-align: center; }
.affiliate-box__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.affiliate-box__broker { background: white; border-radius: 14px; padding: 20px; text-align: center; }
.affiliate-box__name { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.affiliate-box__desc { font-size: 13px; color: var(--text-mute); margin-bottom: 12px; }
.affiliate-box__cta {
  display: inline-block; padding: 8px 20px; background: var(--orange); color: white;
  border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px;
}
.affiliate-box__cta:hover { background: #E08A1A; }
.affiliate-box__disclaimer { font-size: 11px; color: var(--text-mute); text-align: center; font-style: italic; }
@media (max-width: 768px) { .affiliate-box__grid { grid-template-columns: 1fr; } }


.article-page { max-width: 760px; margin: 0 auto; padding: 40px 20px; }
.article-page__header { text-align: center; margin-bottom: 40px; }
.article-page__category {
  display: inline-block; background: var(--teal-light); color: var(--teal);
  padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.article-page__header h1 { font-size: 36px; font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
.article-page__meta { font-size: 14px; color: var(--text-mute); }
.article-page__content { font-size: 17px; line-height: 1.8; color: var(--text); }
.article-page__content h2 {
  font-size: 26px; font-weight: 900; margin-top: 48px; margin-bottom: 16px; color: var(--teal-dark);
}
.article-page__content h3 { font-size: 20px; font-weight: 800; margin-top: 32px; margin-bottom: 12px; }
.article-page__content p { margin-bottom: 16px; }
.article-page__content ul, .article-page__content ol { margin: 0 0 16px 1.4em; }
.article-page__content li { margin-bottom: 6px; }
.article-page__content blockquote {
  border-left: 4px solid var(--orange); padding: 16px 20px; margin: 24px 0;
  background: var(--cream); border-radius: 0 12px 12px 0; font-style: italic;
}
.article-page__content table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px;
}
.article-page__content th, .article-page__content td {
  padding: 10px 14px; border-bottom: 1px solid var(--border); text-align: left;
}
.article-page__content th { font-weight: 800; color: var(--teal-dark); background: var(--teal-light); }
.article-page__cta { text-align: center; margin: 48px 0; }
.article-page__cta-button {
  display: inline-block; padding: 16px 40px; background: var(--teal); color: white;
  border-radius: 14px; text-decoration: none; font-weight: 800; font-size: 18px;
}
.article-page__cta-button:hover { background: var(--teal-dark); }


.guide-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0 8px;
}
.guide-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px; border-radius: 14px;
  background: var(--cream); border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.guide-card:hover {
  border-color: var(--teal); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31,122,127,0.12);
  text-decoration: none;
}
.guide-card__title { font-weight: 800; font-size: 16px; color: var(--teal-dark); line-height: 1.3; }
.guide-card__desc { font-size: 13px; color: var(--text-mute); line-height: 1.5; }


.guide-section__lead {
  font-size: 17px; color: var(--text-mute); max-width: 640px;
  margin: -8px 0 32px;
}
.guide-grid {
  display: flex; flex-direction: column; gap: 16px;
}
.guide-grid__spokes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}

.guide-grid__spokes .guide-card:nth-child(odd)  { background: var(--cream); }
.guide-grid__spokes .guide-card:nth-child(even) { background: #FFFFFF; }
.guide-card--featured {
  position: relative; padding: 28px 32px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
  border: 2px solid var(--teal);
}
.guide-card--featured .guide-card__title { font-size: 22px; }
.guide-card--featured .guide-card__desc { font-size: 15px; max-width: 720px; }
.guide-card__badge {
  position: absolute; top: 16px; right: 20px;
  background: var(--teal); color: white;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 999px;
}

@media (max-width: 768px) {
  .article-page__header h1 { font-size: 28px; }
  .article-page__content { font-size: 16px; }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-grid__spokes { grid-template-columns: 1fr; }
  .guide-card--featured { padding: 24px 20px; }
  .guide-card--featured .guide-card__title { font-size: 19px; }
}


.result-share {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: flex-end;
  margin: 24px 0;
}
.result-share__button {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--teal-dark);
  border: 2px solid var(--teal); border-radius: 12px;
  padding: 10px 18px; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.result-share__button:hover:not(:disabled) {
  background: var(--teal); color: white;
}
.result-share__button:disabled { opacity: 0.6; cursor: wait; }
.result-share__icon { width: 18px; height: 18px; flex-shrink: 0; }
.toast {
  
  font-size: 14px; color: var(--teal-dark); font-weight: 600;
  transition: opacity 0.2s;
}
.toast--hidden { opacity: 0; pointer-events: none; }
.toast--error { color: var(--red); }
.toast::before {
  content: "✓"; margin-right: 6px; font-weight: 800;
}
.toast--error::before { content: "⚠"; }


.loading-overlay {
  position: fixed; inset: 0;
  
  background: #333B47;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: loading-fade-in 0.2s ease-out;
}
.loading-overlay[hidden] { display: none; }
@keyframes loading-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.loading-overlay__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; max-width: 420px; text-align: center; color: #fff;
}


.loading-overlay__logo {
  position: relative;
  width: min(220px, 60vw);
  aspect-ratio: 513 / 557;
}
.loading-overlay__logo img {
  width: 100%; height: 100%; display: block;
}
.loading-overlay__spinner {
  position: absolute;
  top: 52.6%; left: 71.5%;
  transform: translate(-50%, -50%);
  width: 22%; height: 22%;
  animation: loading-spin 1.1s linear infinite;
}
.loading-overlay__spinner-track { stroke: rgba(31, 122, 127, 0.18); }
.loading-overlay__spinner-arc {
  stroke: var(--teal);
  stroke-dasharray: 90 200;
  stroke-dashoffset: 0;
}
@keyframes loading-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.loading-overlay__headline {
  font-size: 22px; font-weight: 800; color: #fff; margin: 0;
}
.loading-overlay__step {
  font-size: 16px; color: rgba(255, 255, 255, 0.78);
  min-height: 1.6em; transition: opacity 0.2s; margin: 0;
}

.loading-overlay__progress {
  width: min(320px, 80vw); height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px; overflow: hidden;
  margin-top: 4px;
}
.loading-overlay__progress-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .loading-overlay { animation: none; }
  .loading-overlay__spinner { animation-duration: 3s; }
  .loading-overlay__progress-bar { transition: none !important; }
}
