:root{
  --bg:#08020d;
  --bg-soft:#11051b;
  --panel:#160824;
  --panel-2:#211033;
  --line:rgba(255,255,255,.1);
  --line-strong:rgba(224,165,255,.22);
  --text:#fff;
  --muted:#cdbed8;
  --purple:#9d3bff;
  --purple-light:#c879ff;
  --pink:#ff47df;
  --cyan:#52e7ff;
  --green:#18c768;
  --gold:#ffd76c;
  --shadow:0 24px 70px rgba(0,0,0,.4);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:92px}
body{
  margin:0;
  min-width:320px;
  font-family:"Kanit",Tahoma,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 0%,rgba(150,50,255,.2),transparent 30%),
    radial-gradient(circle at 90% 24%,rgba(255,50,215,.12),transparent 30%),
    linear-gradient(180deg,#08020d 0%,#0d0315 42%,#07010b 100%);
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  pointer-events:none;
  opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,#000,transparent 80%);
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
img{display:block;max-width:100%}
svg{width:1.2em;height:1.2em;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.svg-sprite{position:absolute;width:0;height:0;overflow:hidden}
.container{width:min(1200px,calc(100% - 36px));margin-inline:auto}
.section{padding:88px 0}
.site-glow{position:fixed;z-index:-2;border-radius:50%;filter:blur(100px);pointer-events:none}
.site-glow--one{width:360px;height:360px;top:20%;left:-200px;background:rgba(138,43,226,.2)}
.site-glow--two{width:420px;height:420px;right:-240px;top:55%;background:rgba(255,44,221,.12)}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(8,2,13,.82);
  backdrop-filter:blur(18px) saturate(145%);
}
.header-inner{height:80px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{flex:0 0 auto}
.brand img{width:142px;height:auto}
.desktop-nav{display:flex;align-items:center;gap:30px;margin-left:auto}
.desktop-nav a{position:relative;color:#d9cce3;font-size:14px;font-weight:500;transition:.2s}
.desktop-nav a::after{content:"";position:absolute;left:50%;right:50%;bottom:-9px;height:2px;border-radius:4px;background:linear-gradient(90deg,var(--pink),var(--purple-light));transition:.22s}
.desktop-nav a:hover{color:#fff}
.desktop-nav a:hover::after{left:0;right:0}
.header-actions{display:flex;align-items:center;gap:10px}
.status-pill{display:flex;align-items:center;gap:8px;min-height:42px;padding:0 14px;border-radius:14px;background:rgba(22,154,80,.12);border:1px solid rgba(87,255,145,.17);font-size:12px;color:#d9ffe6;white-space:nowrap}
.status-pill i,.live-dot{width:8px;height:8px;border-radius:50%;background:#46ff85;box-shadow:0 0 0 5px rgba(70,255,133,.08),0 0 14px rgba(70,255,133,.85);animation:pulse 1.8s ease-in-out infinite}
@keyframes pulse{50%{opacity:.55;transform:scale(.82)}}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:0 20px;border:1px solid transparent;border-radius:15px;font-weight:700;line-height:1;transition:transform .2s,box-shadow .2s,border-color .2s,filter .2s;cursor:pointer}
.btn:hover{transform:translateY(-2px);filter:brightness(1.06)}
.btn-login{background:rgba(255,255,255,.055);border-color:rgba(255,255,255,.1);color:#fff}
.btn-register{background:linear-gradient(135deg,#ff4bdd 0%,#a33fff 55%,#7431ff 100%);box-shadow:0 14px 32px rgba(160,48,255,.38),inset 0 1px 0 rgba(255,255,255,.28)}
.btn-register--small{min-height:44px;padding-inline:17px}
.btn-line{background:linear-gradient(135deg,#18d46e,#09a94f);box-shadow:0 14px 30px rgba(10,177,84,.28),inset 0 1px 0 rgba(255,255,255,.25)}

.hero-section{padding:28px 0 32px}
.hero-shell{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  min-height:570px;
  overflow:hidden;
  border:1px solid var(--line-strong);
  border-radius:36px;
  background:linear-gradient(135deg,rgba(38,12,62,.96),rgba(16,5,26,.96) 55%,rgba(10,2,16,.98));
  box-shadow:0 35px 100px rgba(0,0,0,.45),inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-copy{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;padding:56px 48px 46px;overflow:hidden}
.hero-copy::before{content:"";position:absolute;width:330px;height:330px;border-radius:50%;left:-190px;top:-100px;background:radial-gradient(circle,rgba(183,70,255,.32),transparent 68%);pointer-events:none}
.hero-copy::after{content:"";position:absolute;right:0;bottom:0;width:60%;height:38%;background:linear-gradient(145deg,transparent,rgba(134,43,255,.07));clip-path:polygon(100% 0,0 100%,100% 100%);pointer-events:none}
.topline{position:relative;display:inline-flex;align-items:center;gap:11px;width:max-content;max-width:100%;margin-bottom:18px;padding:8px 12px;border:1px solid rgba(217,173,255,.18);border-radius:999px;background:rgba(124,44,191,.13);color:#eadbfa;font-size:11px;font-weight:600;letter-spacing:.09em}
.hero-copy h1{position:relative;margin:0;line-height:1}
.hero-brand{display:block;width:max-content;font-size:clamp(72px,8vw,116px);font-weight:800;line-height:.82;letter-spacing:-.065em;background:linear-gradient(180deg,#fff 0%,#f7e9ff 30%,#d28aff 68%,#8a38ff 100%);-webkit-background-clip:text;background-clip:text;color:transparent;filter:drop-shadow(0 12px 24px rgba(138,42,255,.22))}
.hero-heading{display:block;margin-top:25px;font-size:clamp(27px,3vw,39px);font-weight:700;line-height:1.28;letter-spacing:-.025em;color:#fff}
.hero-heading strong{display:inline-flex;align-items:center;justify-content:center;margin-right:5px;padding:6px 17px;border-radius:12px;background:linear-gradient(135deg,#ff4ddd,#9b3dff);box-shadow:0 10px 28px rgba(177,50,255,.3);font-size:.82em;color:#fff;text-shadow:none;white-space:nowrap}
.hero-description{position:relative;max-width:570px;margin:20px 0 0;color:#d5c7de;font-size:16px;line-height:1.75;font-weight:400}
.hero-cta{position:relative;display:grid;grid-template-columns:1.08fr .92fr;gap:12px;margin-top:28px}
.btn-register--hero,.btn-line--hero{min-height:68px;padding:0 19px;border-radius:18px;justify-content:flex-start}
.btn-register--hero>svg:first-child,.btn-line--hero>svg:first-child{width:25px;height:25px;flex:0 0 auto}
.btn-register--hero span,.btn-line--hero span{display:grid;gap:4px;text-align:left;font-size:18px}
.btn-register--hero small,.btn-line--hero small{font-size:10px;font-weight:500;opacity:.84;letter-spacing:.03em}
.btn-register--hero .btn-arrow{width:21px;height:21px;margin-left:auto}
.hero-trust{position:relative;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px}
.hero-trust>div{display:flex;align-items:center;gap:10px;min-height:56px;padding:10px 12px;border:1px solid rgba(255,255,255,.085);border-radius:15px;background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));color:#d7c8e0}
.hero-trust svg{flex:0 0 22px;width:22px;height:22px;color:#d680ff}
.hero-trust span{font-size:12px;line-height:1.4}
.hero-trust b{display:block;color:#fff;font-size:14px}
.hero-visual{position:relative;min-width:0;background:#0a0210;overflow:hidden}
.hero-visual::before{content:"";position:absolute;inset:0;z-index:2;pointer-events:none;background:linear-gradient(90deg,#13051f 0%,rgba(19,5,31,.62) 2%,transparent 14%),linear-gradient(0deg,rgba(8,2,13,.64),transparent 35%)}
.slider{position:absolute;inset:0}
.slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;opacity:0;transform:scale(1.025);transition:opacity .75s ease,transform 5s ease}
.slider img.is-active{opacity:1;transform:scale(1)}
.slide-dots{position:absolute;z-index:4;right:24px;bottom:24px;display:flex;gap:8px}
.slide-dots button{width:9px;height:9px;padding:0;border:0;border-radius:20px;background:rgba(255,255,255,.45);cursor:pointer;transition:.25s}
.slide-dots button.is-active{width:28px;background:#fff}
.visual-badge{position:absolute;z-index:3;left:26px;bottom:22px;display:grid;gap:3px;max-width:260px;padding:13px 16px;border:1px solid rgba(255,255,255,.18);border-radius:16px;background:rgba(11,3,18,.66);backdrop-filter:blur(14px)}
.visual-badge span{font-size:9px;letter-spacing:.16em;color:#d7b3ef}
.visual-badge b{font-size:16px}

.notice-strip{overflow:hidden;border-block:1px solid rgba(255,255,255,.08);background:linear-gradient(90deg,rgba(100,31,151,.16),rgba(255,66,223,.09),rgba(100,31,151,.16))}
.notice-track{display:flex;align-items:center;width:max-content;min-height:52px;animation:marquee 28s linear infinite}
.notice-track span{padding:0 25px;font-size:13px;font-weight:600;color:#e8d9f1;white-space:nowrap}
.notice-track i{width:6px;height:6px;border-radius:50%;background:linear-gradient(135deg,var(--pink),var(--cyan));box-shadow:0 0 10px rgba(242,86,255,.6)}
@keyframes marquee{to{transform:translateX(-50%)}}

.section-heading{margin-bottom:32px}
.section-heading.centered{text-align:center;max-width:720px;margin:0 auto 34px}
.section-heading.compact{margin-bottom:28px}
.section-kicker{display:inline-block;margin-bottom:9px;color:#d599ff;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.section-heading h2,.confidence-copy h2{margin:0;color:#fff;font-size:clamp(31px,4.4vw,48px);line-height:1.12;letter-spacing:-.035em}
.section-heading h2 em,.confidence-copy h2 em{font-style:normal;background:linear-gradient(90deg,#f8caff,#d881ff 45%,#ff65da);-webkit-background-clip:text;background-clip:text;color:transparent}
.section-heading p{max-width:650px;margin:12px auto 0;color:var(--muted);font-size:15px;line-height:1.7}
.split-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px}
.split-heading p{margin-left:0}
.refresh-button{display:inline-flex;align-items:center;gap:9px;min-height:46px;padding:0 17px;border:1px solid rgba(219,166,255,.18);border-radius:14px;background:rgba(120,44,178,.12);color:#f4e9ff;font-weight:600;cursor:pointer;transition:.2s;white-space:nowrap}
.refresh-button:hover{transform:translateY(-2px);border-color:rgba(235,197,255,.36);background:rgba(142,49,210,.2)}
.refresh-button svg{width:18px;height:18px}
.refresh-button.is-spinning svg{animation:spin .55s ease}
@keyframes spin{to{transform:rotate(360deg)}}

.feature-section{padding-top:92px}
.feature-grid{display:grid;grid-template-columns:1.15fr .85fr .85fr;gap:16px}
.feature-card{position:relative;min-height:360px;overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:26px;background:#130720;box-shadow:0 20px 50px rgba(0,0,0,.26)}
.feature-card--wide{min-height:410px}
.feature-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease,filter .5s ease}
.feature-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 28%,rgba(7,1,11,.22) 50%,rgba(7,1,11,.95) 100%)}
.feature-card:hover img{transform:scale(1.045);filter:saturate(1.1)}
.feature-overlay{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:24px}
.feature-overlay span{display:inline-block;margin-bottom:7px;color:#d888ff;font-size:10px;font-weight:700;letter-spacing:.14em}
.feature-overlay h3{margin:0;font-size:21px;line-height:1.28}
.feature-overlay p{margin:7px 0 0;color:#cabcd4;font-size:13px;line-height:1.55}

.games-section{position:relative;background:linear-gradient(180deg,rgba(48,15,75,.16),rgba(20,6,31,.1));border-block:1px solid rgba(255,255,255,.055)}
.game-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:17px}
.game-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:24px;background:linear-gradient(180deg,#1b0b29,#11071b);box-shadow:0 18px 40px rgba(0,0,0,.25);transition:transform .25s,border-color .25s,box-shadow .25s}
.game-card:hover{transform:translateY(-6px);border-color:rgba(227,169,255,.34);box-shadow:0 28px 55px rgba(0,0,0,.34)}
.game-image{position:relative;aspect-ratio:360/472;overflow:hidden;background:#0d0415}
.game-image img{width:100%;height:100%;object-fit:cover;transition:transform .55s}
.game-card:hover .game-image img{transform:scale(1.04)}
.rate-badge{position:absolute;top:12px;right:12px;display:grid;place-items:center;width:64px;height:64px;border:1px solid rgba(255,255,255,.24);border-radius:50%;background:linear-gradient(145deg,rgba(255,73,222,.94),rgba(113,48,255,.94));box-shadow:0 10px 24px rgba(111,37,218,.42),inset 0 1px 0 rgba(255,255,255,.35);text-align:center}
.rate-badge small{display:block;font-size:8px;font-weight:500;line-height:1.1}
.rate-badge b{display:block;font-size:20px;line-height:1.05}
.game-info{padding:15px 16px 17px}
.game-name{display:flex;align-items:center;justify-content:space-between;gap:10px;font-size:15px;font-weight:700}
.game-name span{display:inline-flex;align-items:center;gap:5px;color:#a7ffa8;font-size:10px;font-weight:500;white-space:nowrap}
.game-name span::before{content:"";width:6px;height:6px;border-radius:50%;background:#58ff8d;box-shadow:0 0 10px rgba(88,255,141,.7)}
.rate-line{height:6px;margin-top:11px;overflow:hidden;border-radius:999px;background:rgba(255,255,255,.08)}
.rate-line i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#8b3bff,#ff55dc,#65efff);box-shadow:0 0 14px rgba(230,75,255,.45)}

.provider-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:15px}
.provider-card{position:relative;display:flex;align-items:center;justify-content:center;min-height:210px;padding:22px 14px;overflow:hidden;border:1px solid rgba(255,255,255,.1);border-radius:22px;background:linear-gradient(160deg,rgba(37,13,57,.88),rgba(14,5,23,.96));box-shadow:0 16px 36px rgba(0,0,0,.22);transition:.25s}
.provider-card::before{content:"";position:absolute;inset:auto 8% -48% 8%;height:100px;border-radius:50%;background:radial-gradient(circle,rgba(170,58,255,.26),transparent 68%)}
.provider-card:hover{transform:translateY(-5px);border-color:rgba(219,157,255,.3)}
.provider-card img{position:relative;z-index:1;max-height:166px;width:auto;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(0,0,0,.3));transition:transform .3s}
.provider-card:hover img{transform:scale(1.045)}

.promotion-section{background:linear-gradient(180deg,transparent,rgba(87,25,126,.08),transparent)}
.promo-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:17px}
.promo-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:24px;background:#160720;box-shadow:0 20px 45px rgba(0,0,0,.25);transition:.25s}
.promo-card:hover{transform:translateY(-5px);border-color:rgba(226,164,255,.32)}
.promo-card img{width:100%;aspect-ratio:1/1;object-fit:cover;transition:transform .55s}
.promo-card:hover img{transform:scale(1.035)}
.promo-content{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:15px 16px 17px}
.promo-content div{min-width:0}
.promo-content span{display:block;color:#c985ff;font-size:9px;font-weight:700;letter-spacing:.12em}
.promo-content h3{margin:4px 0 0;font-size:15px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.promo-content svg{flex:0 0 auto;width:20px;height:20px;color:#e5b2ff}

.confidence-section{padding-top:42px}
.confidence-panel{position:relative;display:grid;grid-template-columns:1.2fr .8fr;gap:34px;align-items:center;overflow:hidden;padding:46px;border:1px solid rgba(223,170,255,.18);border-radius:32px;background:radial-gradient(circle at 85% 0%,rgba(211,76,255,.16),transparent 34%),linear-gradient(135deg,rgba(41,13,65,.95),rgba(17,5,28,.98));box-shadow:var(--shadow)}
.confidence-panel::before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(135deg,rgba(255,255,255,.035),transparent 38%)}
.confidence-copy,.confidence-cards{position:relative;z-index:1}
.confidence-copy p{max-width:600px;margin:14px 0 0;color:var(--muted);line-height:1.7}
.confidence-checks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;margin-top:24px}
.confidence-checks span{display:flex;align-items:center;gap:8px;padding:11px 12px;border:1px solid rgba(255,255,255,.08);border-radius:13px;background:rgba(255,255,255,.035);color:#ddd0e6;font-size:11px;line-height:1.45}
.confidence-checks svg{flex:0 0 18px;width:18px;height:18px;color:#7affaa}
.confidence-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.confidence-cards article{min-height:190px;padding:23px 18px;border:1px solid rgba(255,255,255,.11);border-radius:22px;background:linear-gradient(145deg,rgba(123,39,178,.18),rgba(255,255,255,.035));box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}
.confidence-cards svg{width:35px;height:35px;color:#d573ff}
.confidence-cards b{display:block;margin-top:20px;font-size:18px}
.confidence-cards span{display:block;margin-top:7px;color:#c8b9d2;font-size:12px;line-height:1.6}

.final-cta-section{padding:18px 0 88px}
.final-cta{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:32px 36px;border:1px solid rgba(255,255,255,.13);border-radius:26px;background:linear-gradient(105deg,#5f1bb1 0%,#9e2fd4 46%,#5116a4 100%);box-shadow:0 24px 55px rgba(85,20,158,.36),inset 0 1px 0 rgba(255,255,255,.18)}
.final-cta span{font-size:12px;color:#ead8ff}
.final-cta h2{max-width:650px;margin:5px 0 0;font-size:clamp(23px,3vw,34px);line-height:1.25}
.final-cta-actions{display:flex;gap:10px;flex:0 0 auto}
.final-cta-actions .btn{background:#fff;color:#54118a;box-shadow:0 12px 26px rgba(29,0,51,.2)}
.final-cta-actions .btn-line{background:#16c968;color:#fff}

.site-footer{border-top:1px solid rgba(255,255,255,.08);background:rgba(5,1,8,.75)}
.footer-inner{min-height:110px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.footer-inner img{width:125px}
.footer-inner p{margin:0;color:#95879e;font-size:12px;text-align:right}
.mobile-action-bar{display:none}

@media (max-width:1080px){
  .desktop-nav{display:none}
  .hero-shell{grid-template-columns:1fr 1fr;min-height:530px}
  .hero-copy{padding:44px 34px 38px}
  .hero-cta{grid-template-columns:1fr}
  .btn-register--hero,.btn-line--hero{min-height:62px}
  .feature-grid{grid-template-columns:1.15fr .85fr}
  .feature-card:last-child{grid-column:1/-1;min-height:330px}
  .feature-card:last-child img{object-position:center 34%}
  .game-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
  .provider-grid{gap:10px}
  .provider-card{min-height:180px}
  .promo-grid{gap:12px}
  .confidence-panel{grid-template-columns:1fr;padding:40px}
  .confidence-checks{max-width:760px}
  .confidence-cards{max-width:580px}
}

@media (max-width:820px){
  .container{width:min(100% - 28px,720px)}
  .section{padding:72px 0}
  .header-inner{height:70px}
  .brand img{width:122px}
  .status-pill,.btn-login{display:none}
  .hero-section{padding-top:18px}
  .hero-shell{grid-template-columns:1fr;min-height:0;border-radius:28px}
  .hero-copy{order:2;padding:34px 26px 30px;text-align:center;align-items:center}
  .topline{margin-bottom:16px;font-size:9.5px}
  .hero-brand{margin-inline:auto;font-size:clamp(74px,18vw,104px)}
  .hero-heading{margin-top:22px;font-size:clamp(26px,7vw,35px)}
  .hero-description{font-size:15px}
  .hero-cta{width:100%;grid-template-columns:1fr 1fr}
  .btn-register--hero,.btn-line--hero{min-height:64px;text-align:left}
  .hero-trust{width:100%;text-align:left}
  .hero-visual{order:1;aspect-ratio:16/8.8;min-height:0}
  .hero-visual::before{background:linear-gradient(0deg,#14051f 0%,rgba(20,5,31,.25) 18%,transparent 42%)}
  .visual-badge{left:16px;bottom:14px;padding:10px 12px}
  .visual-badge b{font-size:13px}
  .slide-dots{right:16px;bottom:16px}
  .feature-grid{grid-template-columns:1fr 1fr}
  .feature-card--wide{grid-column:1/-1;min-height:430px}
  .feature-card{min-height:330px}
  .feature-card:last-child{grid-column:auto;min-height:330px}
  .game-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
  .provider-grid{grid-template-columns:repeat(5,150px);overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 2px 14px;scrollbar-width:none}
  .provider-grid::-webkit-scrollbar{display:none}
  .provider-card{min-height:205px;scroll-snap-align:start}
  .promo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
  .confidence-checks{grid-template-columns:1fr}
  .final-cta{align-items:flex-start;flex-direction:column}
  .final-cta-actions{width:100%}
  .final-cta-actions .btn{flex:1}
}

@media (max-width:600px){
  html{scroll-padding-top:72px}
  body{padding-bottom:72px}
  .container{width:calc(100% - 22px)}
  .section{padding:58px 0}
  .site-header{background:rgba(8,2,13,.91)}
  .header-inner{height:64px;gap:10px}
  .brand img{width:106px}
  .btn-register--small{min-height:38px;padding:0 13px;border-radius:12px;font-size:12px}
  .hero-section{padding:10px 0 22px}
  .hero-shell{border-radius:22px}
  .hero-visual{aspect-ratio:16/9.1}
  .visual-badge{display:none}
  .slide-dots{bottom:12px}
  .hero-copy{padding:28px 17px 22px}
  .topline{padding:7px 10px;white-space:normal;justify-content:center;line-height:1.35}
  .hero-brand{font-size:clamp(66px,21vw,88px);line-height:.84}
  .hero-heading{margin-top:19px;font-size:clamp(24px,7.2vw,31px);line-height:1.34}
  .hero-heading strong{padding:5px 12px;border-radius:9px}
  .hero-description{margin-top:15px;font-size:13.5px;line-height:1.65}
  .hero-cta{grid-template-columns:1fr;margin-top:21px;gap:9px}
  .btn-register--hero,.btn-line--hero{min-height:59px;border-radius:15px;padding:0 16px}
  .btn-register--hero span,.btn-line--hero span{font-size:16px}
  .hero-trust{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:18px}
  .hero-trust>div{min-height:58px;padding:9px;border-radius:13px;gap:8px}
  .hero-trust svg{width:19px;height:19px;flex-basis:19px}
  .hero-trust span{font-size:10px}
  .hero-trust b{font-size:12px}
  .notice-track{min-height:44px}
  .notice-track span{padding:0 18px;font-size:11px}
  .section-heading{margin-bottom:24px}
  .section-heading.centered{margin-bottom:25px}
  .section-kicker{font-size:9px;margin-bottom:7px}
  .section-heading h2,.confidence-copy h2{font-size:clamp(28px,9vw,37px)}
  .section-heading p{font-size:13px;line-height:1.65;margin-top:9px}
  .feature-section{padding-top:60px}
  .feature-grid{display:flex;overflow-x:auto;gap:12px;scroll-snap-type:x mandatory;padding:2px 2px 13px;scrollbar-width:none}
  .feature-grid::-webkit-scrollbar{display:none}
  .feature-card,.feature-card--wide,.feature-card:last-child{flex:0 0 82%;min-height:360px;grid-column:auto;border-radius:21px;scroll-snap-align:center}
  .feature-overlay{padding:19px}
  .feature-overlay h3{font-size:18px}
  .feature-overlay p{font-size:11.5px}
  .split-heading{align-items:flex-start;gap:14px}
  .split-heading>div{min-width:0}
  .refresh-button{min-height:40px;padding:0 12px;border-radius:12px;font-size:11px}
  .refresh-button svg{width:16px;height:16px}
  .game-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .game-card{border-radius:18px}
  .rate-badge{top:8px;right:8px;width:52px;height:52px}
  .rate-badge small{font-size:7px}
  .rate-badge b{font-size:16px}
  .game-info{padding:11px 11px 13px}
  .game-name{font-size:12px;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .game-name span{margin-top:4px;font-size:8.5px}
  .rate-line{height:5px;margin-top:8px}
  .provider-grid{grid-template-columns:repeat(5,132px);gap:10px}
  .provider-card{min-height:180px;padding:16px 10px;border-radius:19px}
  .provider-card img{max-height:145px}
  .promo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .promo-card{border-radius:18px}
  .promo-content{padding:11px 12px 13px}
  .promo-content span{font-size:7.5px}
  .promo-content h3{font-size:11.5px}
  .promo-content svg{width:17px;height:17px}
  .confidence-section{padding-top:24px}
  .confidence-panel{padding:27px 18px;border-radius:24px;gap:24px}
  .confidence-copy{text-align:center}
  .confidence-copy p{font-size:13px}
  .confidence-checks{gap:7px;margin-top:19px;text-align:left}
  .confidence-checks span{font-size:10px}
  .confidence-cards{grid-template-columns:1fr 1fr;gap:9px}
  .confidence-cards article{min-height:160px;padding:18px 14px;border-radius:18px}
  .confidence-cards svg{width:29px;height:29px}
  .confidence-cards b{margin-top:16px;font-size:14px}
  .confidence-cards span{font-size:10px;line-height:1.5}
  .final-cta-section{padding:4px 0 58px}
  .final-cta{padding:25px 19px;border-radius:22px;text-align:center;align-items:center}
  .final-cta span{font-size:10px}
  .final-cta h2{font-size:22px}
  .final-cta-actions{flex-direction:column}
  .final-cta-actions .btn{width:100%;min-height:48px}
  .footer-inner{min-height:100px;flex-direction:column;justify-content:center;gap:10px;padding:20px 0}
  .footer-inner img{width:105px}
  .footer-inner p{text-align:center;font-size:10px}
  .mobile-action-bar{position:fixed;z-index:70;left:0;right:0;bottom:0;display:grid;grid-template-columns:.8fr 1.3fr .72fr;gap:7px;padding:8px max(9px,env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(9px,env(safe-area-inset-right));border-top:1px solid rgba(255,255,255,.13);background:rgba(8,2,13,.94);backdrop-filter:blur(18px);box-shadow:0 -12px 32px rgba(0,0,0,.35);opacity:0;transform:translateY(110%);pointer-events:none;transition:opacity .24s ease,transform .24s ease}
  .mobile-action-bar.is-visible{opacity:1;transform:translateY(0);pointer-events:auto}
  .mobile-action-bar a{display:flex;align-items:center;justify-content:center;gap:6px;min-height:48px;border-radius:13px;font-size:11px;font-weight:700}
  .mobile-action-bar svg{width:18px;height:18px}
  .mobile-login{background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.1)}
  .mobile-register{background:linear-gradient(135deg,#ff4adf,#8f35ff);box-shadow:0 8px 20px rgba(149,43,235,.35)}
  .mobile-line{background:linear-gradient(135deg,#17d36d,#09a84e)}
}

@media (max-width:370px){
  .hero-trust{grid-template-columns:1fr}
  .confidence-cards{grid-template-columns:1fr}
  .btn-register--small{display:none}
  .game-grid{gap:8px}
  .game-info{padding-inline:9px}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}

/* --- BM99 update round 2 --- */
body::before{
  opacity:.13;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px);
  background-size:52px 52px;
}

.site-header{
  background:rgba(8,2,13,.84);
}

.hero-copy h1{overflow:visible}
.hero-brand{
  display:inline-block;
  padding-right:.08em;
  background:linear-gradient(180deg,#f6ceff 0%,#d58dff 24%,#c267ff 52%,#a647ff 76%,#7e2bff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  letter-spacing:-.05em;
  text-shadow:0 0 22px rgba(172,78,255,.16);
  filter:drop-shadow(0 10px 22px rgba(138,42,255,.28));
}

.hero-heading strong{padding:7px 18px}
.status-pill{font-weight:700;letter-spacing:.08em}

.feature-section{padding-top:72px}
.feature-slider-shell{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  background:linear-gradient(160deg,rgba(27,9,42,.95),rgba(10,3,16,.98));
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.feature-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .8s ease, transform .8s ease;
  transform:scale(1.02);
}
.feature-slide.is-active{
  opacity:1;
  transform:scale(1);
}
.feature-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.feature-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 20%,rgba(8,2,13,.28) 46%,rgba(8,2,13,.92) 100%);
}
.feature-slide-overlay{
  position:absolute;
  z-index:2;
  left:32px;
  right:32px;
  bottom:32px;
  max-width:640px;
}
.feature-slide-overlay span{
  display:inline-block;
  margin-bottom:10px;
  color:#e2a5ff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
}
.feature-slide-overlay h3{
  margin:0;
  font-size:34px;
  line-height:1.18;
}
.feature-slide-overlay p{
  margin:10px 0 0;
  max-width:550px;
  color:#d7c9e0;
  font-size:15px;
  line-height:1.75;
}
.feature-slide-dots{
  position:absolute;
  z-index:2;
  left:50%;
  bottom:20px;
  display:flex;
  gap:8px;
  transform:translateX(-50%);
}
.feature-slide-dots span{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.42);
  transition:.25s;
}
.feature-slide-dots span.is-active{
  width:28px;
  background:#fff;
}

.media-showcase-section{
  padding-top:12px;
}
.showcase-stack{
  display:grid;
  gap:18px;
}
.showcase-frame{
  position:relative;
  min-height:420px;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#0b0212;
}
.showcase-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.showcase-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,2,13,.12),rgba(8,2,13,.25) 45%,rgba(8,2,13,.88) 100%);
}
.showcase-caption{
  position:absolute;
  z-index:2;
  left:max(22px,calc((100vw - 1200px)/2 + 18px));
  right:22px;
  bottom:30px;
}
.showcase-caption span{
  display:inline-block;
  margin-bottom:10px;
  color:#dfa8ff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
}
.showcase-caption h3{
  margin:0;
  font-size:clamp(30px,4vw,54px);
  line-height:1.08;
}

.games-section .section-heading p,
.providers-section .section-heading p{
  max-width:760px;
}

.confidence-copy h2{
  font-size:clamp(34px,4.8vw,52px);
}
.confidence-copy p{
  font-size:16px;
}
.confidence-checks span{
  min-height:56px;
  font-size:12px;
}
.confidence-cards article{
  min-height:228px;
}
.confidence-cards b{
  font-size:23px;
}
.confidence-cards span{
  font-size:13px;
  line-height:1.65;
}

.final-cta--message{
  justify-content:center;
  text-align:center;
  padding:34px 36px;
}
.final-cta--message h2{
  max-width:none;
  margin-top:8px;
}
.final-cta--message p{
  max-width:760px;
  margin:14px auto 0;
  color:#f6ebff;
  font-size:16px;
  line-height:1.75;
}

@media (max-width:1080px){
  .feature-slider-shell{min-height:480px}
  .showcase-frame{min-height:380px}
}

@media (max-width:820px){
  .feature-slider-shell{min-height:440px;border-radius:24px}
  .feature-slide-overlay{left:22px;right:22px;bottom:24px}
  .feature-slide-overlay h3{font-size:28px}
  .showcase-caption{left:18px;right:18px;bottom:22px}
  .showcase-frame{min-height:320px}
  .provider-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    overflow:visible;
    padding:0;
    gap:12px;
  }
  .provider-card{min-height:170px}
  .provider-grid .provider-card:last-child{grid-column:2 / span 1}
}

@media (max-width:600px){
  body{padding-bottom:86px}
  .status-pill{padding:0 11px;font-size:10px}
  .hero-brand{font-size:clamp(68px,21vw,92px);padding-right:.1em}
  .hero-heading{font-size:clamp(25px,7.3vw,32px)}
  .feature-section{padding-top:56px}
  .feature-slider-shell{min-height:360px;border-radius:22px}
  .feature-slide-overlay{left:18px;right:18px;bottom:20px}
  .feature-slide-overlay span{font-size:9px;margin-bottom:7px}
  .feature-slide-overlay h3{font-size:22px;line-height:1.22}
  .feature-slide-overlay p{font-size:12.5px;line-height:1.62;margin-top:8px}
  .feature-slide-dots{bottom:14px}
  .media-showcase-section{padding-top:0}
  .showcase-stack{gap:12px}
  .showcase-frame{min-height:250px}
  .showcase-caption{left:14px;right:14px;bottom:16px}
  .showcase-caption span{font-size:8px;margin-bottom:6px}
  .showcase-caption h3{font-size:24px;line-height:1.14}
  .provider-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .provider-card{
    min-height:148px;
    padding:14px 10px;
    border-radius:18px;
  }
  .provider-card img{max-height:118px}
  .provider-grid .provider-card:last-child{
    grid-column:1 / -1;
    max-width:56%;
    margin-inline:auto;
  }
  .confidence-panel{
    padding:30px 16px;
    gap:20px;
  }
  .confidence-copy h2{
    font-size:clamp(32px,9.2vw,40px);
    line-height:1.08;
  }
  .confidence-copy p{
    margin-top:12px;
    font-size:14px;
    line-height:1.72;
  }
  .confidence-checks{
    margin-top:18px;
    gap:8px;
  }
  .confidence-checks span{
    min-height:50px;
    font-size:11px;
    padding:12px 11px;
  }
  .confidence-cards{
    grid-template-columns:1fr;
  }
  .confidence-cards article{
    min-height:176px;
    padding:18px 15px;
  }
  .confidence-cards b{font-size:18px}
  .confidence-cards span{font-size:11px;line-height:1.6}
  .final-cta--message{padding:26px 18px}
  .final-cta--message span{font-size:9px}
  .final-cta--message h2{font-size:26px;line-height:1.2}
  .final-cta--message p{font-size:13px;line-height:1.72}
  .mobile-action-bar{
    grid-template-columns:1fr;
    padding:10px max(10px,env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-right));
  }
  .mobile-action-bar a{
    min-height:52px;
    font-size:14px;
  }
  .mobile-register{box-shadow:0 10px 24px rgba(149,43,235,.38)}
}

@media (max-width:370px){
  .provider-grid{grid-template-columns:1fr}
  .provider-grid .provider-card:last-child{grid-column:auto;max-width:none}
}

/* --- BM99 update round 3 --- */
.header-actions{gap:12px}
.btn-status-live{
  min-height:44px;
  padding-inline:16px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(17,162,88,.22),rgba(10,69,38,.18));
  border:1px solid rgba(87,255,145,.2);
  color:#e7fff0;
  box-shadow:0 10px 26px rgba(13,88,46,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.live-mini{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#46ff85;
  box-shadow:0 0 0 4px rgba(70,255,133,.08),0 0 12px rgba(70,255,133,.65);
  animation:pulse 1.8s ease-in-out infinite;
}

.hero-trust>div{
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:8px;
}
.hero-trust span{display:grid;gap:3px;justify-items:center}
.hero-trust b{margin-bottom:0}

.feature-slide::after{
  background:linear-gradient(180deg,transparent 36%,rgba(8,2,13,.12) 55%,rgba(8,2,13,.55) 100%);
}
.feature-slide-overlay{
  max-width:690px;
}
.feature-slide-overlay h3{
  text-shadow:0 6px 18px rgba(0,0,0,.35);
}
.feature-slide-overlay p{
  text-shadow:0 4px 12px rgba(0,0,0,.25);
}

.media-showcase-section{padding-top:18px}
.showcase-stack--boxed{gap:20px}
.showcase-frame--boxed{
  min-height:390px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}
.showcase-frame--boxed::after{display:none}
.showcase-frame--boxed img{display:block;width:100%;height:100%;object-fit:cover}

.provider-grid--four{grid-template-columns:repeat(4,minmax(0,1fr))}

.step-panel{
  display:block;
  padding:42px;
}
.step-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 28px;
}
.step-heading h2{
  margin:0;
  color:#fff;
  font-size:clamp(34px,4.8vw,52px);
  line-height:1.1;
  letter-spacing:-.03em;
}
.step-heading h2 em{
  font-style:normal;
  background:linear-gradient(90deg,#f8caff,#d881ff 45%,#ff65da);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.step-heading p{
  margin:14px auto 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
}
.step-guide{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.step-card{
  position:relative;
  min-height:225px;
  padding:24px 22px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  background:linear-gradient(160deg,rgba(48,15,76,.88),rgba(18,6,30,.98));
  box-shadow:0 16px 40px rgba(0,0,0,.22);
}
.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  height:34px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff4bdd,#923eff);
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
}
.step-card b{
  display:block;
  margin-top:18px;
  font-size:24px;
  line-height:1.25;
}
.step-card p{
  margin:10px 0 0;
  color:#d4c7de;
  font-size:14px;
  line-height:1.7;
}

@media (max-width:1080px){
  .step-guide{grid-template-columns:1fr 1fr 1fr;gap:12px}
  .step-card{padding:22px 18px}
  .step-card b{font-size:20px}
  .showcase-frame--boxed{min-height:340px}
}

@media (max-width:820px){
  .provider-grid--four{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .showcase-frame--boxed{min-height:300px;border-radius:24px}
  .step-panel{padding:34px 22px}
  .step-guide{grid-template-columns:1fr;gap:12px}
  .step-card{min-height:0}
}

@media (max-width:600px){
  .header-actions{gap:8px}
  .btn-status-live{
    min-height:38px;
    padding-inline:13px;
    border-radius:12px;
    font-size:11px;
  }
  .hero-trust>div{
    min-height:64px;
    padding:10px 8px;
  }
  .hero-trust span{gap:2px}
  .feature-slide::after{
    background:linear-gradient(180deg,transparent 42%,rgba(8,2,13,.08) 58%,rgba(8,2,13,.42) 100%);
  }
  .feature-slide-overlay{
    left:16px;
    right:16px;
    bottom:18px;
    max-width:none;
  }
  .media-showcase-section .section-heading p,
  .feature-section .section-heading p{font-size:13px}
  .showcase-stack--boxed{gap:14px}
  .showcase-frame--boxed{
    min-height:220px;
    border-radius:20px;
  }
  .provider-grid--four{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .step-panel{padding:28px 16px}
  .step-heading{margin-bottom:20px}
  .step-heading h2{font-size:clamp(30px,8.6vw,38px)}
  .step-heading p{font-size:13px;line-height:1.68}
  .step-card{
    padding:18px 15px;
    border-radius:20px;
  }
  .step-number{min-width:52px;height:32px;font-size:13px}
  .step-card b{margin-top:14px;font-size:20px}
  .step-card p{font-size:12px;line-height:1.65}
}

/* --- BM99 correction round 4: exact layout fixes --- */
body{
  background-color:#08020d;
  background-image:
    linear-gradient(rgba(202,118,255,.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(202,118,255,.07) 1px,transparent 1px),
    linear-gradient(rgba(202,118,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(202,118,255,.025) 1px,transparent 1px),
    radial-gradient(circle at 10% 0%,rgba(150,50,255,.19),transparent 32%),
    radial-gradient(circle at 90% 25%,rgba(255,50,215,.1),transparent 31%),
    linear-gradient(180deg,#08020d 0%,#0d0315 44%,#07010b 100%);
  background-size:
    40px 40px,
    40px 40px,
    160px 160px,
    160px 160px,
    auto,
    auto,
    auto;
  background-position:center top;
  background-attachment:fixed;
}
body::before{display:none}

/* Remove every dark shade placed over the two main hero slides. */
.hero-visual::before{display:none!important;background:none!important}
.hero-visual .slider img{filter:none!important}

/* Three code placeholders: IMG 5, IMG 6, IMG 7. */
.feature-slider-shell{
  min-height:0;
  aspect-ratio:16/9;
  padding:8px;
  border:1px solid rgba(209,122,255,.62);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(190,75,255,.12),rgba(18,5,29,.94));
  box-shadow:0 20px 48px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.09);
}
.feature-slider-shell .feature-slide{
  inset:8px;
  overflow:hidden;
  border:1px solid rgba(236,192,255,.24);
  border-radius:22px;
  background:#0c0313;
}
.feature-slider-shell .feature-slide::after{display:none!important;background:none!important}
.feature-slider-shell .feature-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:21px;
  filter:none!important;
}
.feature-slide-dots{bottom:20px}

/* Four providers: balanced 4-column desktop and clean 2x2 mobile. */
.provider-grid--four{
  grid-template-columns:repeat(4,minmax(0,1fr));
  max-width:1040px;
  margin-inline:auto;
  gap:18px;
  overflow:visible;
  padding:0;
}
.provider-grid--four .provider-card,
.provider-grid--four .provider-card:last-child{
  grid-column:auto!important;
  width:100%;
  max-width:none!important;
  min-height:0;
  margin:0!important;
  padding:0;
  aspect-ratio:294/420;
  overflow:hidden;
  border:1px solid rgba(217,143,255,.2);
  border-radius:24px;
  background:#12051d;
}
.provider-grid--four .provider-card::before{display:none}
.provider-grid--four .provider-card img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:cover;
  filter:none;
  transform:none;
}
.provider-grid--four .provider-card:hover img{transform:scale(1.025)}

@media (max-width:820px){
  .feature-slider-shell{border-radius:25px}
  .feature-slider-shell .feature-slide{border-radius:18px}
  .feature-slider-shell .feature-slide img{border-radius:17px}
  .provider-grid--four{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:620px;
    gap:14px;
  }
}

@media (max-width:600px){
  body{
    background-size:
      32px 32px,
      32px 32px,
      128px 128px,
      128px 128px,
      auto,
      auto,
      auto;
  }
  .feature-slider-shell{
    aspect-ratio:16/9;
    min-height:0;
    padding:6px;
    border-radius:21px;
  }
  .feature-slider-shell .feature-slide{
    inset:6px;
    border-radius:16px;
  }
  .feature-slider-shell .feature-slide img{border-radius:15px}
  .feature-slide-dots{bottom:14px}
  .provider-grid--four{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }
  .provider-grid--four .provider-card,
  .provider-grid--four .provider-card:last-child{
    border-radius:18px;
  }
}

/* --- BM99 update round 5: wording, borders and broken-grid background --- */
body{
  position:relative;
  background-image:
    radial-gradient(circle at 12% 6%,rgba(150,50,255,.18),transparent 31%),
    radial-gradient(circle at 88% 28%,rgba(255,50,215,.09),transparent 30%),
    linear-gradient(180deg,#08020d 0%,#0d0315 44%,#07010b 100%);
  background-size:auto;
  background-position:center top;
  background-attachment:fixed;
}

/* Broken, irregular grid fragments instead of a complete square grid. */
body::before{
  display:block!important;
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  pointer-events:none;
  opacity:.68;
  background-image:
    linear-gradient(90deg,transparent 0 7%,rgba(205,121,255,.13) 7% 31%,transparent 31% 47%,rgba(205,121,255,.09) 47% 65%,transparent 65% 82%,rgba(205,121,255,.11) 82% 93%,transparent 93%),
    linear-gradient(0deg,transparent 0 11%,rgba(205,121,255,.12) 11% 29%,transparent 29% 51%,rgba(205,121,255,.08) 51% 69%,transparent 69% 86%,rgba(205,121,255,.1) 86% 96%,transparent 96%),
    linear-gradient(135deg,transparent 0 47%,rgba(184,88,255,.045) 48% 49%,transparent 50% 100%);
  background-size:260px 58px,58px 250px,180px 180px;
  background-position:17px 9px,9px 21px,0 0;
  background-repeat:repeat;
  -webkit-mask-image:
    radial-gradient(circle at 16% 12%,#000 0 15%,transparent 35%),
    radial-gradient(circle at 78% 25%,#000 0 14%,transparent 37%),
    radial-gradient(circle at 35% 67%,#000 0 17%,transparent 40%),
    radial-gradient(circle at 88% 82%,#000 0 13%,transparent 34%),
    linear-gradient(#000,#000);
  mask-image:
    radial-gradient(circle at 16% 12%,#000 0 15%,transparent 35%),
    radial-gradient(circle at 78% 25%,#000 0 14%,transparent 37%),
    radial-gradient(circle at 35% 67%,#000 0 17%,transparent 40%),
    radial-gradient(circle at 88% 82%,#000 0 13%,transparent 34%),
    linear-gradient(#000,#000);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  opacity:.38;
  background:
    radial-gradient(ellipse at 18% 20%,rgba(178,70,255,.12),transparent 19%),
    radial-gradient(ellipse at 72% 44%,rgba(116,62,255,.08),transparent 18%),
    radial-gradient(ellipse at 28% 78%,rgba(221,72,255,.07),transparent 16%),
    radial-gradient(ellipse at 90% 88%,rgba(127,57,255,.08),transparent 17%);
}

.btn-line--hero small{
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  opacity:1;
}

/* A clearly visible but still thin frame around both large showcase images. */
.showcase-frame--boxed{
  padding:6px;
  border:1px solid rgba(220,145,255,.72);
  background:linear-gradient(145deg,rgba(183,73,255,.16),rgba(13,4,21,.96));
  box-shadow:0 18px 42px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.1);
}
.showcase-frame--boxed img{
  border:1px solid rgba(244,210,255,.28);
  border-radius:21px;
}

.final-cta--message{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
}
.final-cta--message>div{
  width:100%;
  margin-inline:auto;
  text-align:center!important;
}
.final-cta--message span,
.final-cta--message h2,
.final-cta--message p{
  display:block;
  width:100%;
  text-align:center!important;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:600px){
  body::before{
    opacity:.58;
    background-size:210px 48px,48px 205px,150px 150px;
  }
  .btn-line--hero small{font-size:11px}
  .showcase-frame--boxed{
    padding:4px;
    border-color:rgba(220,145,255,.64);
  }
  .showcase-frame--boxed img{border-radius:16px}
  .final-cta--message{
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    padding-left:18px;
    padding-right:18px;
  }
}

/* Final irregular grid: visible only in soft, broken patches. */
body::before{
  opacity:.72;
  background-image:
    linear-gradient(rgba(205,121,255,.11) 1px,transparent 1px),
    linear-gradient(90deg,rgba(205,121,255,.11) 1px,transparent 1px);
  background-size:54px 54px;
  background-position:18px 12px;
  -webkit-mask-image:
    radial-gradient(ellipse at 8% 12%,#000 0 12%,transparent 30%),
    radial-gradient(ellipse at 78% 20%,#000 0 14%,transparent 32%),
    radial-gradient(ellipse at 32% 58%,#000 0 16%,transparent 36%),
    radial-gradient(ellipse at 91% 76%,#000 0 13%,transparent 31%),
    radial-gradient(ellipse at 18% 92%,#000 0 11%,transparent 28%);
  mask-image:
    radial-gradient(ellipse at 8% 12%,#000 0 12%,transparent 30%),
    radial-gradient(ellipse at 78% 20%,#000 0 14%,transparent 32%),
    radial-gradient(ellipse at 32% 58%,#000 0 16%,transparent 36%),
    radial-gradient(ellipse at 91% 76%,#000 0 13%,transparent 31%),
    radial-gradient(ellipse at 18% 92%,#000 0 11%,transparent 28%);
}

@media (max-width:600px){
  body::before{
    background-size:44px 44px;
    background-position:12px 8px;
  }
}
