: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; }

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

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

/* Header like jetcasino.mylovesushi.ru: logo + menu + auth */
.j2-header{
  background: linear-gradient(180deg, #131a2c, #0a0f1a);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.j2-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}
.j2-left{
  display:flex;
  align-items:center;
  gap: 16px;
  min-width: 0;
}
.j2-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 1200;
  letter-spacing:.3px;
  white-space: nowrap;
}
.j2-brand__logo{ height: 30px; width:auto; }

.j2-nav{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.j2-burger{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.j2-burger:hover{ filter: brightness(1.06); }

.j2-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}
.j2-menu a{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 950;
  color: rgba(255,255,255,.90);
  transition: background .12s ease, transform .12s ease;
}
.j2-menu a:hover{ background: rgba(255,255,255,.06); transform: translateY(-1px); }
.j2-menu .current-menu-item > a,
.j2-menu .current_page_item > a{
  background: rgba(122,92,255,.14);
  border: 1px solid rgba(122,92,255,.22);
}

.j2-auth{ display:flex; align-items:center; gap: 10px; white-space: nowrap; }
.j2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 14px;
  border-radius: 12px;
  font-weight: 1100;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.j2-btn:hover{ transform: translateY(-1px); filter: brightness(1.06); }
.j2-btn--login{
  background: rgba(122,92,255,.10);
  border-color: rgba(122,92,255,.55);
  color: rgba(255,255,255,.92);
}
.j2-btn--login:hover{ background: rgba(122,92,255,.18); }
.j2-btn--reg{
  background: linear-gradient(180deg, var(--violet), var(--violet2));
  color:#fff;
  border-color: rgba(0,0,0,.12);
}
.j2-btn--reg:hover{ filter: brightness(1.05); }

/* Mobile header */
@media (max-width: 980px){
  .j2-burger{ display:inline-flex; align-items:center; justify-content:center; }
  .j2-menu{
    display:none;
    width:100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }
  .j2-nav.is-open .j2-menu{ display:flex; }
  .j2-top{ align-items:flex-start; }
  .j2-left{ flex-wrap: wrap; }
}

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

/* Hero slider with jackpot on right inside controls row */
.j2-hero{ overflow:hidden; border-radius: var(--radius); }
.j2-track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){ .j2-track{ transition:none; } }

.j2-slide{
  flex: 0 0 100%;
  min-width: 100%;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  padding: 16px;
  align-items:center;
  min-height: 220px;
}
@media (max-width: 900px){
  .j2-slide{ grid-template-columns: 1fr; }
}
.j2-slide__title{
  margin: 0 0 8px;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 40px);
}
.j2-slide__text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-weight: 750;
}
.j2-cta{
  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;
}
.j2-cta:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.j2-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));
}

.j2-slidernav{
  position:absolute;
  inset: 0;
  pointer-events:none;
}
.j2-arrow{
  pointer-events:auto;
  position:absolute;
  top: 50%;
  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;
}
.j2-arrow:hover{ filter: brightness(1.08); }
.j2-arrow--prev{ left: 10px; }
.j2-arrow--next{ right: 10px; }

.j2-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px 12px;
}
.j2-dots{ display:flex; gap: 8px; align-items:center; }
.j2-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.25);
}
.j2-dot.is-active{ background: var(--violet); }
.j2-jack{
  display:flex;
  flex-direction: column;
  align-items:flex-end;
  line-height: 1.1;
}
.j2-jack__label{ font-weight: 1200; letter-spacing:.3px; }
.j2-jack__amount{ font-weight: 1200; font-size: 18px; color: rgba(79,225,255,.92); }

/* Trending row (horizontal scroll like casino) */
.j2-trend{ margin-top: 16px; }
.j2-blockhead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 16px 10px;
}
.j2-h2{
  margin:0;
  font-weight: 1200;
  font-size: 20px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.j2-h2::before{
  content:"";
  width: 18px; height: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--violet), var(--violet2));
}

.j2-trendwrap{
  position: relative;
  padding: 0 16px 16px;
}
.j2-row{
  display:flex;
  gap: 12px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.j2-row::-webkit-scrollbar{ height: 8px; }
.j2-row::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius: 999px; }

.j2-tcard{
  flex: 0 0 320px;
  max-width: 320px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
@media (max-width: 520px){
  .j2-tcard{ flex-basis: 260px; max-width: 260px; }
}
.j2-tcard__media{
  position:relative;
  height: 160px;
  background: rgba(255,255,255,.04);
}
.j2-tcard__img{ width:100%; height:100%; object-fit: cover; }
.j2-tcard__fallback{
  width:100%; height:100%;
  background: linear-gradient(135deg, rgba(122,92,255,.16), rgba(79,225,255,.10));
}
.j2-tbadge{
  position:absolute;
  left: 10px; top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.70);
  color:#fff;
  font-weight: 1000;
  font-size: 12px;
}
.j2-tcard__body{
  padding: 10px 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.j2-tcard__title{
  font-weight: 1000;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.j2-playbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet), var(--violet2));
  border: 1px solid rgba(0,0,0,.12);
  color:#fff;
}
.j2-playbtn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.j2-playbtn svg{ width: 14px; height: 14px; }

.j2-rowbtn{
  position:absolute;
  top: 50%;
  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;
}
.j2-rowbtn:hover{ filter: brightness(1.08); }
.j2-rowbtn--prev{ left: 6px; }
.j2-rowbtn--next{ right: 6px; }
@media (max-width: 900px){
  .j2-rowbtn{ display:none; } /* swipe on mobile */
}

/* Popular slots grid */
.j2-pop{ margin-top: 16px; }
.j2-pophead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 16px 0;
}
.j2-more{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 1000;
  color: rgba(122,92,255,.92);
}
.j2-more:hover{ text-decoration: underline; text-decoration-color: rgba(122,92,255,.35); }

.j2-grid{
  padding: 12px 16px 16px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1100px){ .j2-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 780px){ .j2-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){ .j2-grid{ grid-template-columns: repeat(2, 1fr); } }

.j2-slot{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.j2-slot__media{
  position:relative;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.04);
}
.j2-slot__img{ width:100%; height:100%; object-fit: cover; }
.j2-slot__fallback{
  width:100%; height:100%;
  background: linear-gradient(135deg, rgba(122,92,255,.16), rgba(79,225,255,.10));
}
.j2-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);
}
.j2-slot:hover .j2-slot__overlay{ opacity:1; }
.j2-slot__actions{ display:flex; gap: 10px; flex-wrap: wrap; justify-content:center; padding: 10px; }
.j2-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;
}
.j2-pill--play{
  background: linear-gradient(180deg, var(--violet), var(--violet2));
  color:#fff;
  border-color: rgba(0,0,0,.12);
}
.j2-pill:hover{ transform: translateY(-1px); filter: brightness(1.03); }

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

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

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

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

.j2-socials{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
}
.j2-social{
  width: 60px; height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
}
.j2-social:hover{ filter: brightness(1.08); transform: translateY(-1px); }
.j2-social img{ width: 34px; height: 34px; object-fit: contain; }

.j2-badges{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 16px;
  align-items:center;
  justify-content:center;
  opacity: .9;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.j2-badges img{
  height: 50px;
  width: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
}
.j2-badges img:hover{ filter: grayscale(0); opacity: 1; }

.j2-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;
}