@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
/* skin:cobalt frame:cobalt-app */
.cobalt-app{min-height:100%;}
:root {
  --bg: #03040A;
  --bg-2: #09081A;
  --header: #12102A;
  --panel: #161536;
  --panel-2: #201E48;
  --panel-light: #23214D;
  --highlight: #29255B;
  --purple: #4A2A86;
  --purple-light: #7262B4;
  --pink: #D5005B;
  --pink-hover: #F00073;
  --white: #FFFFFF;
  --text-secondary: #B0ACBE;
  --text-muted: #7D788E;
  --border: rgba(255,255,255,0.06);
  --radius-small: 12px;
  --radius-medium: 16px;
  --radius-large: 22px;
  --container: 1280px;
  --font: 'Manrope', Arial, sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body.nvc-body{
  margin:0;
  font-family:var(--font);
  font-size:16px;
  font-weight:400;
  line-height:1.5;
  color:var(--white);
  background:var(--bg);
  overflow-x:hidden;
  width:100%;
  min-height:100%;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button,input,select{font:inherit}
ul{list-style:none;margin:0;padding:0}
.nvc-container{
  width:calc(100% - 48px);
  max-width:var(--container);
  margin:0 auto;
}
.nvc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  border-radius:15px;
  font-weight:700;
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nvc-btn:hover{transform:translateY(-2px)}
.nvc-btn:focus-visible,.nvc-link:focus-visible,a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{
  outline:2px solid var(--pink);
  outline-offset:3px;
}
.nvc-btn-primary{
  background:var(--pink);
  color:var(--white);
  box-shadow:0 8px 28px rgba(213,0,91,.35);
}
.nvc-btn-primary:hover{background:var(--pink-hover)}
.nvc-btn-secondary{
  background:#42267D;
  color:var(--white);
}
.nvc-section-title{
  margin:0;
  font-size:clamp(24px,2.4vw,32px);
  font-weight:800;
}
.nvc-intro{
  padding:18px 0 10px;
}
.nvc-intro .nvc-crumbs{
  padding:0 0 10px;
}
.nvc-page-title{
  margin:0 0 14px;
  font-size:clamp(26px,3vw,36px);
  font-weight:800;
  line-height:1.2;
  color:var(--white);
  background:transparent;
}
.nvc-lead-title{
  margin:0 0 8px;
  font-size:clamp(20px,2.2vw,26px);
  font-weight:700;
  color:var(--white);
}
.nvc-lead-text{
  margin:0 0 8px;
  max-width:820px;
  font-size:16px;
  line-height:1.6;
  color:var(--text-secondary);
  font-weight:500;
}
.nvc-lead-text strong{color:var(--white);font-weight:700}
.nvc-reg-heading{
  margin:0;
  text-align:center;
  font-size:24px;
  font-weight:800;
}
.nvc-skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.nvc-skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:var(--pink);
  z-index:10000;
  border-radius:10px;
}
.nvc-topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--header);
  border-bottom:1px solid var(--border);
}
.nvc-topbar-inner{
  height:70px;
  display:flex;
  align-items:center;
  gap:24px;
}
.nvc-brand-logo{width:auto;max-width:240px;height:40px;flex:0 0 auto;display:flex;align-items:center}
.nvc-brand-logo img{width:auto;height:36px;max-width:240px;object-fit:contain;display:block}
.nvc-nav{
  display:flex;
  align-items:center;
  gap:32px;
  margin-left:16px;
}
.nvc-nav a{
  font-size:14px;
  font-weight:600;
  color:var(--white);
  white-space:nowrap;
}
.nvc-nav a:hover{color:var(--pink)}
.nvc-top-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}
.nvc-lang{
  height:48px;
  padding:0 16px;
  border-radius:16px;
  background:#201D47;
  color:var(--white);
  border:0;
  font-weight:600;
  cursor:pointer;
}
.nvc-btn-login{
  height:48px;
  padding:0 28px;
  border-radius:16px;
  background:#42267D;
  color:var(--white);
  font-weight:700;
}
.nvc-btn-reg{
  height:48px;
  padding:0 28px;
  border-radius:16px;
  background:var(--pink);
  color:var(--white);
  font-weight:700;
}
.nvc-burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:12px;
  background:var(--panel-2);
  color:var(--white);
  cursor:pointer;
}
.nvc-burger span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:var(--white);
}
.nvc-crumbs{
  padding:14px 0 0;
}
.nvc-crumbs ol{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  color:var(--text-secondary);
  font-size:13px;
}
.nvc-crumbs li:not(:last-child)::after{
  content:'/';
  margin-left:8px;
  color:var(--text-muted);
}
.nvc-crumbs a:hover{color:var(--pink)}
.nvc-hero{
  position:relative;
  width:100%;
  min-height:560px;
  height:560px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:linear-gradient(90deg,#190550 0%,#1D075E 25%,#130B37 55%,#120B25 75%,#08070E 100%);
}
.nvc-hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.nvc-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(3,4,10,.15) 0%,rgba(3,4,10,.35) 45%,rgba(3,4,10,.92) 100%);
  pointer-events:none;
}
.nvc-hero-panel{
  position:relative;
  z-index:2;
  width:min(520px,calc(100% - 32px));
  margin:40px auto 0;
  text-align:center;
  padding:28px 24px;
  border-radius:22px;
  background:rgba(9,8,26,.72);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}
.nvc-hero-kicker{
  margin:0 0 8px;
  font-size:22px;
  font-weight:600;
  color:#D4D0D9;
}
.nvc-hero-amount{
  margin:0;
  font-size:clamp(42px,6vw,68px);
  font-weight:800;
  line-height:1;
}
.nvc-hero-spins{
  margin:10px 0 22px;
  font-size:clamp(28px,4vw,40px);
  font-weight:800;
}
.nvc-hero-cta{
  min-width:220px;
  height:60px;
  padding:0 34px;
  font-size:17px;
}
.nvc-hero-note{
  margin:12px 0 0;
  font-size:14px;
  color:#96919F;
}
.nvc-benefits{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
  margin-top:24px;
  padding:0 16px 18px;
  width:100%;
}
.nvc-benefit{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}
.nvc-benefit-icon{
  width:54px;
  height:54px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#4A2A86,#D5005B);
  font-weight:800;
  font-size:18px;
}
.nvc-benefit strong{
  display:block;
  font-size:20px;
  font-weight:700;
}
.nvc-benefit span{
  font-size:14px;
  color:#AAA5B4;
}
.nvc-gamebar{
  margin-top:-28px;
  position:relative;
  z-index:3;
}
.nvc-gamebar-shell{
  background:#151432;
  border-radius:22px;
  padding:12px;
  border:1px solid var(--border);
}
.nvc-gamebar-row{
  display:grid;
  grid-template-columns:1.4fr .8fr .7fr;
  gap:10px;
  margin-bottom:10px;
}
.nvc-search{
  display:flex;
  align-items:center;
  gap:10px;
  height:48px;
  padding:0 16px;
  border-radius:14px;
  background:#23214D;
}
.nvc-search input{
  width:100%;
  border:0;
  background:transparent;
  color:var(--white);
  outline:none;
}
.nvc-search input::placeholder{color:var(--text-muted)}
.nvc-lucky,.nvc-providers-btn{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:48px;
  padding:0 14px;
  border-radius:14px;
  background:#24214B;
  border:0;
  color:var(--white);
  text-align:left;
  cursor:pointer;
}
.nvc-lucky strong,.nvc-providers-btn strong{font-size:14px}
.nvc-lucky span,.nvc-providers-btn span{font-size:12px;color:var(--text-secondary)}
.nvc-cats{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  scrollbar-width:thin;
}
.nvc-cat{
  flex:0 0 auto;
  min-width:118px;
  height:56px;
  padding:8px 14px;
  border-radius:12px;
  background:#24214B;
  border:1px solid transparent;
  color:var(--white);
  cursor:pointer;
  text-align:left;
}
.nvc-cat.is-active{
  background:linear-gradient(135deg,#4A2A86,#D5005B);
}
.nvc-cat strong{display:block;font-size:13px}
.nvc-cat span{font-size:11px;color:#D4D0D9}
.nvc-promos{margin-top:56px}
.nvc-promo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.nvc-promo-card{
  min-height:230px;
  border-radius:20px;
  padding:24px;
  background:linear-gradient(135deg,#29255B 0%,#4A2A86 55%,#161536 100%);
  border:1px solid var(--border);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.nvc-promo-card h3{
  margin:0 0 8px;
  font-size:14px;
  letter-spacing:.06em;
  color:#E7E2F2;
}
.nvc-promo-card p{
  margin:0;
  font-size:28px;
  font-weight:800;
  line-height:1.15;
}
.nvc-promo-card .nvc-btn{align-self:flex-start;height:46px;padding:0 22px;margin-top:18px}
.nvc-compare{margin-top:56px}
.nvc-table-wrap{
  margin-top:18px;
  overflow-x:auto;
  border-radius:18px;
  border:1px solid var(--border);
  background:var(--panel);
  -webkit-overflow-scrolling:touch;
}
.nvc-table{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
}
.nvc-table th,.nvc-table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.nvc-table th{
  background:#201E48;
  font-weight:700;
}
.nvc-table td{color:var(--text-secondary)}
.nvc-table tr:last-child td{border-bottom:0}
.nvc-register{
  margin-top:20px;
  background:#020308;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--border);
}
.nvc-register-inner{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:24px;
  min-height:560px;
  align-items:center;
  padding:28px;
}
.nvc-reg-card{
  background:#151432;
  border-radius:18px;
  padding:32px;
  border:1px solid var(--border);
  position:relative;
  z-index:2;
}
.nvc-reg-card h2{
  margin:0;
  text-align:center;
  font-size:24px;
}
.nvc-reg-card .nvc-reg-bonus{
  text-align:center;
  margin:10px 0 22px;
  font-weight:800;
  font-size:20px;
}
.nvc-field{margin-bottom:12px}
.nvc-field label{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  color:var(--text-secondary);
}
.nvc-field input,.nvc-field select{
  width:100%;
  height:50px;
  border:0;
  border-radius:14px;
  padding:0 14px;
  background:#25234F;
  color:var(--white);
}
.nvc-pass-wrap{position:relative}
.nvc-pass-toggle{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  color:var(--text-secondary);
  cursor:pointer;
  font-size:12px;
  font-weight:700;
}
.nvc-reg-next{
  width:100%;
  height:50px;
  margin-top:8px;
}
.nvc-progress{
  margin:14px 0;
  text-align:center;
  color:var(--text-secondary);
  font-size:13px;
}
.nvc-progress-bar{
  height:6px;
  border-radius:99px;
  background:#25234F;
  overflow:hidden;
  margin-top:8px;
}
.nvc-progress-bar span{
  display:block;
  width:50%;
  height:100%;
  background:linear-gradient(90deg,var(--purple),var(--pink));
}
.nvc-social{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:12px;
}
.nvc-social a{
  height:42px;
  border-radius:12px;
  background:#25234F;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
}
.nvc-reg-art{
  position:relative;
  min-height:480px;
  border-radius:18px;
  overflow:hidden;
}
.nvc-reg-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:480px;
}
.nvc-reg-art::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,transparent 30%,rgba(2,3,8,.75) 100%);
}
.nvc-paystrip{
  margin-top:40px;
  background:#161432;
  border-radius:16px;
  min-height:65px;
  display:flex;
  align-items:center;
  gap:30px;
  padding:12px 20px;
  overflow-x:auto;
  border:1px solid var(--border);
}
.nvc-paystrip img{
  height:28px;
  width:auto;
  flex:0 0 auto;
  filter:grayscale(.15) brightness(1.1);
  opacity:.92;
}
.nvc-providers{margin-top:40px}
.nvc-provider-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(10,minmax(0,1fr));
  gap:12px 18px;
}
.nvc-provider-item{
  min-height:42px;
  display:grid;
  place-items:center;
  text-align:center;
  font-size:11px;
  font-weight:700;
  color:var(--text-secondary);
  letter-spacing:.02em;
  opacity:.85;
}
.nvc-trust{
  margin-top:40px;
  background:#161432;
  border-radius:16px;
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:14px 20px;
  border:1px solid var(--border);
}
.nvc-trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-secondary);
  font-size:13px;
  font-weight:600;
}
.nvc-badge-18{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--pink);
  color:var(--white);
  font-weight:800;
}
.nvc-footer{
  margin-top:48px;
  padding:35px 0 110px;
  background:var(--bg);
}
.nvc-footer-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}
.nvc-footer h3{
  margin:0 0 12px;
  font-size:15px;
}
.nvc-footer a{
  display:block;
  margin-bottom:8px;
  color:var(--text-secondary);
  font-size:14px;
}
.nvc-footer a:hover{color:var(--pink)}
.nvc-footer-pays{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:18px 26px;
  align-items:center;
}
.nvc-footer-pays img{
  height:26px;
  width:auto;
  opacity:.9;
  filter:grayscale(.2) brightness(1.15);
}
.nvc-legal{
  margin-top:22px;
  max-width:1100px;
  font-size:12px;
  line-height:1.6;
  color:#C2BECA;
}
.nvc-copy{
  margin-top:20px;
  background:#161432;
  border-radius:14px;
  padding:20px;
  color:var(--text-secondary);
  font-size:13px;
}
.nvc-sticky{
  display:none;
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  z-index:999;
  background:rgba(18,16,42,.97);
  padding:10px 14px;
  border-top:1px solid var(--border);
}
.nvc-sticky .nvc-btn{
  width:100%;
  height:48px;
  border-radius:14px;
}
.nvc-mobile-nav{
  display:none;
  position:fixed;
  inset:70px 0 auto 0;
  background:rgba(18,16,42,.98);
  padding:18px;
  z-index:999;
  border-bottom:1px solid var(--border);
}
.nvc-mobile-nav.is-open{display:block}
.nvc-mobile-nav a{
  display:block;
  padding:12px 0;
  font-weight:600;
  border-bottom:1px solid var(--border);
}
@media (max-width:1199px){
  .nvc-nav{display:none}
  .nvc-burger{display:inline-block}
  .nvc-btn-login{display:none}
  .nvc-provider-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
  .nvc-gamebar-row{grid-template-columns:1fr 1fr}
  .nvc-search{grid-column:1 / -1}
}
@media (max-width:767px){
  body.nvc-body{
    overflow-x:hidden;
    width:100%;
    max-width:100vw;
  }
  .nvc-container{width:calc(100% - 24px)}
  .nvc-topbar-inner{height:60px;gap:10px}
  .nvc-brand-logo{width:auto;max-width:170px;height:28px}
  .nvc-brand-logo img{height:28px;max-width:170px}
  .nvc-lang{height:40px;padding:0 10px;font-size:13px}
  .nvc-btn-reg{height:40px;padding:0 14px;font-size:13px}
  .nvc-hero{min-height:420px;height:420px;align-items:center;padding-top:0}
  .nvc-hero-panel{width:calc(100% - 32px)}
  .nvc-hero-amount{font-size:46px}
  .nvc-hero-spins{font-size:30px}
  .nvc-hero-cta{width:min(240px,100%)}
  .nvc-benefits{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:16px;
    padding-bottom:20px;
  }
  .nvc-benefit{
    flex:0 0 auto;
    min-width:210px;
    background:rgba(22,21,54,.72);
    border-radius:14px;
    padding:10px 12px;
  }
  .nvc-gamebar{margin-top:-18px}
  .nvc-gamebar-row{grid-template-columns:1fr 1fr}
  .nvc-promo-grid{grid-template-columns:1fr}
  .nvc-register-inner{grid-template-columns:1fr;padding:16px;min-height:auto}
  .nvc-reg-card{width:calc(100% - 0px)}
  .nvc-reg-art{order:-1;min-height:220px}
  .nvc-reg-art img{min-height:220px}
  .nvc-provider-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .nvc-footer{padding-bottom:120px}
  .nvc-footer-grid{grid-template-columns:1fr 1fr}
  .nvc-sticky{display:block}
  .nvc-table{min-width:520px}
  .nvc-table th,.nvc-table td{padding:12px;font-size:13px;white-space:nowrap}
  .nvc-table-wrap{
    margin-left:-12px;
    margin-right:-12px;
    width:calc(100% + 24px);
    border-radius:0;
  }
}

/* ===== VARIANT + MOBILE FIX (nvvcasino.dk) ===== */
.nvc-btn-ghost{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,.18);
  height:44px;
  padding:0 18px;
}
.nvc-btn-wide{width:100%;max-width:320px}
.nvc-btn-pill{border-radius:999px !important}
.nvc-btn-sharp{border-radius:8px !important}
.nvc-btn-round{border-radius:16px !important}
.nvc-btn-outline{
  background:transparent !important;
  color:var(--white) !important;
  border:2px solid var(--pink);
  box-shadow:none !important;
}
.nvc-btn-outline:hover{background:rgba(213,0,91,.15) !important}
.nvc-btn-outline-fill{background:var(--pink) !important;border-color:var(--pink)}
.nvc-btn-gradient{
  background:linear-gradient(135deg,#F00073,#4A2A86) !important;
  border-radius:18px !important;
}

.nvc-interact{margin:14px 0 18px}
.nvc-interact-row{display:flex;flex-wrap:wrap;gap:10px}
.nvc-interact-mini{display:flex;flex-wrap:wrap;gap:10px}
.nvc-interact-mini a{
  padding:8px 12px;border-radius:999px;background:var(--panel-2);
  color:var(--text-secondary);font-size:13px;font-weight:600;
}
.nvc-interact-mini a:hover{color:var(--white);background:var(--highlight)}
.nvc-interact-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.nvc-ix-card{
  display:flex;flex-direction:column;gap:4px;padding:14px;
  border-radius:16px;background:var(--panel);border:1px solid var(--border);
}
.nvc-ix-card strong{font-size:18px}
.nvc-ix-card span{font-size:12px;color:var(--text-secondary)}
.nvc-interact-chips{display:flex;flex-wrap:wrap;gap:8px}
.nvc-chip{
  padding:10px 14px;border-radius:999px;background:#201E48;
  font-size:13px;font-weight:700;border:1px solid transparent;
}
.nvc-chip.is-hot{background:var(--pink)}
.nvc-chip:hover{border-color:rgba(213,0,91,.5)}
.nvc-interact-panel{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;
  padding:16px;border-radius:18px;background:linear-gradient(135deg,#201E48,#161536);
  border:1px solid var(--border);
}
.nvc-interact-copy{margin:0;color:var(--text-secondary);font-weight:600}
.nvc-interact-split{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  padding:14px 16px;border-radius:16px;background:#161432;border:1px solid var(--border);
}
.nvc-interact-split strong{display:block}
.nvc-interact-split span{color:var(--text-secondary);font-size:13px}

.nvc-hero-media-wrap{position:absolute;inset:0;width:100%;height:100%;overflow:hidden}
.nvc-hero-stack .nvc-hero-media,
.nvc-hero-bar .nvc-hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.nvc-hero-stack{min-height:560px;height:560px;padding:0}
.nvc-hero-stack .nvc-hero-panel{
  margin:0 auto;
  position:relative;
  z-index:3;
}
.nvc-hero-stack::after{display:block}
.nvc-hero-left .nvc-hero-panel{margin-left:max(24px, calc((100% - 1280px)/2));margin-right:auto;text-align:left}
.nvc-hero-left .nvc-hero-cta{margin:0}
.nvc-hero-bottom{justify-content:flex-end;padding-bottom:20px}
.nvc-hero-bottom .nvc-hero-panel{margin-top:auto;margin-bottom:8px}
.nvc-hero-bar{min-height:560px;height:560px}
.nvc-hero-bar::after{display:block}
.nvc-hero-bar-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  width:min(720px,calc(100% - 48px));
  margin:0 auto;
  position:relative;
  z-index:3;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(9,8,26,.88);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}
.nvc-hero-bar-cta .nvc-hero-kicker{margin:0;font-size:18px}
.nvc-hero-bar-cta strong{color:#fff}

.nvc-btn-reg{background:transparent;border:2px solid var(--pink)} .nvc-btn-login{border-radius:14px}



.nvc-promo-grid{grid-template-columns:1fr 1fr; } .nvc-promo-card:first-child{grid-column:1/-1}


.nvc-hero-panel{height:auto !important;min-height:0 !important;margin-top:0;}
.nvc-hero-stack .nvc-hero-panel{height:auto !important;min-height:0 !important;}
.nvc-benefits{margin-top:18px;margin-bottom:10px;}

.nvc-content{
  margin-top:28px;
  margin-bottom:28px;
  color:var(--text-secondary);
  font-size:15px;
  line-height:1.7;
}
.nvc-content p{margin:0 0 14px}
.nvc-content h2,.nvc-content h3{color:var(--white);margin:24px 0 12px;line-height:1.3}
.nvc-content h2{font-size:clamp(20px,2.2vw,26px)}
.nvc-content h3{font-size:clamp(17px,1.8vw,20px)}
.nvc-content p strong,.nvc-content h2 strong,.nvc-content h3 strong{color:var(--white)}
.nvc-content ul,.nvc-content ol{margin:0 0 16px;padding-left:20px}
.nvc-content li{margin-bottom:8px}
.nvc-content .nvc-table-wrap{margin:16px 0 22px}
.nvc-content .nvc-table th p,
.nvc-content .nvc-table td p{margin:0}
.nvc-content .nvc-interact{margin-top:24px}
/* Mobile banner + text stability */
@media (max-width:767px){
  html,body.nvc-body{overflow-x:hidden;max-width:100vw}
  .nvc-hero,
  .nvc-hero-center,
  .nvc-hero-left,
  .nvc-hero-bottom,
  .nvc-hero-stack,
  .nvc-hero-bar{
    min-height:420px !important;
    height:420px !important;
    padding:12px 0 8px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
  }
  .nvc-hero-media-wrap{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
  }
  .nvc-hero-media{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block;
  }
  .nvc-hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(3,4,10,.2) 0%,rgba(3,4,10,.55) 55%,rgba(3,4,10,.88) 100%);
    pointer-events:none;
  }
  .nvc-hero-panel,
  .nvc-hero-bar-cta{
    position:relative !important;
    z-index:3;
    width:calc(100% - 24px) !important;
    max-width:420px !important;
    margin:0 auto !important;
    padding:14px 12px !important;
    text-align:center !important;
    box-sizing:border-box;
  }
  .nvc-hero-bar-cta{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
  }
  .nvc-hero-left .nvc-hero-panel{
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
  .nvc-hero-kicker{
    font-size:13px !important;
    line-height:1.3;
    overflow-wrap:anywhere;
  }
  .nvc-hero-amount{
    font-size:30px !important;
    line-height:1.05 !important;
    overflow-wrap:anywhere;
  }
  .nvc-hero-spins{
    font-size:18px !important;
    margin:6px 0 10px !important;
    overflow-wrap:anywhere;
  }
  .nvc-hero-cta,
  .nvc-hero-bar-cta .nvc-btn{
    width:100% !important;
    min-width:0 !important;
    max-width:220px !important;
    height:44px !important;
    font-size:14px !important;
  }
  .nvc-hero-note{font-size:12px !important;margin-top:8px !important}
  .nvc-benefits{display:flex !important;padding:12px 0 4px !important;gap:8px !important}
  .nvc-page-title{font-size:clamp(22px,6.5vw,28px) !important;line-height:1.25}
  .nvc-lead-title{font-size:clamp(18px,5vw,22px) !important}
  .nvc-lead-text{font-size:14px !important;overflow-wrap:anywhere}
  .nvc-interact-cards{grid-template-columns:1fr !important}
  .nvc-interact-row .nvc-btn{flex:1 1 calc(50% - 10px);min-width:140px}
  .nvc-interact-split{flex-direction:column;align-items:stretch}
  .nvc-interact-split .nvc-btn{width:100%}
  .nvc-interact-panel{flex-direction:column;align-items:stretch}
  .nvc-gamebar{margin-top:8px !important}
  .nvc-promo-grid{grid-template-columns:1fr !important}
  .nvc-promo-card:first-child{grid-column:auto !important}
}
/* ===== Scroll to top ===== */
.nvc-scroll-top{
  position:fixed;
  right:90px;
  bottom:96px;
  z-index:1001;
  width:52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:2px solid rgba(255,255,255,.85);
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  cursor:pointer;
  box-shadow:
    0 0 0 3px rgba(0,0,0,.28),
    0 10px 24px rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(12px) scale(.92);
  transition:opacity .22s ease, visibility .22s ease, transform .22s ease, filter .15s ease, box-shadow .15s ease;
}
.nvc-scroll-top svg{
  width:26px;
  height:26px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:2.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,.35));
}
.nvc-scroll-top:hover{
  filter:brightness(1.1);
  transform:translateY(0) scale(1.05);
  box-shadow:
    0 0 0 3px rgba(0,0,0,.32),
    0 12px 28px rgba(0,0,0,.5);
}
.nvc-scroll-top:focus-visible{
  outline:3px solid #fff;
  outline-offset:3px;
}
.nvc-scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0) scale(1);
}
@media (max-width:767px){
  .nvc-scroll-top{
    right:84px;
    bottom:150px;
    width:48px;
    height:48px;
  }
  .nvc-scroll-top svg{
    width:24px;
    height:24px;
  }
}

/* deep-fp:v1 */
.nvc-register-inner{grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important}
.nvc-promo-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr)) !important}
.nvc-provider-grid{grid-template-columns:repeat(10,minmax(0,1fr)) !important}
.nvc-footer-grid{grid-template-columns:1fr 2fr 1fr !important}
.nvc-benefits{display:flex;gap:20px !important}
.nvc-gamebar-row{grid-template-columns:1fr !important}
@media(max-width:767px){.nvc-register-inner,.nvc-provider-grid,.nvc-footer-grid,.nvc-benefits{grid-template-columns:1fr !important;display:grid !important}}
