:root{
  --bg:#070a12;
  --panel:#0e1422;
  --panel2:#0b101b;
  --text:#e9ecf7;
  --muted:#aeb6cc;
  --line: rgba(255,255,255,.10);

  --violet:#7a5cff;
  --violet2:#5136e6;
  --cyan:#4fe1ff;

  --green:#b7ff2a;
  --green2:#8fe600;

  --container: 1180px;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(0,0,0,.60);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html,body{ overflow-x:hidden; }
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 520px at 30% -10%, rgba(122,92,255,.18), transparent 60%),
    radial-gradient(900px 520px at 70% -10%, rgba(79,225,255,.10), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.j3-container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.j3-panel{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Header (privshcool-like) */
.j3-header{
  background: linear-gradient(180deg, #131a2c, #0a0f1a);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.j3-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}
.j3-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 1200;
  letter-spacing:.3px;
}
.j3-brand__logo{ height: 30px; width:auto; }

.j3-auth{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
}
.j3-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 1100;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.j3-btn:hover{ transform: translateY(-1px); filter: brightness(1.06); }

.j3-btn--login{
  background: rgba(122,92,255,.10);
  border-color: rgba(122,92,255,.55);
  color: rgba(255,255,255,.92);
}
.j3-btn--login:hover{ background: rgba(122,92,255,.18); }

.j3-btn--reg{
  background: linear-gradient(180deg, var(--green), var(--green2));
  color: #101410;
  border-color: rgba(0,0,0,.10);
}
.j3-btn--reg:hover{ filter: brightness(1.03); }

/* Icon menu (ref links) */
.j3-icnav{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.10);
}
.j3-iclist{
  list-style:none;
  margin:0;
  padding: 10px 0 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.j3-ic{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.90);
  font-weight: 950;
  transition: background .12s ease, transform .12s ease, border-color .12s ease;
}
.j3-ic:hover{
  transform: translateY(-1px);
  background: rgba(122,92,255,.12);
  border-color: rgba(122,92,255,.22);
}
.j3-ic__ico{
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.j3-ic__ico img{ width: 16px; height: 16px; object-fit: contain; }

/* Main */
.j3-main{ padding: 16px 0 46px; }

/* Hero: slider + sidebar */
.j3-hero{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
}
@media (max-width: 980px){
  .j3-hero{ grid-template-columns: 1fr; }
}

.j3-slider{
  overflow:hidden;
  border-radius: var(--radius);
  position: relative;
  height: fit-content;
}
.j3-track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){ .j3-track{ transition:none; } }

.j3-slide{
  flex: 0 0 100%;
  min-width: 100%;
  padding: 16px;
  min-height: 220px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:center;
}
@media (max-width: 900px){
  .j3-slide{ grid-template-columns: 1fr; }
}
.j3-slide__title{
  margin: 0 0 8px;
  font-weight: 1200;
  font-size: clamp(20px, 2.8vw, 40px);
}
.j3-slide__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-weight: 750;
}
.j3-slide__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 1100;
  background: linear-gradient(180deg, var(--violet), var(--violet2));
  color: #fff;
}
.j3-slide__btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.j3-slide__img{
  width:100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(122,92,255,.18), rgba(79,225,255,.10));
}

.j3-arrow{
  position:relative;
  top: 30px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.j3-arrow:hover{ filter: brightness(1.08); }
.j3-arrow--prev{ left: 10px; }
.j3-arrow--next{ right: -20px; }

.j3-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px 12px;
position: relative;
    top: 40px;
}
.j3-dots{ display:flex; gap: 8px; align-items:center; }
.j3-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.25);
}
.j3-dot.is-active{ background: var(--violet); }
.j3-count{
  font-weight: 900;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

/* Jackpot overlay on slider */
.j3-jack{
  position:absolute;
  right: 14px;
  bottom: 14%;
  display:flex;
  flex-direction: column;
  align-items:flex-end;
  line-height: 1.1;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}
.j3-jack__label{ font-weight: 1200; letter-spacing:.3px; }
.j3-jack__amount{ font-weight: 1200; font-size: 18px; color: rgba(79,225,255,.92); }

/* Payments row under slider */
.j3-payrow{
  display:flex;
  flex-wrap:wrap;
  gap: 16px;
  align-items:center;
  padding: 10px 12px 14px;
  opacity: .9;
  border-top: 1px solid rgba(255,255,255,.08);
}
.j3-payrow img{
  height: 18px;
  width:auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity:.75;
}
.j3-payrow img:hover{ filter: grayscale(0); opacity: 1; }

/* Sidebar */
.j3-side{
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.j3-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}
.j3-card__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 12px;
  font-weight: 1100;
}
.j3-tag{
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(122,92,255,.14);
  border: 1px solid rgba(122,92,255,.22);
  font-size: 12px;
  font-weight: 950;
}
.j3-jlist{
  padding: 10px 12px 12px;
  display:grid;
  gap: 10px;
}
.j3-jrow{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  font-weight: 850;
  color: rgba(255,255,255,.88);
}
.j3-jrow span:first-child{ color: rgba(255,255,255,.70); font-weight: 800; }

.j3-promoimg{
  width:100%;
  height: 170px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(122,92,255,.18), rgba(79,225,255,.10));
}
.j3-promobody{ padding: 12px; }
.j3-promot{ font-weight: 1100; margin:0 0 6px; }
.j3-promos{ color: rgba(255,255,255,.78); font-weight: 700; margin:0 0 10px; }
.j3-promobtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 1100;
  background: linear-gradient(180deg, var(--violet), var(--violet2));
  color:#fff;
}
.j3-promobtn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

/* Slots grid (5x4 target on desktop, responsive) */
.j3-slots{ margin-top: 16px; }
.j3-slots__head{
  padding: 14px 16px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.j3-h2{
  margin:0;
  font-weight: 1200;
  font-size: 20px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.j3-h2::before{
  content:"";
  width: 18px; height: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--violet), var(--violet2));
}

.j3-grid{
  padding: 12px 16px 12px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px){ .j3-grid{ grid-template-columns: repeat(3, 1fr); } .j3-payrow{position: relative;}}
@media (max-width: 620px){ .j3-grid{ grid-template-columns: repeat(2, 1fr); } }

.j3-slot{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.j3-slot__media{
  position:relative;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.04);
}
.j3-slot__img{ width:100%; height:100%; object-fit: cover; }
.j3-slot__fallback{
  width:100%; height:100%;
  background: linear-gradient(135deg, rgba(122,92,255,.16), rgba(79,225,255,.10));
}
.j3-slot__overlay{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  opacity:0;
  transition: opacity .12s ease;
  background: rgba(0,0,0,.62);
}
.j3-slot:hover .j3-slot__overlay{ opacity:1; }
.j3-slot__actions{ display:flex; gap: 10px; flex-wrap: wrap; justify-content:center; padding: 10px; }
.j3-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 1100;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  color: #101410;
}
.j3-pill--play{
  background: linear-gradient(180deg, var(--violet), var(--violet2));
  color:#fff;
  border-color: rgba(0,0,0,.12);
}
.j3-pill:hover{ transform: translateY(-1px); filter: brightness(1.03); }

.j3-slot__title{
  padding: 10px 10px 12px;
  font-weight: 1000;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}

/* Load more */
.j3-morewrap{
  padding: 0 16px 16px;
  display:flex;
  justify-content:center;
}
.j3-morebtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 1100;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.j3-morebtn:hover{ transform: translateY(-1px); filter: brightness(1.06); }
.j3-morebtn:disabled{ opacity:.5; transform:none; }

/* Content */
.j3-content{ margin-top: 16px; }
.j3-content__inner{ padding: 16px; }
.j3-h1{
  margin: 0 0 10px;
  font-weight: 1200;
  font-size: clamp(22px, 3vw, 40px);
}
.j3-wysiwyg{ overflow-x:auto; color: rgba(255,255,255,.90); }
.j3-wysiwyg p{ margin: .75em 0; }
.j3-wysiwyg :where(h2,h3,h4){
  margin: 1em 0 .4em;
  color: rgba(79,225,255,.90);
}
.j3-wysiwyg ul, .j3-wysiwyg ol{ margin: .6em 0 .6em 1.2em; }
.j3-wysiwyg table{
  width:100%;
  border-collapse: collapse;
  margin: 12px 0;
  border-radius: 12px;
  overflow:hidden;
}
.j3-wysiwyg th, .j3-wysiwyg td{
  padding: 10px;
  border: 1px solid rgba(122,92,255,.28);
}
.j3-wysiwyg th{
  background: rgba(122,92,255,.14);
  color:#fff;
}
.j3-wysiwyg img{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}

/* Footer */
.j3-footer{
  margin-top: 22px;
  background: #0a0f1a;
  border-top: 1px solid rgba(255,255,255,.08);
}
.j3-footer__inner{ padding: 18px 0 22px; }

.j3-providers{
  display:flex;
  flex-wrap:wrap;
  gap: 18px;
  align-items:center;
  justify-content:center;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: .9;
}
.j3-providers img{
  height: 36px;
  width:auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity:.75;
}
.j3-providers img:hover{ filter: grayscale(0); opacity: 1; }

.j3-footnav{
  margin-top: 12px;
  display:flex;
  justify-content:center;
}
.j3-footmenu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content:center;
}
.j3-footmenu a{
  color: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 13px;
}
.j3-footmenu a:hover{ text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }

.j3-disc{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align:center;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  line-height: 1.45;
}

/* Mobile tweaks */
@media (max-width: 520px){
  .j3-ic{ width: 100%; justify-content:flex-start; }
}