:root {
  --blue: #4DA8E0;
  --blue-dark: #2A8BC7;
  --blue-deep: #060D1A;
  --yellow: #FECC00;
  --yellow-soft: #FFE066;
  --ink: #E8EDF2;
  --muted: #7A8FA5;
  --bg: #0A111F;
  --card: #152238;
  --line: #2A3F5A;
  --ok: #2ECC71;
  --warn: #E74C3C;
  --text: #C8D8E8;
  --shadow: 0 6px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 14px 40px rgba(0,0,0,.6);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 17px; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; margin-top: 2em; }
h3 { font-size: 1.25rem; font-weight: 700; margin-top: 1.4em; }
p { margin: 0 0 1em; color: var(--text); }
ul, ol { padding-left: 1.3em; }
li { margin: .3em 0; color: var(--text); }
strong { color: var(--ink); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.topbar { background: var(--yellow); color: var(--blue-deep); font-size: 13px; font-weight: 700; padding: 10px 0; text-align: center; }
.topbar span { margin: 0 12px; display: inline-block; }
.topbar .sep { opacity: .3; }

.site-header { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.1rem; text-decoration: none; }
.brand img { width: 38px; height: 38px; object-fit: contain; flex: 0 0 auto; }
.brand span b { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; padding: 1px 6px; border-radius: 4px; }
.brand span em { font-style: normal; color: var(--yellow); background: var(--blue-deep); padding: 1px 4px; border-radius: 4px; font-size: .7rem; vertical-align: super; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); padding: 4px; }
.nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav ul a { color: var(--ink); font-weight: 600; font-size: .92rem; padding: 4px 0; transition: color .2s; }
.nav ul a:hover { color: var(--blue); text-decoration: none; }
.nav ul a.cta-nav { background: var(--yellow); color: var(--blue-deep); padding: 8px 18px; border-radius: 99px; font-weight: 800; font-size: .85rem; }
.nav ul a.cta-nav:hover { box-shadow: 0 4px 14px rgba(254,204,0,.5); }

.btn { display: inline-block; background: var(--yellow); color: var(--blue-deep); font-weight: 800; padding: 12px 24px; border-radius: 99px; text-decoration: none; border: 2px solid var(--yellow); transition: transform .15s ease, box-shadow .15s ease; font-size: .95rem; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(254,204,0,.5); text-decoration: none; }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { box-shadow: 0 6px 18px rgba(0,106,167,.45); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

.hero { background: linear-gradient(135deg, var(--blue-deep) 0%, #0A2647 50%, #1A3A5C 100%); color: #fff; padding: 72px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at 80% 20%, rgba(254,204,0,.08), transparent 70%); }
.hero .container { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.02em; }
.hero h1 .highlight { background: linear-gradient(90deg, var(--yellow), #FFD700); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.2rem; color: #B8D0E5; max-width: 560px; margin-bottom: 28px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero .badges { display: flex; gap: 20px; flex-wrap: wrap; color: #9AB5CE; font-size: .9rem; font-weight: 600; }
.hero .badges b { color: var(--yellow); }
.hero-art { justify-self: end; background: rgba(255,255,255,.05); border-radius: var(--radius); padding: 20px; border: 1px solid rgba(255,255,255,.1); max-width: 100%; }
.hero-art img { border-radius: 8px; width: 100%; max-width: 460px; height: 340px; object-fit: cover; }

.trust { background: var(--card); border-bottom: 1px solid var(--line); padding: 20px 0; }
.trust .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.trust .row div { font-size: .88rem; color: var(--muted); }
.trust .row b { display: block; font-size: 1.5rem; color: var(--blue); font-weight: 800; }
.trust .row .small { font-size: .75rem; color: var(--muted); opacity: .7; }

section.s { padding: 72px 0; }
section.s.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-head .kicker { display: inline-block; background: var(--yellow); color: var(--blue-deep); font-weight: 800; padding: 5px 14px; border-radius: 99px; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; gap: 24px; }
.grid.g2 { grid-template-columns: repeat(2, 1fr); }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .ico { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; flex-shrink: 0; }
.card .ico svg { width: 28px; height: 28px; color: var(--yellow); flex: 0 0 auto; }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: .93rem; margin: 0 0 14px; flex: 1; }
.card a.more { color: var(--blue); font-weight: 700; font-size: .9rem; }
.card a.more::after { content: " →"; }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); padding: 32px 24px; text-align: center; position: relative; transition: transform .2s ease, border-color .2s ease; }
.plan:hover { transform: translateY(-4px); border-color: var(--blue); }
.plan.popular { border-color: var(--yellow); box-shadow: var(--shadow-lg); }
.plan .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--blue-deep); font-size: .72rem; font-weight: 800; padding: 5px 14px; border-radius: 99px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.plan .tag.best { background: linear-gradient(135deg, #FF6B35, #FF4444); color: #fff; }
.plan h3 { font-size: 1.05rem; margin: 0 0 4px; }
.plan .price { font-size: 2.6rem; font-weight: 800; color: var(--blue); margin: 12px 0 0; letter-spacing: -.02em; line-height: 1; }
.plan .price span { font-size: .85rem; color: var(--muted); font-weight: 500; }
.plan .per { color: var(--muted); font-size: .82rem; margin: 4px 0 16px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0; text-align: left; }
.plan ul li { padding: 6px 0 6px 26px; position: relative; font-size: .9rem; color: var(--text); }
.plan ul li::before { content: "✓"; position: absolute; left: 0; top: 5px; color: var(--ok); font-weight: 800; }

.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); margin: 10px 0; overflow: hidden; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 22px 20px; color: var(--text); font-size: .95rem; }

.cta-banner { background: linear-gradient(135deg, var(--yellow) 0%, #FFD83A 100%); color: var(--blue-deep); text-align: center; padding: 56px 22px; border-radius: var(--radius); margin: 48px auto; max-width: var(--max); }
.cta-banner h2 { color: var(--blue-deep); margin-top: 0; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.cta-banner p { font-size: 1.1rem; max-width: 620px; margin: 0 auto 24px; color: #5A3E00; }

.testimonial-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.testimonial-card .stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card blockquote { margin: 0; font-style: italic; color: var(--text); font-size: .95rem; }
.testimonial-card .author { margin-top: 14px; font-weight: 700; font-size: .88rem; color: var(--ink); }
.testimonial-card .author span { color: var(--muted); font-weight: 400; }

footer { background: var(--blue-deep); color: #A9C4D8; padding: 60px 0 24px; margin-top: 60px; }
footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer h5 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 14px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 4px 0; font-size: .9rem; color: #A9C4D8; }
footer ul a { color: #A9C4D8; }
footer ul a:hover { color: var(--yellow); }
footer .brand { color: #fff; margin-bottom: 14px; }
footer .brand span { color: #fff; }
footer .brand span b { background: var(--blue); color: var(--yellow); padding: 1px 6px; border-radius: 4px; }
footer .brand span em { font-style: normal; color: var(--yellow); background: var(--blue-deep); padding: 1px 4px; border-radius: 4px; font-size: .65rem; vertical-align: super; }
footer p { font-size: .9rem; color: #8AA5BC; }
footer .legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; font-size: .82rem; color: #7A92A6; }

.page-header { background: linear-gradient(135deg, var(--blue-deep) 0%, #0A2647 50%, #1A3A5C 100%); color: #fff; padding: 48px 0 56px; }
.page-header h1 { color: #fff; margin: 0; }
.page-header p { color: #B8D0E5; font-size: 1.1rem; max-width: 640px; margin-top: 10px; }
.crumbs { padding: 14px 0; font-size: .85rem; color: var(--muted); }
.crumbs a { color: var(--blue); }
.crumbs span.sep { margin: 0 8px; color: var(--line); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .body { padding: 20px; }
.blog-card .cat { display: inline-block; background: var(--yellow); color: var(--blue-deep); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.blog-card p { color: var(--text); font-size: .9rem; margin: 0 0 12px; }
.blog-card .date { font-size: .82rem; color: var(--muted); }
.blog-card-link { text-decoration: none; color: inherit; display: block; }

.compare-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); margin: 24px 0; }
.compare-table th { background: var(--blue-deep); color: #fff; text-align: left; padding: 14px 16px; font-size: .9rem; }
.compare-table td { padding: 12px 16px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--text); }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.compare-table .check { color: var(--ok); font-weight: 800; }

.channel-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; padding: 24px 0; }
.channel-row span { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 10px 18px; font-weight: 700; font-size: .85rem; color: var(--ink); box-shadow: var(--shadow); }

.deep-content h3 { margin-top: 1.8em; color: var(--ink); }
.deep-content h3:first-child { margin-top: 0; }
.deep-content p, .deep-content li { color: var(--text); }
.deep-content ul { margin-bottom: 1.2em; }
.highlight-box { background: linear-gradient(135deg, rgba(254,204,0,.08), rgba(254,204,0,.03)); border-left: 4px solid var(--yellow); padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.highlight-box h4 { margin-top: 0; color: var(--ink); }
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; padding: 0; list-style: none; }
.two-col-list li { padding: 6px 0 6px 24px; position: relative; }
.two-col-list li::before { content: "▸"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

.league-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.league-card .top { padding: 20px 24px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.league-card .top .emoji { font-size: 2.2rem; }
.league-card .top h3 { margin: 0; font-size: 1.1rem; }
.league-card .top .flag { font-size: 1.4rem; }
.league-card .body { padding: 20px 24px; flex: 1; }
.league-card .body p { font-size: .93rem; margin-bottom: 12px; }
.league-card .body .stats { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.league-card .body .stats span { font-size: .85rem; color: var(--muted); }
.league-card .body .stats b { color: var(--blue); }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; padding: 20px 0; }
.stat-item { padding: 16px; }
.stat-item .num { font-size: 2rem; font-weight: 800; color: var(--blue); }
.stat-item .label { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* ============================================================
   PAYMENT & DEVICE LOGOS  —  FIXED
   Logos are SVG/PNG without intrinsic sizing, so they must be
   constrained explicitly. Selectors are broad on purpose so the
   rules apply even if the wrapper class is missing in the HTML.
   ============================================================ */

.pay-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pay-strip span { color: var(--muted); font-size: .88rem; }

.pay-strip img,
.pay-logo img,
.payment-logos img,
.payments img,
img[alt*="visa" i],
img[alt*="mastercard" i],
img[alt*="master card" i],
img[alt*="maestro" i],
img[alt*="paypal" i],
img[alt*="klarna" i],
img[alt*="swish" i],
img[alt*="trustly" i],
img[alt*="amex" i],
img[alt*="american express" i],
img[alt*="apple pay" i],
img[alt*="google pay" i] {
  height: 28px;
  width: auto;
  max-width: 92px;
  min-width: 0;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}

.pay-strip img:hover,
.pay-logo img:hover { opacity: 1; transform: translateY(-1px); }

.pay-card { align-items: center; text-align: center; }
.pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  min-height: 34px;
  flex-wrap: wrap;
}
.pay-logo img { height: 30px; opacity: 1; }
.pay-logo img[alt*="mastercard" i] { height: 34px; }

.device-card { align-items: center; }
.device-card img {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center; }
.brand-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; display: flex; align-items: center; justify-content: center; min-height: 70px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.brand-item:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.brand-item img { max-width: 100%; max-height: 40px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .25s ease, opacity .25s ease; }
.brand-item:hover img { filter: grayscale(0); opacity: 1; }

/* Safety net: any inline SVG dropped straight into these areas
   would otherwise stretch to full container width. */
.pay-strip > svg,
.pay-logo > svg,
.brand-item > svg { height: 28px; width: auto; flex: 0 0 auto; }

.article-hero { max-width: 860px; margin: 0 auto 28px; padding: 0 22px; }
.article-hero img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); display: block; }

.article-cta { background: linear-gradient(135deg, rgba(254,204,0,.1), rgba(0,106,167,.12)); border: 1px solid var(--line); border-left: 4px solid var(--yellow); border-radius: var(--radius); padding: 28px 26px; margin: 36px 0 28px; text-align: center; }
.article-cta h2 { margin: 0 0 10px; font-size: 1.4rem; }
.article-cta p { color: var(--muted); font-size: .95rem; margin: 0 auto 18px; max-width: 560px; }
.article-cta .btn { margin: 4px 6px; }

.article-related { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; margin: 28px 0; }
.article-related h3 { margin: 0 0 14px; font-size: 1.1rem; }
.article-related ul { list-style: none; padding: 0; margin: 0; }
.article-related li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.article-related li:last-child { border-bottom: 0; }
.article-related a { color: var(--blue); font-weight: 600; text-decoration: none; }
.article-related a:hover { text-decoration: underline; }
.article-related .back { margin: 14px 0 0; font-size: .88rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); flex-direction: column; padding: 16px 22px; gap: 12px; border-bottom: 2px solid var(--line); box-shadow: var(--shadow-lg); z-index: 100; }
  .nav ul.open { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .grid.g3, .grid.g4, .pricing, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust .row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .two-col-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .grid.g2, .grid.g3, .grid.g4, .pricing, .blog-grid { grid-template-columns: 1fr; }
  footer .cols { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  section.s { padding: 48px 0; }
  .topbar span { margin: 0 6px; font-size: 12px; }
  .topbar .sep { display: none; }
  .two-col-list { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-strip { gap: 12px; }
  .pay-strip img { height: 22px; max-width: 72px; }
  .pay-strip span { width: 100%; text-align: center; }
}