:root{
  --bg:#0b1020;
  --panel:#111a33;
  --panel2:#0f1730;
  --text:#e9eeff;
  --muted:#a7b1d8;
  --line:rgba(255,255,255,.10);
  --brand:#7c5cff;
  --brand2:#22d3ee;
  --good:#39d98a;
  --warn:#fbbf24;
  --danger:#fb7185;
  --shadow: 0 16px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 14px;
  --container: 1200px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 450px at 15% -10%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(900px 450px at 85% -10%, rgba(34,211,238,.22), transparent 60%),
    radial-gradient(700px 450px at 50% 115%, rgba(57,217,138,.12), transparent 60%),
    var(--bg);
  line-height:1.45;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
}

.logo-img{
  display:block;
  height:34px;
  width:auto;
  object-fit:contain;
}

@media (max-width: 560px){
  .logo-img{ height:30px; }
}

/* Header */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.6);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.logo{
  width:42px;
  height:42px;
  border-radius:12px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 35px rgba(124,92,255,.20);
  position:relative;
  overflow:hidden;
}
.logo:after{
  content:"";
  position:absolute;
  inset:-20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(25deg);
  animation: shine 4.2s linear infinite;
}
@keyframes shine{
  0%{ transform: translateX(-55%) rotate(25deg); }
  100%{ transform: translateX(55%) rotate(25deg); }
}
.brand__text{ display:flex; flex-direction:column; }
.brand__name{
  font-weight:800;
  letter-spacing:.2px;
  font-size:16px;
  line-height:1.05;
}
.brand__tag{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.btn:active{ transform: translateY(0); }
.btn--primary{
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(34,211,238,.65));
  box-shadow: 0 16px 45px rgba(124,92,255,.20);
}
.btn--primary:hover{ border-color: rgba(124,92,255,.75); }
.btn--ghost{ background: transparent; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size:12px;
  white-space:nowrap;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(57,217,138,.12);
}

.banner{
  padding: 22px 0 10px;
}

.banner__link{
  display:block;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}

.banner__img{
  width:100%;
  height:auto;
  display:block;
}

/* Hero / Bonus banner */
.hero{ padding:26px 0 6px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__main{
  padding:22px;
  position:relative;
  overflow:hidden;
}
.hero__main:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(500px 220px at 20% 15%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(500px 220px at 80% 35%, rgba(34,211,238,.18), transparent 60%);
  pointer-events:none;
}
.hero__content{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:12px;
}
h1{
  font-size: clamp(22px, 2.2vw, 34px);
  margin:0;
  letter-spacing:.2px;
  line-height:1.12;
}
.lead{
  margin:0;
  color: var(--muted);
  font-size:14px;
  max-width:60ch;
}
.hero__cta{
  margin-top:8px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.badges{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.fineprint{
  color: rgba(233,238,255,.65);
  font-size:11px;
  margin:0;
}

.hero__side{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.promo{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(17,26,51,.55);
  padding:14px;
}
.promo__top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
  margin-bottom:10px;
}
.promo__title{
  font-weight:900;
  font-size:14px;
  margin:0;
  letter-spacing:.2px;
}
.promo__sub{
  margin:2px 0 0;
  color: var(--muted);
  font-size:12px;
}
.promo__value{
  font-weight:900;
  font-size:14px;
  color: var(--text);
  background: rgba(124,92,255,.14);
  border:1px solid rgba(124,92,255,.28);
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}
.promo__list{
  list-style:none; padding:0; margin:10px 0 0;
  display:grid; gap:8px;
}
.promo__list li{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  font-size:12px;
}
.check{
  width:18px; height:18px; border-radius:6px;
  background: rgba(57,217,138,.14);
  border:1px solid rgba(57,217,138,.25);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
  margin-top:1px;
}
.check svg{ width:12px; height:12px; fill: var(--good); }

/* Sections */
.section{ padding:22px 0 0; }
.section__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin: 10px 0 12px;
}
.section__title{
  margin:0;
  font-size:16px;
  font-weight:900;
  letter-spacing:.2px;
}
.section__desc{
  margin:0;
  color: var(--muted);
  font-size:12px;
  max-width:65ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}

/* Slot cards */
.slot{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background:
    radial-gradient(120px 80px at 25% 20%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(120px 80px at 75% 20%, rgba(34,211,238,.12), transparent 60%),
    rgba(17,26,51,.45);
  overflow:hidden;
  min-height:132px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:12px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.slot:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.20);
}
.slot__top{
  display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
}
.slot__name{
  margin:0;
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  line-height:1.15;
}
.slot__meta{
  margin:4px 0 0;
  color: var(--muted);
  font-size:11px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.tag{
  font-size:10px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: rgba(233,238,255,.85);
  white-space:nowrap;
}
.tag--hot{ border-color: rgba(251,113,133,.35); background: rgba(251,113,133,.10); }
.tag--new{ border-color: rgba(34,211,238,.35); background: rgba(34,211,238,.10); }
.tag--jack{ border-color: rgba(251,191,36,.35); background: rgba(251,191,36,.10); }

.slot__thumb{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  margin-top:10px;
}

.slot__thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .2s ease, filter .2s ease;
  filter: saturate(1.05) contrast(1.03);
}

.slot:hover .slot__thumb img{
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05);
}

.slot__overlay{
  position:absolute;
  inset:0;
  background: rgba(8,12,24,.72);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
  padding:12px;
}
.slot:hover .slot__overlay{
  opacity:1;
  pointer-events:auto;
}
.slot__overlay .btn{
  width:100%;
  justify-content:center;
  padding:10px 12px;
  font-size:12px;
}
.slot__overlay .btn--demo{ background: rgba(255,255,255,.07); }

/* Text block */
.text-block{
  margin-top:22px;
  padding:18px;
}
.text-block p{
  margin:0;
  color: var(--muted);
  font-size:13px;
}

/* Comments */
.comments{
  margin-top:14px;
  padding:18px;
}
.comments__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.form{ display:grid; gap:10px; }
.field{ display:grid; gap:6px; }

label{
  font-size:12px;
  color: rgba(233,238,255,.85);
  font-weight:700;
}
input, textarea, select{
  width:100%;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 14px;
  padding:11px 12px;
  outline:none;
  transition: border-color .15s ease, background .15s ease;
  font-size:13px;
}
textarea{ min-height:120px; resize:vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(124,92,255,.55);
  background: rgba(255,255,255,.06);
}

.comment-list{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding:12px;
  max-height: 360px;
  overflow:auto;
}
.comment{
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:10px 6px;
}
.comment:last-child{ border-bottom:0; }
.comment__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}
.comment__name{
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
}
.comment__date{
  color: var(--muted);
  font-size:11px;
  white-space:nowrap;
}
.comment__text{
  color: rgba(233,238,255,.82);
  font-size:12px;
  margin:0;
  white-space:pre-wrap;
}
.rating{
  display:inline-flex;
  gap:2px;
  align-items:center;
  margin-left:8px;
}
.star{
  width:14px; height:14px;
  opacity:.9;
  fill: rgba(251,191,36,.95);
}

/* Provider logos (footer) */
.provider-logos{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:10px;
}

.provider-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  height:54px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  padding:10px;
}

.provider-logo:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.provider-logo img{
  width:100%;
  height:100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
}

/* Responsive footer logos */
@media (max-width: 980px){
  .provider-logos{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .provider-logos{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .provider-logo{ height:50px; }
}

/* Footer */
footer{
  margin-top:22px;
  padding:24px 0 36px;
  border-top:1px solid var(--line);
  background: rgba(8,12,24,.35);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
}
.footcard{
  padding:14px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
}
.footcard h3{
  margin:0 0 10px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.2px;
}
.logos{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius: 999px;
  font-size:11px;
  color: rgba(233,238,255,.78);
  white-space:nowrap;
}
.legal{
  margin-top:14px;
  color: rgba(233,238,255,.70);
  font-size:11.5px;
  line-height:1.5;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius2);
  padding:14px;
}

/* Footer certificates */
.certs{
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius2);
  padding: 14px;
}

.certs__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.certs__item{
  display:flex;
  align-items:center;
  justify-content:center;
}

.certs__link{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.certs__link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.certs__item img{
  display:block;
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.certs__item--wide img{
  height: 48px;
}

.certs__18{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  letter-spacing: .5px;
  color: rgba(233,238,255,.9);
  border: 2px solid rgba(190,189,189,.75);
  background: rgba(8,12,24,.35);
}

.certs__textlink{
  display:inline-block;
  margin-left: 10px;
  font-size: 12px;
  color: rgba(233,238,255,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.certs__copy{
  margin-top: 12px;
  color: rgba(233,238,255,.70);
  font-size: 11.5px;
  line-height: 1.5;
}

.certs__copy p{
  margin: 0 0 10px;
}

.certs__copy p:last-child{
  margin-bottom: 0;
}

@media (max-width: 560px){
  .certs__item img{ height: 38px; }
  .certs__item--wide img{ height: 44px; }
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(3, 1fr); }
  .comments__grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .brand{ min-width:auto; }
  .brand__tag{ display:none; }
  .btn{ padding:10px 12px; }
  .pill{ display:none; }
}
