:root{
  --bg:#0f212e;
  --bg-dark:#071824;
  --card:#1a2c38;
  --raised:#2f4553;
  --border:#304553;
  --line:#213743;
  --text:#ffffff;
  --muted:#b1bad3;
  --muted2:#d5dceb;
  --green:#00ff87;
  --green2:#00e701;
  --error:#e9113c;
  --cta:linear-gradient(90deg,#9530ff,#06eaff);
  --cta-hover:linear-gradient(90deg,#7b20db,#079caa);
  --sidebar-w:248px;
  --radius:4px;
  --font:system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
html{background:var(--bg-dark)}
body{
  background:linear-gradient(180deg,#071824 0%,#213743 66.82%) no-repeat;
  background-attachment:fixed;
  color:var(--text);
  font-family:var(--font);
  font-size:14px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;border:0}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
input{font-family:inherit}
ul{list-style:none}
.ico{width:18px;height:18px;fill:currentColor;flex:0 0 auto}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:38px;padding:0 16px;border-radius:var(--radius);
  font-weight:700;font-size:14px;white-space:nowrap;transition:background .15s,opacity .15s;
}
.btn--ghost{background:var(--raised);color:#fff}
.btn--ghost:hover{background:#3b566a}
.btn--primary{background:var(--cta);color:#fff}
.btn--primary:hover{background:var(--cta-hover)}

.sidebar{
  position:fixed;top:0;left:0;bottom:0;width:var(--sidebar-w);
  background:var(--bg-dark);border-right:1px solid var(--line);
  display:flex;flex-direction:column;padding:16px 12px;gap:14px;
  overflow-y:auto;z-index:60;
}
.sidebar__logo img{height:34px;width:auto;margin:4px 6px 2px}
.sidebar__auth{display:flex;flex-direction:column;gap:8px}
.sidebar__auth .btn{width:100%}
.nav{display:flex;flex-direction:column;gap:2px;margin-top:4px}
.nav__item{
  display:flex;align-items:center;gap:12px;padding:10px 10px;border-radius:var(--radius);
  color:var(--muted2);font-weight:600;transition:background .15s,color .15s;
}
.nav__item:hover{background:var(--card);color:#fff}
.nav__item .nav__label{flex:1 1 auto}
.nav__item .ico:last-child{width:14px;height:14px;color:var(--muted);opacity:.7}
.sidebar__lang{
  margin-top:auto;display:flex;align-items:center;gap:10px;padding:10px;
  border-top:1px solid var(--line);color:var(--muted2);font-weight:600;
}

.shell{margin-left:var(--sidebar-w);min-height:100vh;display:flex;flex-direction:column}
.topbar{display:none}
.scrim{
  position:fixed;inset:0;background:rgba(0,0,0,.55);opacity:0;visibility:hidden;
  transition:opacity .2s;z-index:55;
}
body.nav-on .scrim{opacity:1;visibility:visible}

.main{flex:1 1 auto;width:100%;max-width:1280px;margin:0 auto;padding:20px 24px 40px}

.hero{position:relative;margin-bottom:22px;border-radius:8px;overflow:hidden}
.hero__viewport{overflow:hidden}
.hero__track{display:flex;transition:transform .4s ease}
.hero__slide{flex:0 0 100%;position:relative;display:block}
.hero__slide picture{display:block;width:100%}
.hero__img{width:100%;height:320px;object-fit:cover;object-position:center right;border-radius:8px;display:block}
.hero__body{
  position:absolute;left:0;top:0;bottom:0;width:58%;
  display:flex;flex-direction:column;justify-content:center;
  padding:0 6%;gap:12px;
}
.hero__sub{color:var(--muted2);font-size:15px;font-weight:600;max-width:340px;line-height:1.4}
.hero__title{
  font-size:38px;line-height:1.05;font-weight:800;color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,.45);max-width:380px;
}
.hero__cta{
  align-self:flex-start;display:inline-flex;align-items:center;justify-content:center;
  height:42px;padding:0 26px;border-radius:var(--radius);font-weight:700;font-size:15px;
  color:#fff;background:var(--cta);transition:background .15s;
}
.hero__slide:hover .hero__cta{background:var(--cta-hover)}
.hero__arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;border-radius:50%;background:rgba(7,24,36,.7);
  color:#fff;display:flex;align-items:center;justify-content:center;z-index:3;
}
.hero__arrow:hover{background:rgba(7,24,36,.95)}
.hero__arrow--prev{left:12px}
.hero__arrow--next{right:12px}
.hero__arrow .ico{width:22px;height:22px}
.hero__dots{position:absolute;left:0;right:0;bottom:12px;display:flex;justify-content:center;gap:8px;z-index:3}
.hero__dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4)}
.hero__dot.is-on{background:#fff;width:22px;border-radius:5px}

.tabs{
  display:flex;gap:8px;margin-bottom:18px;overflow-x:auto;
  scrollbar-width:none;border-bottom:1px solid var(--line);padding-bottom:2px;
}
.tabs::-webkit-scrollbar{display:none}
.tabs__item{
  display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border-radius:var(--radius) var(--radius) 0 0;
  color:var(--muted2);font-weight:600;white-space:nowrap;border-bottom:2px solid transparent;transition:color .15s,border-color .15s;
}
.tabs__item:hover{color:#fff}
.tabs__item.is-on{color:#fff;border-bottom-color:var(--green)}
.tabs__item.is-on .ico{color:var(--green)}
.tabs__item .ico{width:18px;height:18px}

.searchbar{
  display:flex;align-items:center;gap:10px;background:var(--bg-dark);
  border:1px solid var(--line);border-radius:var(--radius);padding:0 14px;height:44px;margin-bottom:24px;
}
.searchbar .ico{color:var(--muted)}
.searchbar__input{
  flex:1 1 auto;background:none;border:0;outline:0;color:#fff;font-size:14px;height:100%;
}
.searchbar__input::placeholder{color:var(--muted)}

.row{margin-bottom:26px}
.row__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.row__title{display:flex;align-items:center;gap:9px;font-size:16px;font-weight:700}
.row__ico{display:inline-flex;color:var(--green)}
.row__ico .ico{width:20px;height:20px}
.row__nav{display:flex;gap:8px;align-items:center}
.row__all{
  font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;
  color:var(--muted);margin-right:4px;transition:color .15s;
}
.row__all:hover{color:#fff}
.row__arrow{
  width:32px;height:32px;border-radius:var(--radius);background:var(--card);
  color:var(--muted2);display:flex;align-items:center;justify-content:center;transition:background .15s;
}
.row__arrow:hover{background:var(--raised);color:#fff}
.row__arrow.is-disabled{opacity:.35;pointer-events:none}
.row__scroller{
  display:flex;gap:12px;overflow-x:auto;scroll-behavior:smooth;
  scrollbar-width:none;padding-bottom:2px;
}
.row__scroller::-webkit-scrollbar{display:none}

.tile{
  flex:0 0 auto;width:140px;border-radius:6px;overflow:hidden;background:var(--card);
  position:relative;transition:transform .15s;
}
.tile:hover{transform:translateY(-4px)}
.tile__media{position:relative;aspect-ratio:3/4;background:var(--card)}
.tile__img{width:100%;height:100%;object-fit:cover}
.tile__badge{
  position:absolute;top:7px;left:7px;z-index:2;font-size:9px;font-weight:800;
  text-transform:uppercase;letter-spacing:.4px;padding:3px 8px;border-radius:3px;color:#071824;
}
.tile__badge.is-new{background:var(--green2);color:#071824}
.tile__badge.is-hot{background:linear-gradient(90deg,#0e212e,#05e9fa);color:#fff}
.tile__badge.is-top{background:#06eaff;color:#071824}
.tile__play{
  position:absolute;inset:0;background:rgba(7,24,36,.45);opacity:0;transition:opacity .15s;
}
.tile:hover .tile__play{opacity:1}

.prov-scroller .prov{
  flex:0 0 auto;width:150px;height:84px;border-radius:6px;background:var(--card);
  display:flex;align-items:center;justify-content:center;padding:18px;transition:background .15s;
}
.prov-scroller .prov:hover{background:var(--raised)}
.prov-scroller .prov img{max-height:38px;width:auto;object-fit:contain;filter:brightness(0) invert(.85)}

.foot{
  background:var(--bg-dark);border-top:1px solid var(--line);
  padding:36px 24px;margin-top:20px;
}
.foot__top{display:flex;flex-wrap:wrap;gap:40px;max-width:1280px;margin:0 auto 28px}
.foot__brand{max-width:280px}
.foot__logo{height:32px;width:auto;margin-bottom:12px}
.foot__tag{color:var(--muted);font-size:13px}
.foot__cols{display:flex;gap:60px;flex-wrap:wrap}
.foot__head{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted);margin-bottom:14px}
.foot__col ul li{margin-bottom:9px}
.foot__col a{color:var(--muted2);font-size:13px}
.foot__col a:hover{color:#fff}
.foot__pay{max-width:1280px;margin:0 auto 22px}
.foot__icons{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.foot__icons img{height:30px;width:auto;object-fit:contain}
.foot__icons--prov img{height:24px;filter:brightness(0) invert(.8)}
.foot__bottom{
  max-width:1280px;margin:0 auto;display:flex;gap:16px;align-items:flex-start;
  border-top:1px solid var(--line);padding-top:22px;
}
.foot__age{height:38px;width:auto;flex:0 0 auto}
.foot__legal{color:var(--muted);font-size:12px;line-height:1.6}

.seo{margin-top:30px;border-top:1px solid var(--line);padding-top:26px}
.seo h2[id]{scroll-margin-top:70px}
.foot__copy{color:var(--muted);font-size:12px;margin:10px 0 0}
.seo-toc{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:18px 22px;margin:0 0 26px}
.seo-toc__title{font-size:17px;font-weight:800;color:var(--green);margin-bottom:12px}
.seo-toc__list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:2px 26px}
.seo-toc__list a{display:block;color:var(--muted);text-decoration:none;font-size:14px;line-height:1.4;padding:7px 0;border-bottom:1px solid var(--line);transition:color .15s ease}
.seo-toc__list a:hover{color:var(--green)}
@media(max-width:680px){.seo-toc__list{grid-template-columns:1fr}}
.seo__inner{color:var(--muted2);font-size:14px;line-height:1.7}
.seo__inner h1{font-size:26px;color:#fff;margin:0 0 16px}
.seo__inner h2{font-size:20px;color:#fff;margin:26px 0 12px}
.seo__inner h3{font-size:16px;color:#fff;margin:18px 0 8px}
.seo__inner p{margin:0 0 12px}
.seo__inner ul,.seo__inner ol{margin:0 0 14px 20px}
.seo__inner ul{list-style:disc}
.seo__inner ol{list-style:decimal}
.seo__inner li{margin-bottom:6px}
.seo__inner a{color:var(--green);text-decoration:underline}
.seo-table-wrap{overflow-x:auto;margin:0 0 18px}
.seo-table{border-collapse:collapse;width:100%;min-width:420px;font-size:13px}
.seo-table th,.seo-table td{border:1px solid var(--line);padding:9px 12px;text-align:left}
.seo-table th{background:var(--card);color:#fff}
.seo-table tr:nth-child(even) td{background:rgba(26,44,56,.4)}

.burger{display:flex;flex-direction:column;gap:4px;width:38px;height:38px;align-items:center;justify-content:center}
.burger span{width:20px;height:2px;background:#fff;border-radius:2px;transition:transform .2s,opacity .2s}
body.nav-on .burger span:nth-child(1){transform:translateY(6px) rotate(45deg)}
body.nav-on .burger span:nth-child(2){opacity:0}
body.nav-on .burger span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

@media (max-width:1024px){
  .sidebar{transform:translateX(-100%);transition:transform .25s ease;box-shadow:0 0 30px rgba(0,0,0,.5)}
  body.nav-on .sidebar{transform:translateX(0)}
  .shell{margin-left:0}
  .topbar{
    display:flex;align-items:center;gap:12px;padding:10px 16px;
    background:var(--bg-dark);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:50;
  }
  .topbar__logo img{height:34px;width:auto}
  .topbar__auth{margin-left:auto;display:flex;gap:8px}
  .topbar__auth .btn{height:34px;padding:0 12px;font-size:13px}
}
@media (max-width:768px){
  .main{padding:16px 14px 32px}
  .tile{width:138px}
  .prov-scroller .prov{width:140px;height:78px}
  .foot__cols{display:grid;grid-template-columns:1fr 1fr;gap:22px 16px;flex:1 1 auto}
  .foot__bottom{flex-direction:column}
  .searchbar{margin-bottom:18px}
  .hero{margin-left:-14px;margin-right:-14px;border-radius:0}
  .hero__img{height:290px;border-radius:0;object-position:center}
  .hero__title{font-size:28px}
  .hero__sub{font-size:13px}
  .hero__body{width:66%;padding:0 6%;gap:10px}
  .hero__cta{height:38px;padding:0 20px;font-size:14px}
}
@media (max-width:480px){
  .tile{width:140px}
  .prov-scroller .prov{width:132px;height:74px}
  .topbar{gap:8px;padding:10px 12px}
  .topbar__auth{gap:6px}
  .topbar__auth .btn{height:32px;padding:0 10px;font-size:12px}
  .seo__inner h1{font-size:22px}
  .seo__inner h2{font-size:18px}
  .hero__img{height:280px}
  .hero__title{font-size:22px;max-width:230px}
  .hero__sub{font-size:12px;max-width:210px}
  .hero__body{width:70%;padding:0 5%;gap:8px}
  .hero__cta{height:34px;padding:0 16px;font-size:13px}
}

/* NL-BRAND text-justify standard */
article p, .content p, .article p, main p, section p, .review p,
.cv-rev__sec p, .ig-sec p, .ig-faq p, .container p, .wrap p,
.summary p, .promo__text {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
@media (max-width: 768px) {
  article p, .content p, .article p, main p, section p, .review p {
    text-align: left;
    hyphens: none;
  }
}

.topbar__auth{margin-left:auto;justify-content:flex-end;text-align:right}

.cs-pills{display:flex;flex-wrap:wrap;gap:6px;margin:10px 0 6px}.cs-pills a{display:inline-flex;align-items:center;color:#fff;font-size:13px;font-weight:600;line-height:1;text-decoration:none;padding:9px 13px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);white-space:nowrap;transition:background .15s,border-color .15s}.cs-pills a:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.34)}

#burger{display:none!important}.cs-drop{position:relative;display:flex;align-items:center;margin-left:8px}.cs-drop__cb{position:absolute;opacity:0;pointer-events:none}.cs-drop__btn{display:inline-flex;align-items:center;justify-content:center;cursor:pointer;color:#fff;font-size:17px;line-height:1;padding:8px 12px;border-radius:10px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.18);user-select:none}.cs-drop__list{display:none;position:absolute;top:calc(100% + 10px);left:0;flex-direction:column;gap:6px;padding:8px;background:#10131c;border:1px solid rgba(255,255,255,.18);border-radius:12px;box-shadow:0 12px 32px rgba(0,0,0,.55);z-index:1000;min-width:220px;max-width:calc(100vw - 24px)}.cs-drop__list a{display:flex;color:#fff;font-size:14px;font-weight:600;text-decoration:none;padding:10px 12px;border-radius:8px;white-space:nowrap}.cs-drop__list a:hover{background:rgba(255,255,255,.12)}.cs-drop__cb:checked~.cs-drop__list{display:flex}

@media(max-width:1023px){
  .topbar{display:flex !important;align-items:center;gap:8px}
  .topbar .cs-drop{order:-1;margin-left:0;margin-right:0}
  .topbar__logo{order:0}
  .topbar__auth{order:1;margin-left:auto}
  .topbar .burger{order:-1}
}
