@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');
: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.nvv-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}
.nvv-container{
  width:calc(100% - 48px);
  max-width:var(--container);
  margin:0 auto;
}
.nvv-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;
}
.nvv-btn:hover{transform:translateY(-2px)}
.nvv-btn:focus-visible,.nvv-link:focus-visible,a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{
  outline:2px solid var(--pink);
  outline-offset:3px;
}
.nvv-btn-primary{
  background:var(--pink);
  color:var(--white);
  box-shadow:0 8px 28px rgba(213,0,91,.35);
}
.nvv-btn-primary:hover{background:var(--pink-hover)}
.nvv-btn-secondary{
  background:#42267D;
  color:var(--white);
}
.nvv-section-title{
  margin:0;
  font-size:clamp(24px,2.4vw,32px);
  font-weight:800;
}
.nvv-intro{
  padding:18px 0 10px;
}
.nvv-intro .nvv-crumbs{
  padding:0 0 10px;
}
.nvv-page-title{
  margin:0 0 14px;
  font-size:clamp(26px,3vw,36px);
  font-weight:800;
  line-height:1.2;
  color:var(--white);
  background:transparent;
}
.nvv-lead-title{
  margin:0 0 8px;
  font-size:clamp(20px,2.2vw,26px);
  font-weight:700;
  color:var(--white);
}
.nvv-lead-text{
  margin:0 0 8px;
  max-width:820px;
  font-size:16px;
  line-height:1.6;
  color:var(--text-secondary);
  font-weight:500;
}
.nvv-lead-text strong{color:var(--white);font-weight:700}
.nvv-reg-heading{
  margin:0;
  text-align:center;
  font-size:24px;
  font-weight:800;
}
.nvv-skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.nvv-skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:var(--pink);
  z-index:10000;
  border-radius:10px;
}
.nvv-topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--header);
  border-bottom:1px solid var(--border);
}
.nvv-topbar-inner{
  height:70px;
  display:flex;
  align-items:center;
  gap:24px;
}
.nvv-brand-logo{
  width:168px;
  flex:0 0 auto;
}
.nvv-brand-logo img{width:100%;height:auto}
.nvv-nav{
  display:flex;
  align-items:center;
  gap:32px;
  margin-left:16px;
}
.nvv-nav a{
  font-size:14px;
  font-weight:600;
  color:var(--white);
  white-space:nowrap;
}
.nvv-nav a:hover{color:var(--pink)}
.nvv-top-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}
.nvv-lang{
  height:48px;
  padding:0 16px;
  border-radius:16px;
  background:#201D47;
  color:var(--white);
  border:0;
  font-weight:600;
  cursor:pointer;
}
.nvv-btn-login{
  height:48px;
  padding:0 28px;
  border-radius:16px;
  background:#42267D;
  color:var(--white);
  font-weight:700;
}
.nvv-btn-reg{
  height:48px;
  padding:0 28px;
  border-radius:16px;
  background:var(--pink);
  color:var(--white);
  font-weight:700;
}
.nvv-burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:12px;
  background:var(--panel-2);
  color:var(--white);
  cursor:pointer;
}
.nvv-burger span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:var(--white);
}
.nvv-crumbs{
  padding:14px 0 0;
}
.nvv-crumbs ol{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  color:var(--text-secondary);
  font-size:13px;
}
.nvv-crumbs li:not(:last-child)::after{
  content:'/';
  margin-left:8px;
  color:var(--text-muted);
}
.nvv-crumbs a:hover{color:var(--pink)}
.nvv-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%);
}
.nvv-hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.nvv-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;
}
.nvv-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);
}
.nvv-hero-kicker{
  margin:0 0 8px;
  font-size:22px;
  font-weight:600;
  color:#D4D0D9;
}
.nvv-hero-amount{
  margin:0;
  font-size:clamp(42px,6vw,68px);
  font-weight:800;
  line-height:1;
}
.nvv-hero-spins{
  margin:10px 0 22px;
  font-size:clamp(28px,4vw,40px);
  font-weight:800;
}
.nvv-hero-cta{
  min-width:220px;
  height:60px;
  padding:0 34px;
  font-size:17px;
}
.nvv-hero-note{
  margin:12px 0 0;
  font-size:14px;
  color:#96919F;
}
.nvv-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%;
}
.nvv-benefit{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}
.nvv-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;
}
.nvv-benefit strong{
  display:block;
  font-size:20px;
  font-weight:700;
}
.nvv-benefit span{
  font-size:14px;
  color:#AAA5B4;
}
.nvv-gamebar{
  margin-top:-28px;
  position:relative;
  z-index:3;
}
.nvv-gamebar-shell{
  background:#151432;
  border-radius:22px;
  padding:12px;
  border:1px solid var(--border);
}
.nvv-gamebar-row{
  display:grid;
  grid-template-columns:1.4fr .8fr .7fr;
  gap:10px;
  margin-bottom:10px;
}
.nvv-search{
  display:flex;
  align-items:center;
  gap:10px;
  height:48px;
  padding:0 16px;
  border-radius:14px;
  background:#23214D;
}
.nvv-search input{
  width:100%;
  border:0;
  background:transparent;
  color:var(--white);
  outline:none;
}
.nvv-search input::placeholder{color:var(--text-muted)}
.nvv-lucky,.nvv-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;
}
.nvv-lucky strong,.nvv-providers-btn strong{font-size:14px}
.nvv-lucky span,.nvv-providers-btn span{font-size:12px;color:var(--text-secondary)}
.nvv-cats{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  scrollbar-width:thin;
}
.nvv-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;
}
.nvv-cat.is-active{
  background:linear-gradient(135deg,#4A2A86,#D5005B);
}
.nvv-cat strong{display:block;font-size:13px}
.nvv-cat span{font-size:11px;color:#D4D0D9}
.nvv-promos{margin-top:56px}
.nvv-promo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.nvv-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;
}
.nvv-promo-card h3{
  margin:0 0 8px;
  font-size:14px;
  letter-spacing:.06em;
  color:#E7E2F2;
}
.nvv-promo-card p{
  margin:0;
  font-size:28px;
  font-weight:800;
  line-height:1.15;
}
.nvv-promo-card .nvv-btn{align-self:flex-start;height:46px;padding:0 22px;margin-top:18px}
.nvv-compare{margin-top:56px}
.nvv-table-wrap{
  margin-top:18px;
  overflow-x:auto;
  border-radius:18px;
  border:1px solid var(--border);
  background:var(--panel);
  -webkit-overflow-scrolling:touch;
}
.nvv-table{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
}
.nvv-table th,.nvv-table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.nvv-table th{
  background:#201E48;
  font-weight:700;
}
.nvv-table td{color:var(--text-secondary)}
.nvv-table tr:last-child td{border-bottom:0}
.nvv-register{
  margin-top:20px;
  background:#020308;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--border);
}
.nvv-register-inner{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:24px;
  min-height:560px;
  align-items:center;
  padding:28px;
}
.nvv-reg-card{
  background:#151432;
  border-radius:18px;
  padding:32px;
  border:1px solid var(--border);
  position:relative;
  z-index:2;
}
.nvv-reg-card h2{
  margin:0;
  text-align:center;
  font-size:24px;
}
.nvv-reg-card .nvv-reg-bonus{
  text-align:center;
  margin:10px 0 22px;
  font-weight:800;
  font-size:20px;
}
.nvv-field{margin-bottom:12px}
.nvv-field label{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  color:var(--text-secondary);
}
.nvv-field input,.nvv-field select{
  width:100%;
  height:50px;
  border:0;
  border-radius:14px;
  padding:0 14px;
  background:#25234F;
  color:var(--white);
}
.nvv-pass-wrap{position:relative}
.nvv-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;
}
.nvv-reg-next{
  width:100%;
  height:50px;
  margin-top:8px;
}
.nvv-progress{
  margin:14px 0;
  text-align:center;
  color:var(--text-secondary);
  font-size:13px;
}
.nvv-progress-bar{
  height:6px;
  border-radius:99px;
  background:#25234F;
  overflow:hidden;
  margin-top:8px;
}
.nvv-progress-bar span{
  display:block;
  width:50%;
  height:100%;
  background:linear-gradient(90deg,var(--purple),var(--pink));
}
.nvv-social{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:12px;
}
.nvv-social a{
  height:42px;
  border-radius:12px;
  background:#25234F;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
}
.nvv-reg-art{
  position:relative;
  min-height:480px;
  border-radius:18px;
  overflow:hidden;
}
.nvv-reg-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:480px;
}
.nvv-reg-art::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,transparent 30%,rgba(2,3,8,.75) 100%);
}
.nvv-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);
}
.nvv-paystrip img{
  height:28px;
  width:auto;
  flex:0 0 auto;
  filter:grayscale(.15) brightness(1.1);
  opacity:.92;
}
.nvv-providers{margin-top:40px}
.nvv-provider-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(10,minmax(0,1fr));
  gap:12px 18px;
}
.nvv-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;
}
.nvv-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);
}
.nvv-trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-secondary);
  font-size:13px;
  font-weight:600;
}
.nvv-badge-18{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--pink);
  color:var(--white);
  font-weight:800;
}
.nvv-footer{
  margin-top:48px;
  padding:35px 0 110px;
  background:var(--bg);
}
.nvv-footer-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}
.nvv-footer h3{
  margin:0 0 12px;
  font-size:15px;
}
.nvv-footer a{
  display:block;
  margin-bottom:8px;
  color:var(--text-secondary);
  font-size:14px;
}
.nvv-footer a:hover{color:var(--pink)}
.nvv-footer-pays{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:18px 26px;
  align-items:center;
}
.nvv-footer-pays img{
  height:26px;
  width:auto;
  opacity:.9;
  filter:grayscale(.2) brightness(1.15);
}
.nvv-legal{
  margin-top:22px;
  max-width:1100px;
  font-size:12px;
  line-height:1.6;
  color:#C2BECA;
}
.nvv-copy{
  margin-top:20px;
  background:#161432;
  border-radius:14px;
  padding:20px;
  color:var(--text-secondary);
  font-size:13px;
}
.nvv-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);
}
.nvv-sticky .nvv-btn{
  width:100%;
  height:48px;
  border-radius:14px;
}
.nvv-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);
}
.nvv-mobile-nav.is-open{display:block}
.nvv-mobile-nav a{
  display:block;
  padding:12px 0;
  font-weight:600;
  border-bottom:1px solid var(--border);
}
@media (max-width:1199px){
  .nvv-nav{display:none}
  .nvv-burger{display:inline-block}
  .nvv-btn-login{display:none}
  .nvv-provider-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
  .nvv-gamebar-row{grid-template-columns:1fr 1fr}
  .nvv-search{grid-column:1 / -1}
}
@media (max-width:767px){
  body.nvv-body{
    overflow-x:hidden;
    width:100%;
    max-width:100vw;
  }
  .nvv-container{width:calc(100% - 24px)}
  .nvv-topbar-inner{height:60px;gap:10px}
  .nvv-brand-logo{width:140px}
  .nvv-lang{height:40px;padding:0 10px;font-size:13px}
  .nvv-btn-reg{height:40px;padding:0 14px;font-size:13px}
  .nvv-hero{min-height:420px;height:420px;align-items:center;padding-top:0}
  .nvv-hero-panel{width:calc(100% - 32px)}
  .nvv-hero-amount{font-size:46px}
  .nvv-hero-spins{font-size:30px}
  .nvv-hero-cta{width:min(240px,100%)}
  .nvv-benefits{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:16px;
    padding-bottom:20px;
  }
  .nvv-benefit{
    flex:0 0 auto;
    min-width:210px;
    background:rgba(22,21,54,.72);
    border-radius:14px;
    padding:10px 12px;
  }
  .nvv-gamebar{margin-top:-18px}
  .nvv-gamebar-row{grid-template-columns:1fr 1fr}
  .nvv-promo-grid{grid-template-columns:1fr}
  .nvv-register-inner{grid-template-columns:1fr;padding:16px;min-height:auto}
  .nvv-reg-card{width:calc(100% - 0px)}
  .nvv-reg-art{order:-1;min-height:220px}
  .nvv-reg-art img{min-height:220px}
  .nvv-provider-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .nvv-footer{padding-bottom:120px}
  .nvv-footer-grid{grid-template-columns:1fr 1fr}
  .nvv-sticky{display:block}
  .nvv-table{min-width:520px}
  .nvv-table th,.nvv-table td{padding:12px;font-size:13px;white-space:nowrap}
  .nvv-table-wrap{
    margin-left:-12px;
    margin-right:-12px;
    width:calc(100% + 24px);
    border-radius:0;
  }
}

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

.nvv-interact{margin:14px 0 18px}
.nvv-interact-row{display:flex;flex-wrap:wrap;gap:10px}
.nvv-interact-mini{display:flex;flex-wrap:wrap;gap:10px}
.nvv-interact-mini a{
  padding:8px 12px;border-radius:999px;background:var(--panel-2);
  color:var(--text-secondary);font-size:13px;font-weight:600;
}
.nvv-interact-mini a:hover{color:var(--white);background:var(--highlight)}
.nvv-interact-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.nvv-ix-card{
  display:flex;flex-direction:column;gap:4px;padding:14px;
  border-radius:16px;background:var(--panel);border:1px solid var(--border);
}
.nvv-ix-card strong{font-size:18px}
.nvv-ix-card span{font-size:12px;color:var(--text-secondary)}
.nvv-interact-chips{display:flex;flex-wrap:wrap;gap:8px}
.nvv-chip{
  padding:10px 14px;border-radius:999px;background:#201E48;
  font-size:13px;font-weight:700;border:1px solid transparent;
}
.nvv-chip.is-hot{background:var(--pink)}
.nvv-chip:hover{border-color:rgba(213,0,91,.5)}
.nvv-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);
}
.nvv-interact-copy{margin:0;color:var(--text-secondary);font-weight:600}
.nvv-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);
}
.nvv-interact-split strong{display:block}
.nvv-interact-split span{color:var(--text-secondary);font-size:13px}

.nvv-hero-media-wrap{position:absolute;inset:0;width:100%;height:100%;overflow:hidden}
.nvv-hero-stack .nvv-hero-media,
.nvv-hero-bar .nvv-hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.nvv-hero-stack{min-height:560px;height:560px;padding:0}
.nvv-hero-stack .nvv-hero-panel{
  margin:0 auto;
  position:relative;
  z-index:3;
}
.nvv-hero-stack::after{display:block}
.nvv-hero-left .nvv-hero-panel{margin-left:max(24px, calc((100% - 1280px)/2));margin-right:auto;text-align:left}
.nvv-hero-left .nvv-hero-cta{margin:0}
.nvv-hero-bottom{justify-content:flex-end;padding-bottom:20px}
.nvv-hero-bottom .nvv-hero-panel{margin-top:auto;margin-bottom:8px}
.nvv-hero-bar{min-height:560px;height:560px}
.nvv-hero-bar::after{display:block}
.nvv-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);
}
.nvv-hero-bar-cta .nvv-hero-kicker{margin:0;font-size:18px}
.nvv-hero-bar-cta strong{color:#fff}

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



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

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

.nvv-content{
  margin-top:28px;
  margin-bottom:28px;
  color:var(--text-secondary);
  font-size:15px;
  line-height:1.7;
}
.nvv-content p{margin:0 0 14px}
.nvv-content h2,.nvv-content h3{color:var(--white);margin:24px 0 12px;line-height:1.3}
.nvv-content h2{font-size:clamp(20px,2.2vw,26px)}
.nvv-content h3{font-size:clamp(17px,1.8vw,20px)}
.nvv-content p strong,.nvv-content h2 strong,.nvv-content h3 strong{color:var(--white)}
.nvv-content ul,.nvv-content ol{margin:0 0 16px;padding-left:20px}
.nvv-content li{margin-bottom:8px}
.nvv-content .nvv-table-wrap{margin:16px 0 22px}
.nvv-content .nvv-table th p,
.nvv-content .nvv-table td p{margin:0}
.nvv-content .nvv-interact{margin-top:24px}
/* Mobile banner + text stability */
@media (max-width:767px){
  html,body.nvv-body{overflow-x:hidden;max-width:100vw}
  .nvv-hero,
  .nvv-hero-center,
  .nvv-hero-left,
  .nvv-hero-bottom,
  .nvv-hero-stack,
  .nvv-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;
  }
  .nvv-hero-media-wrap{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
  }
  .nvv-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;
  }
  .nvv-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;
  }
  .nvv-hero-panel,
  .nvv-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;
  }
  .nvv-hero-bar-cta{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
  }
  .nvv-hero-left .nvv-hero-panel{
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
  .nvv-hero-kicker{
    font-size:13px !important;
    line-height:1.3;
    overflow-wrap:anywhere;
  }
  .nvv-hero-amount{
    font-size:30px !important;
    line-height:1.05 !important;
    overflow-wrap:anywhere;
  }
  .nvv-hero-spins{
    font-size:18px !important;
    margin:6px 0 10px !important;
    overflow-wrap:anywhere;
  }
  .nvv-hero-cta,
  .nvv-hero-bar-cta .nvv-btn{
    width:100% !important;
    min-width:0 !important;
    max-width:220px !important;
    height:44px !important;
    font-size:14px !important;
  }
  .nvv-hero-note{font-size:12px !important;margin-top:8px !important}
  .nvv-benefits{display:flex !important;padding:12px 0 4px !important;gap:8px !important}
  .nvv-page-title{font-size:clamp(22px,6.5vw,28px) !important;line-height:1.25}
  .nvv-lead-title{font-size:clamp(18px,5vw,22px) !important}
  .nvv-lead-text{font-size:14px !important;overflow-wrap:anywhere}
  .nvv-interact-cards{grid-template-columns:1fr !important}
  .nvv-interact-row .nvv-btn{flex:1 1 calc(50% - 10px);min-width:140px}
  .nvv-interact-split{flex-direction:column;align-items:stretch}
  .nvv-interact-split .nvv-btn{width:100%}
  .nvv-interact-panel{flex-direction:column;align-items:stretch}
  .nvv-gamebar{margin-top:8px !important}
  .nvv-promo-grid{grid-template-columns:1fr !important}
  .nvv-promo-card:first-child{grid-column:auto !important}
}
/* ===== SITE THEME LOCK: FS Casino Sport ===== */
:root {
  --bg: #050505;
  --bg-2: #1C0A12;
  --header: #1C0A12;
  --purple: #7A1635;
  --purple-light: #C81E4A;
  --pink: #C81E4A;
  --pink-hover: #E02858;
  --font: 'DM Sans', Arial, sans-serif;
}
body.nvv-body { font-family: var(--font) !important; }
.nvv-btn-primary { background: #C81E4A !important; box-shadow: 0 8px 28px rgba(0,0,0,.25) !important; }
.nvv-btn-primary:hover { background: #E02858 !important; }
.nvv-nav a:hover, .nvv-footer a:hover { color: #C81E4A !important; }
.nvv-chip.is-hot, .nvv-badge-18 { background: #C81E4A !important; }
.nvv-benefit-icon, .nvv-cat.is-active { background: linear-gradient(135deg, #7A1635, #C81E4A) !important; }
.nvv-progress-bar span { background: linear-gradient(90deg, #7A1635, #C81E4A) !important; }
.nvv-btn-outline { border-color: #C81E4A !important; }
.nvv-btn-gradient { background: linear-gradient(135deg, #C81E4A, #7A1635) !important; }
.nvv-btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline-color: #C81E4A !important; }
.nvv-skip:focus { background: #C81E4A !important; }

body.nvv-body.theme-royal { background: linear-gradient(180deg, #1C0A12 0%, #0C070A 45%, #0C070A 100%) !important; }
.theme-royal .nvv-topbar { border-bottom: 2px solid #C81E4A !important; background: #220C16 !important; }
.theme-royal .nvv-btn { border-radius: 16px !important; text-transform: uppercase; letter-spacing: .03em; font-size: 13px; }
.theme-royal .nvv-btn-reg { background: transparent !important; border: 2px solid #C81E4A !important; color: #fff !important; }
.theme-royal .nvv-benefit-icon { border-radius: 50% !important; }
.theme-royal .nvv-promo-grid { grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
.theme-royal .nvv-promo-card:first-child { grid-column: auto !important; }
.theme-royal .nvv-promo-card { background: linear-gradient(180deg, #451C2C, #1C0A12) !important; border: 1px solid rgba(200,30,74,.35) !important; }
.theme-royal .nvv-chip { border-radius: 10px !important; }
.theme-royal .nvv-reg-heading { text-transform: uppercase; letter-spacing: .04em; font-size: 20px; }
.theme-royal .nvv-btn-login { background: #451C2C !important; }
@media (max-width:767px){ .theme-royal .nvv-promo-grid{grid-template-columns:1fr!important} }

/* ===== BANNER SIZE FIX ===== */
/* Modest banner, full photo visible (no crop) */
.nvv-hero,
.nvv-hero-stack,
.nvv-hero-bar,
.nvv-hero-left,
.nvv-hero-bottom,
.nvv-hero-center{
  position: relative;
  width: min(1100px, calc(100% - 48px));
  max-width: 1100px;
  margin: 16px auto 0;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: auto !important;
  max-height: none !important;
  display: block !important;
  overflow: hidden;
  border-radius: 16px;
  background: transparent !important;
}
.nvv-hero::after,
.nvv-hero-stack::after,
.nvv-hero-bar::after{
  display: none !important;
}
.nvv-hero-media-wrap{
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block;
  line-height: 0;
}
.nvv-hero-media{
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}
.nvv-hero-panel,
.nvv-hero-bar-cta{
  position: absolute !important;
  left: 50% !important;
  bottom: 14px !important;
  transform: translateX(-50%);
  z-index: 3;
  width: min(420px, calc(100% - 24px)) !important;
  margin: 0 !important;
  padding: 14px 14px !important;
  box-sizing: border-box;
}
.nvv-hero-bar{
  /* keep same image sizing; CTA sits over bottom */
}
.nvv-hero-bar .nvv-hero-bar-cta{
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(640px, calc(100% - 24px)) !important;
  bottom: 12px !important;
}
.nvv-hero-kicker{font-size:14px !important;margin:0 0 4px !important}
.nvv-hero-amount{font-size:clamp(22px,3.2vw,34px) !important;line-height:1.05 !important}
.nvv-hero-spins{font-size:clamp(15px,2vw,20px) !important;margin:4px 0 10px !important}
.nvv-hero-cta{min-width:150px !important;height:42px !important;font-size:14px !important;padding:0 18px !important}
.nvv-hero-note{font-size:12px !important;margin-top:6px !important}

/* form + side banner: full photo, compact */
.nvv-register{
  width: min(1100px, calc(100% - 48px)) !important;
  max-width: 1100px !important;
  margin: 16px auto 0 !important;
}
.nvv-register-inner{
  min-height: 0 !important;
  padding: 16px !important;
  gap: 16px !important;
  align-items: stretch !important;
}
.nvv-reg-art{
  min-height: 0 !important;
  max-height: none !important;
  height: auto !important;
  border-radius: 14px !important;
  overflow: hidden;
}
.nvv-reg-art img{
  min-height: 0 !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
}
.nvv-reg-art::after{display:none !important}

/* plain banners: full photo, modest width */
.nvv-banner-plain{
  padding: 16px 0 0 !important;
}
.nvv-banner-plain-link{
  display: block !important;
  width: min(1100px, calc(100% - 48px)) !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  line-height: 0 !important;
  border: 1px solid var(--border);
}
.nvv-banner-plain-link img{
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
}
.nvv-banner-bleed{
  padding: 16px 0 0 !important;
}
.nvv-banner-bleed .nvv-banner-plain-link{
  width: min(1100px, calc(100% - 48px)) !important;
  max-width: 1100px !important;
  border-radius: 16px !important;
  border: 1px solid var(--border) !important;
}
.nvv-banner-bleed .nvv-banner-plain-link img{
  max-height: none !important;
  aspect-ratio: auto !important;
}

@media (max-width:767px){
  .nvv-hero,
  .nvv-hero-stack,
  .nvv-hero-bar,
  .nvv-hero-left,
  .nvv-hero-bottom,
  .nvv-hero-center,
  .nvv-register,
  .nvv-banner-plain-link,
  .nvv-banner-bleed .nvv-banner-plain-link{
    width: calc(100% - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 12px !important;
  }
  .nvv-hero,
  .nvv-hero-stack,
  .nvv-hero-bar,
  .nvv-hero-left{
    max-height: none !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    padding: 0 !important;
  }
  .nvv-hero-panel,
  .nvv-hero-bar-cta{
    width: calc(100% - 16px) !important;
    bottom: 8px !important;
    padding: 10px !important;
  }
  .nvv-hero-amount{font-size:20px !important}
  .nvv-hero-spins{font-size:13px !important}
  .nvv-hero-cta,
  .nvv-hero-bar-cta .nvv-btn{
    height:38px !important;
    font-size:12px !important;
    min-width:0 !important;
    width: auto !important;
  }
  .nvv-register-inner{padding:12px !important;grid-template-columns:1fr !important}
  .nvv-reg-art,
  .nvv-reg-art img{
    max-height: none !important;
    min-height: 0 !important;
    height: auto !important;
  }
  .nvv-banner-plain{padding-top:10px !important}
}
/* site 3: slightly smaller banner */
.theme-royal .nvv-banner-plain-link{
  width: min(960px, calc(100% - 48px)) !important;
  max-width: 960px !important;
}
/* ===== Scroll to top ===== */
.nvv-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;
}
.nvv-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));
}
.nvv-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);
}
.nvv-scroll-top:focus-visible{
  outline:3px solid #fff;
  outline-offset:3px;
}
.nvv-scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0) scale(1);
}
@media (max-width:767px){
  .nvv-scroll-top{
    right:84px;
    bottom:150px;
    width:48px;
    height:48px;
  }
  .nvv-scroll-top svg{
    width:24px;
    height:24px;
  }
}

/* ===== CTA banner (no image, large) ===== */
.nvv-hero.nvv-hero-cta-simple.nvv-hero-cta-only{
  position: relative;
  width: min(1280px, calc(100% - 24px));
  max-width: 1280px;
  margin: 20px auto 0;
  min-height: 280px !important;
  height: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  padding: 48px 24px;
  background: linear-gradient(135deg, #2a0f1a 0%, #1C0A12 45%, #3a1220 100%) !important;
  border: 1px solid rgba(237,34,36,.35);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
}
.nvv-hero-cta-only::after{ display:none !important; }
.nvv-hero-cta-only .nvv-hero-panel-simple{
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: min(640px, 100%) !important;
  margin: 0 auto !important;
  padding: 28px 32px !important;
  text-align: center;
  border-radius: 16px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(237,34,36,.4);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.nvv-hero-cta-only .nvv-hero-kicker{
  margin: 0 0 10px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ED2224 !important;
}
.nvv-hero-cta-only .nvv-hero-amount{
  margin: 0 0 10px !important;
  font-size: clamp(36px, 5.5vw, 56px) !important;
  color: #fff !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
}
.nvv-hero-cta-only .nvv-hero-spins{
  margin: 0 0 20px !important;
  font-size: clamp(16px, 2.4vw, 22px) !important;
  color: rgba(255,255,255,.85) !important;
  font-weight: 600 !important;
}
.nvv-hero-cta-only .nvv-hero-cta{
  min-width: 240px !important;
  height: 56px !important;
  font-size: 17px !important;
  padding: 0 32px !important;
}
.nvv-hero-cta-only .nvv-hero-note{
  margin: 14px 0 0 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.55) !important;
}
@media (max-width:767px){
  .nvv-hero.nvv-hero-cta-simple.nvv-hero-cta-only{
    width: calc(100% - 16px) !important;
    min-height: 220px !important;
    margin-top: 12px;
    padding: 32px 14px;
    border-radius: 14px !important;
  }
  .nvv-hero-cta-only .nvv-hero-panel-simple{ padding: 20px 16px !important; }
  .nvv-hero-cta-only .nvv-hero-amount{ font-size: 34px !important; }
  .nvv-hero-cta-only .nvv-hero-cta{
    min-width: 200px !important;
    height: 50px !important;
    font-size: 15px !important;
  }
}
/* ===== Offer popup (10s) ===== */
.nvv-popup{
  position:fixed; inset:0; z-index:2000;
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}
.nvv-popup.is-open{ opacity:1; visibility:visible; pointer-events:auto; }
.nvv-popup-backdrop{
  position:absolute; inset:0;
  background:rgba(8,4,12,.72);
  backdrop-filter:blur(4px);
}
.nvv-popup-card{
  position:relative; z-index:1;
  width:min(420px,100%);
  padding:28px 24px 22px;
  border-radius:18px;
  background:linear-gradient(160deg,#2a0f1a 0%,#140810 55%,#1c0a12 100%);
  border:1px solid rgba(237,34,36,.35);
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  text-align:center;
  color:#fff;
}
.nvv-popup-close{
  position:absolute; top:10px; right:12px;
  width:36px; height:36px;
  border:0; border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff; font-size:22px; line-height:1;
  cursor:pointer;
}
.nvv-popup-close:hover{ background:rgba(255,255,255,.16); }
.nvv-popup-kicker{
  margin:0 0 8px;
  font-size:13px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:#ED2224;
}
.nvv-popup-title{
  margin:0 0 8px;
  font-size:clamp(26px,5vw,34px); font-weight:800; line-height:1.15;
}
.nvv-popup-text{
  margin:0 0 18px;
  font-size:14px; line-height:1.45; color:rgba(255,255,255,.78);
}
.nvv-popup-cta{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:200px; height:48px; padding:0 22px;
  border-radius:999px;
  background:#ED2224; color:#fff;
  font-size:15px; font-weight:800; text-decoration:none;
}
.nvv-popup-cta:hover{ filter:brightness(1.08); }
.nvv-popup-note{ margin:12px 0 0; font-size:12px; color:rgba(255,255,255,.5); }