/* =========================================================================
   123GAMES.LU  —  refined dark "game hub" design system
   Calmer than pure neon: one mint-teal accent + sparing warm highlights.
   ========================================================================= */
:root {
  --bg:        #0C0E14;
  --bg-2:      #11141D;
  --surface:   #161A24;
  --surface-2: #1D212E;
  --line:      rgba(255,255,255,.07);
  --line-2:    rgba(255,255,255,.13);
  --fg:        #ECEEF4;
  --fg-dim:    #C1C6D4;
  --muted:     #848A9C;

  --teal:   #46CDBE;   /* primary accent */
  --teal-d: #2FB3A5;
  --coral:  #FF8C6B;   /* warm secondary, used sparingly */
  --gold:   #F1C25A;
  --violet: #8C7BEA;

  --accent: var(--teal);
  --glow:   0 0 24px -12px rgba(70,205,190,.6);

  --font: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --wrap: 1200px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--font); font-size: 16.5px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(900px 460px at 78% -8%, rgba(70,205,190,.07), transparent 62%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 700; text-wrap: balance; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.eyebrow { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--teal); }

/* ---------------- nav ---------------- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(12,14,20,.78); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 22px; height: 68px; }
.logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 24px; margin-left: 6px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--fg-dim); position: relative; padding: 4px 0; }
.nav-links a:hover { color: #fff; }
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:-3px; height:2px; background: var(--teal); transition:right .22s; border-radius:2px; }
.nav-links a:hover::after { right: 0; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 13px; }

.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 12px; font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--fg); }
.lang-btn .flag { width: 18px; height: 12px; border-radius: 2px; overflow: hidden; display: inline-block; }
.lang-btn .chev { width: 7px; height: 7px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); margin-top:-3px; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 150px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px; padding: 6px; display: none; box-shadow: 0 24px 50px -22px #000; z-index: 70; }
.lang-menu.open { display: block; }
.lang-opt { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; background: none; border: 0; border-radius: 8px; padding: 9px 11px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--fg-dim); font-family: var(--font); }
.lang-opt .flag { width: 20px; height: 13px; border-radius: 2px; overflow: hidden; }
.lang-opt:hover { background: var(--surface-2); color:#fff; }
.lang-opt[aria-selected="true"] { color: var(--teal); }

.btn-sub { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: #06201d; padding: 11px 20px; border-radius: 999px; background: var(--teal); border: 0; cursor: pointer; transition: transform .12s, box-shadow .2s, background .2s; box-shadow: var(--glow); }
.btn-sub:hover { transform: translateY(-1px); background: #55dccc; }
.btn-sub.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-2); box-shadow: none; }
.btn-sub.ghost:hover { border-color: var(--teal); color: var(--teal); background: transparent; }
.nav-toggle { display: none; }

/* ---------------- hero ---------------- */
.hero { padding: 34px 0 8px; }
.hero-stage { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-2); min-height: 440px; display: flex; align-items: flex-end; isolation: isolate; }
.hero-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-stage::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(90deg, rgba(10,12,18,.96) 0%, rgba(10,12,18,.78) 38%, rgba(10,12,18,.2) 74%), linear-gradient(0deg, rgba(10,12,18,.85), transparent 52%); }
.hero-inner { padding: 44px; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); background: rgba(255,255,255,.05); border: 1px solid var(--line-2); padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.hero h1 { font-size: clamp(36px, 5.4vw, 64px); font-weight: 700; letter-spacing: -.035em; line-height: 1.0; }
.hero h1 .accent { color: var(--teal); }
.hero p.lede { color: var(--fg-dim); font-size: 17.5px; margin: 18px 0 26px; max-width: 46ch; }
.hero-actions { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }
.btn-play { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14.5px; color: var(--fg); padding: 12px 20px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); }
.btn-play:hover { border-color: var(--teal); color: var(--teal); }
.btn-play .tri { border-left: 10px solid currentColor; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.hero-price { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 16px; }
.hero-price b { color: var(--fg-dim); }

/* trending rail */
.rail-head { display: flex; align-items: baseline; justify-content: space-between; margin: 42px 0 16px; }
.rail-head h2 { font-size: 21px; font-weight: 700; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(224px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; scroll-snap-type: x mandatory; }
.rail::-webkit-scrollbar { height: 8px; } .rail::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 8px; }
.rail .card { scroll-snap-align: start; }

/* ---------------- section scaffold ---------------- */
.section { padding: 60px 0; }
.section.tight { padding: 40px 0; }
.sec-head { margin-bottom: 30px; max-width: 62ch; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { display: block; margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -.03em; }
.sec-head p { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* ---------------- how it works (steps) ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; }
.step .num { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--teal); background: rgba(70,205,190,.1); border: 1px solid rgba(70,205,190,.25); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.step:nth-child(2) .num { color: var(--coral); background: rgba(255,140,107,.1); border-color: rgba(255,140,107,.25); }
.step:nth-child(3) .num { color: var(--gold); background: rgba(241,194,90,.1); border-color: rgba(241,194,90,.25); }
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------------- category showcase ---------------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-tile { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); min-height: 150px; display: flex; align-items: flex-end; cursor: pointer; isolation: isolate; }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: .55; transition: transform .4s, opacity .3s; }
.cat-tile::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(12,14,20,.95) 12%, rgba(12,14,20,.4) 100%); }
.cat-tile:hover img { transform: scale(1.06); opacity: .7; }
.cat-tile:hover { border-color: var(--line-2); }
.cat-tile .ct-body { padding: 18px 20px; }
.cat-tile .ct-name { font-size: 19px; font-weight: 700; }
.cat-tile .ct-count { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--teal); margin-top: 3px; }

/* ---------------- stat strip (subtle) ---------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.stat { background: var(--bg-2); padding: 24px 20px; text-align: center; }
.stat .n { font-size: 28px; font-weight: 700; letter-spacing: -.02em; color: var(--fg); }
.stat:nth-child(1) .n { color: var(--teal); }
.stat .l { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* category tabs */
.tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 24px; }
.tab { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); color: var(--fg-dim); cursor: pointer; transition: .15s; }
.tab:hover { color: #fff; }
.tab.active { color: #06201d; background: var(--teal); border-color: transparent; }

/* ---------------- game grid + cards ---------------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { position: relative; border-radius: 15px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .18s, border-color .2s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 20px 40px -26px #000; }
.card-thumb { position: relative; aspect-ratio: 1.57; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-thumb img { transform: scale(1.05); }
.card-thumb::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(12,14,20,.55), transparent 45%); }
.card-cat { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fg); background: rgba(12,14,20,.72); border: 1px solid var(--line-2); padding: 4px 9px; border-radius: 6px; }
.card-play { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; opacity: 0; transition: .2s; pointer-events: none; }
.card:hover .card-play { opacity: 1; }
.card-play > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(70,205,190,.16); border: 1px solid var(--teal); backdrop-filter: blur(3px); }
.card-play > span::before { content:""; border-left: 13px solid var(--teal); border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px; }
.card-body { padding: 13px 15px 15px; }
.card-body h3 { font-size: 15.5px; font-weight: 600; }
.card-body p { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.card[hidden] { display: none; }

/* ---------------- features / why ---------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px; }
.feature .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 15px; background: rgba(70,205,190,.1); border: 1px solid rgba(70,205,190,.24); color: var(--teal); }
.feature:nth-child(2) .ic { background: rgba(255,140,107,.1); border-color: rgba(255,140,107,.24); color: var(--coral); }
.feature:nth-child(3) .ic { background: rgba(140,123,234,.1); border-color: rgba(140,123,234,.24); color: var(--violet); }
.feature:nth-child(4) .ic { background: rgba(241,194,90,.1); border-color: rgba(241,194,90,.24); color: var(--gold); }
.feature .ic svg { width: 20px; height: 20px; }
.feature h3 { font-size: 16.5px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ---------------- pricing ---------------- */
.price-panel { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-2); background:
  radial-gradient(600px 260px at 90% 0%, rgba(70,205,190,.1), transparent 62%),
  radial-gradient(560px 260px at 2% 100%, rgba(255,140,107,.07), transparent 60%), var(--bg-2);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 38px; padding: 44px; align-items: center; }
.price-copy .eyebrow { display: block; margin-bottom: 14px; }
.price-copy h2 { font-size: clamp(26px, 3.6vw, 42px); font-weight: 700; letter-spacing: -.03em; }
.price-copy h2 .accent { color: var(--teal); }
.price-copy > p { color: var(--fg-dim); margin: 15px 0 0; max-width: 46ch; }
.price-copy .fine { font-family: var(--mono); font-size: 11px; color: var(--muted); line-height: 1.75; margin-top: 20px; }
.price-copy .fine a { color: var(--fg-dim); text-decoration: underline; }
.price-box { background: rgba(12,14,20,.55); border: 1px solid var(--line-2); border-radius: 18px; padding: 30px; text-align: center; }
.price-box .amt { font-size: 52px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.price-box .amt span { font-size: 19px; color: var(--muted); font-weight: 600; }
.price-box .per { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-top: 8px; }
.price-box .sub-cta { display: block; margin: 22px 0 12px; }
.price-box .stop { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.price-box .stop b { color: var(--fg-dim); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 9px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 14px 18px; font-weight: 600; font-size: 14.5px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 17px; color: var(--teal); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .a { padding: 12px 18px 17px; color: var(--fg-dim); font-size: 13.8px; line-height: 1.65; }
.faq .a a { color: var(--teal); }

/* ---------------- footer ---------------- */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding: 52px 0 30px; margin-top: 50px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.foot-brand img { height: 28px; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.foot-support-title { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 4px 0 12px; font-weight: 600; }
.foot-contact { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-contact li { display: flex; align-items: center; gap: 9px; }
.foot-contact svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }
.foot-contact a { color: var(--fg-dim); font-size: 14px; }
.foot-contact a:hover { color: var(--teal); }
.foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 15px; font-weight: 600; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--fg-dim); font-size: 14px; }
.foot-col a:hover { color: var(--teal); }
.foot-legal { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); line-height: 1.7; }
.foot-legal b { color: var(--fg-dim); font-weight: 600; }

/* ---------------- modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-bg { position: absolute; inset: 0; background: rgba(4,5,10,.74); backdrop-filter: blur(4px); }
.modal-card { position: relative; width: min(560px,100%); background: var(--surface); border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden; max-height: 92vh; overflow-y: auto; box-shadow: 0 40px 90px -30px #000; }
.modal-hero { position: relative; aspect-ratio: 1.57; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-x { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(12,14,20,.75); border: 1px solid var(--line-2); color: #fff; font-size: 20px; cursor: pointer; z-index: 3; }
.modal-body { padding: 22px 24px 24px; }
.modal-body .m-cat { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.modal-body h3 { font-size: 23px; margin: 6px 0; }
.modal-body .m-desc { color: var(--fg-dim); font-size: 15px; }
.modal-body .m-price { font-family: var(--mono); font-size: 11.5px; color: var(--muted); background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin: 16px 0; line-height: 1.6; }
.modal-body .m-cta { display: block; text-align: center; }

/* ---------------- sub-page ---------------- */
.page-hero { padding: 44px 0 6px; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 50px); letter-spacing: -.03em; }
.crumb { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.crumb::before { content: "\2190"; color: var(--teal); }
.crumb:hover { color: var(--fg); }
.article { padding: 18px 0 40px; }
.article .wrap { max-width: 800px; }
.article h2 { font-size: 21px; margin: 32px 0 10px; }
.article h3 { font-size: 16.5px; margin: 22px 0 8px; }
.article p, .article li { color: var(--fg-dim); font-size: 15.5px; line-height: 1.72; }
.article p { margin: 0 0 14px; }
.article ul { margin: 0 0 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.article a { color: var(--teal); }
.article .lead { font-size: 18px; color: var(--muted); margin-bottom: 22px; }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-weight: 600; color: #06201d; background: var(--teal); padding: 12px 20px; border-radius: 999px; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 24px 0; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.contact-card .l { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.contact-card .v { font-weight: 600; } .contact-card a { color: var(--teal); }

/* ---------------- responsive ---------------- */
@media (max-width: 940px){
  .grid, .features { grid-template-columns: repeat(3,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .steps, .cat-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .price-panel { grid-template-columns: 1fr; gap: 26px; padding: 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .nav-links, .nav .btn-sub { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 42px; height: 42px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px; cursor: pointer; margin-left: auto; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width:18px; height:2px; background:#fff; position:relative; }
  .nav-toggle span::before { position:absolute; top:-6px; } .nav-toggle span::after { position:absolute; top:6px; }
  .nav.open .nav-links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 4px; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 14px 22px; }
  .grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { padding: 30px 24px; } .hero-stage { min-height: 400px; }
}
@media (max-width: 480px){
  .grid, .features, .cat-grid, .stats { grid-template-columns: 1fr 1fr; }
}

/* ── Commercial promoter disclosure ── */
.promoter-band{ padding: 0 0 4rem; }
.promoter-box{
  max-width: 880px; margin: 0 auto;
  padding: 1.15rem 1.5rem;
  background: rgba(70,205,190,.06);
  border: 1px solid rgba(70,205,190,.22);
  border-radius: 14px;
  color: var(--fg-dim);
  font-size: .92rem; line-height: 1.65; text-align: center;
}
.promoter-box p{ margin: 0; }
.promoter-box a{ color: var(--accent); font-weight: 600; text-decoration: none; white-space: nowrap; }
.promoter-box a:hover{ text-decoration: underline; }

.article .promoter{
  margin: 0 0 1.25rem;
  padding: .95rem 1.15rem;
  background: rgba(70,205,190,.06);
  border: 1px solid rgba(70,205,190,.18);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  color: var(--fg-dim);
  font-size: .95rem; line-height: 1.6;
}

/* Promoter disclosure as an integrated top line on legal pages (no box) */
.article .promoter-line{
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--fg-dim);
  line-height: 1.65;
}
