/* RESET */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body,h1,h2,h3,h4,p,ul,ol,figure,blockquote,dl,dd{margin:0}
ul,ol{padding:0;list-style:none}
img,svg,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
table{border-collapse:collapse;width:100%}

/* GLOBAL OVERFLOW GUARD */
html,body{overflow-x:hidden;max-width:100%}

/* TYPOGRAPHY */
body{
  font-family:"Inter","Segoe UI",system-ui,-apple-system,Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--oj-text);
  background:var(--oj-bg);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:800;
  line-height:1.15;
  color:var(--oj-purple-deep);
  font-style:normal;
  letter-spacing:-.02em;
}
h1{font-size:clamp(28px,4.4vw,52px)}
h2{font-size:clamp(22px,2.8vw,34px);margin:44px 0 14px}
h3{font-size:18px;margin:20px 0 8px}
p{margin:0 0 14px}
h1,h2,h3,p,li,blockquote,td,th{overflow-wrap:anywhere;word-break:break-word}
a{transition:color .15s ease,opacity .15s ease}
a:hover{color:var(--oj-purple)}

/* ROOT */
:root{
  --oj-bg:#f6f3fb;
  --oj-surface:#ffffff;
  --oj-surface-alt:#faf7ff;
  --oj-text:#2d2540;
  --oj-text-muted:#6b6580;
  --oj-purple:#7b2cbf;
  --oj-purple-2:#9a3edd;
  --oj-purple-deep:#3a1565;
  --oj-purple-ink:#ffffff;
  --oj-navy:#1a1f4f;
  --oj-dark:#0d1226;
  --oj-yellow:#ffd000;
  --oj-yellow-2:#ffdf3a;
  --oj-yellow-ink:#1a1f4f;
  --oj-green:#00a651;
  --oj-green-2:#00c060;
  --oj-pink:#ff5eb5;
  --oj-border:#e7e1f3;
  --oj-border-strong:#d4cce8;
  --oj-danger:#e23b5a;
  --oj-radius:14px;
  --oj-radius-sm:8px;
  --oj-radius-lg:20px;
  --oj-shadow:0 8px 24px rgba(58,21,101,.08);
  --oj-shadow-strong:0 16px 40px rgba(123,44,191,.22);
  --oj-container:1240px;
}

/* PAGE BACKGROUND */
body{
  background:
    radial-gradient(700px 380px at 90% -10%,rgba(255,208,0,.07) 0%,rgba(255,208,0,0) 60%),
    radial-gradient(620px 320px at -10% 30%,rgba(123,44,191,.10) 0%,rgba(123,44,191,0) 60%),
    #f7f4fd;
  background-attachment:fixed;
}

.oj-container{
  max-width:var(--oj-container);
  margin-inline:auto;
  padding-inline:16px;
}
@media (min-width:760px){
  .oj-container{padding-inline:20px}
}
.oj-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* HEADER */
.oj-topbar{display:none}
.oj-header{
  position:sticky;top:0;z-index:50;
  background:#7b2cbf;
  overflow:visible;
}
.oj-header::after{content:none}
.oj-header__inner{
  display:flex;align-items:center;gap:12px;height:72px;
  flex-wrap:nowrap;min-width:0;position:relative;
}
.oj-header__logo{
  flex-shrink:0;display:flex;align-items:center;min-width:0;
  overflow:visible;
}
.oj-header__logo img{
  height:38px;width:auto;max-width:140px;
  object-fit:contain;
}
@media (min-width:760px){
  .oj-header__logo img{height:44px;max-width:none}
  .oj-header__inner{gap:24px}
}
.oj-header__search{display:none}
.oj-header__nav{
  display:none;flex:1;align-items:center;justify-content:center;gap:24px;
}
.oj-header__nav a{
  color:rgba(255,255,255,.85);font-size:14px;font-weight:600;
  position:relative;padding:6px 2px;white-space:nowrap;
}
.oj-header__nav a::after{
  content:"";position:absolute;left:50%;bottom:-2px;width:0;height:2px;
  background:var(--oj-yellow);transition:width .2s ease,left .2s ease;
}
.oj-header__nav a:hover{color:#fff}
.oj-header__nav a:hover::after{left:0;width:100%}
@media (min-width:1024px){
  .oj-header__nav{display:flex}
}
.oj-header__actions{
  display:flex;align-items:center;gap:8px;margin-left:auto;flex-shrink:0;
}
.oj-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:8px 12px;border-radius:8px;font-weight:800;font-size:12px;line-height:1;
  letter-spacing:.02em;text-transform:uppercase;
  transition:background .15s ease,border-color .15s ease,opacity .15s;
  max-width:100%;
}
@media (min-width:760px){
  .oj-btn{padding:11px 22px;font-size:14px;letter-spacing:.04em}
}
.oj-btn--login{
  background:transparent;color:#fff;
  border:1px solid rgba(255,255,255,.28);border-radius:999px;
  padding:8px 14px;
}
.oj-btn--login:hover{border-color:rgba(255,255,255,.6);color:#fff}
.oj-btn--register{
  background:var(--oj-yellow);color:var(--oj-yellow-ink);
  border:1px solid var(--oj-yellow);border-radius:999px;
  padding:9px 18px;
}
.oj-btn--register:hover{background:var(--oj-yellow-2);color:var(--oj-yellow-ink)}
.oj-btn--lg{padding:14px 28px;font-size:15px;border-radius:999px}
.oj-btn--ghost{background:transparent;border:2px solid currentColor;color:#fff;border-radius:999px}
.oj-btn--ghost:hover{background:rgba(255,255,255,.08)}
@media (max-width:479px){
  .oj-header__actions .oj-btn--login{display:none}
}

/* BURGER */
.oj-burger{
  display:flex;align-items:center;justify-content:center;
  color:#fff;flex-shrink:0;padding:6px;
}
@media (min-width:1024px){.oj-burger{display:none}}

/* SUBNAV */
.oj-subnav{
  background:#fff;
  border-bottom:1px solid #e8e0f0;
  position:sticky;top:72px;z-index:45;
}
.oj-subnav__inner{
  display:flex;align-items:center;gap:0;
  overflow-x:auto;scrollbar-width:none;
  -ms-overflow-style:none;
}
.oj-subnav__inner::-webkit-scrollbar{display:none}
.oj-subnav__inner a{
  display:flex;align-items:center;gap:6px;
  padding:14px 16px;font-size:13px;font-weight:700;
  color:#5a4a7a;white-space:nowrap;
  position:relative;border-bottom:3px solid transparent;
  transition:color .15s,border-color .15s;
}
.oj-subnav__inner a svg{width:18px;height:18px;flex-shrink:0;color:#7b2cbf}
.oj-subnav__inner a:hover{color:#7b2cbf;border-bottom-color:rgba(123,44,191,.3)}
.oj-subnav__inner a.is-active{color:#7b2cbf;border-bottom-color:var(--oj-yellow)}

/* MOBILE MENU OVERLAY */
.oj-menu-overlay{
  display:none;position:fixed;inset:0;z-index:100;
  background:#0d1226;
  flex-direction:column;overflow-y:auto;
}
.oj-menu-overlay.is-open{display:flex}
.oj-menu-overlay__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 20px 16px;border-bottom:1px solid rgba(255,255,255,.08);
}
.oj-menu-overlay__close{color:#fff;padding:6px}
.oj-menu-overlay__nav{padding:20px;display:flex;flex-direction:column;gap:4px;flex:1}
.oj-menu-overlay__nav a{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;border-radius:10px;
  color:#cfd2e8;font-weight:600;font-size:15px;
  transition:background .15s,color .15s;
}
.oj-menu-overlay__nav a:hover{background:rgba(255,208,0,.1);color:var(--oj-yellow)}
.oj-menu-overlay__foot{
  padding:20px;border-top:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:10px;
}
.oj-menu-overlay__foot .oj-btn{width:100%;justify-content:center;padding:14px}

/* HERO */
.oj-hero{
  background:linear-gradient(135deg,#3d1484 0%,#7b2cbf 45%,#4a1fad 100%);
  position:relative;overflow:hidden;
  padding:64px 0 72px;
}
.oj-hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(600px 400px at 80% 50%,rgba(255,208,0,.07) 0%,transparent 60%),
    radial-gradient(500px 300px at 10% 30%,rgba(123,44,191,.12) 0%,transparent 60%);
  pointer-events:none;
}
.oj-hero__inner{
  position:relative;z-index:1;
  max-width:720px;display:flex;flex-direction:column;gap:20px;
  min-width:0;
}
.oj-hero__eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,208,0,.12);color:var(--oj-yellow);
  padding:6px 14px;border-radius:999px;
  font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  width:fit-content;
}
.oj-hero h1{
  color:#fff;font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
}
.oj-hero h1 span{color:var(--oj-yellow)}
.oj-hero__lead{
  color:#c8c5e0;font-size:18px;line-height:1.65;
  max-width:600px;
}
.oj-hero__ctas{
  display:flex;flex-wrap:wrap;gap:12px;align-items:center;
}
.oj-hero__meta{
  display:flex;flex-wrap:wrap;gap:8px 16px;
  margin-top:4px;
}
.oj-hero__meta span{
  color:#a09dc0;font-size:13px;font-weight:500;
  display:flex;align-items:center;gap:6px;
}
.oj-hero__meta span::before{
  content:"✓";color:var(--oj-green);font-weight:900;
}
@media (max-width:639px){
  .oj-hero{padding:44px 0 52px}
  .oj-hero h1{font-size:clamp(24px,8vw,36px)}
  .oj-hero__lead{font-size:16px}
  .oj-hero__ctas .oj-btn{width:100%;text-align:center}
}

/* BREADCRUMBS */
.oj-breadcrumbs{
  padding:14px 0;
  font-size:13px;color:var(--oj-text-muted);
}
.oj-breadcrumbs ol{display:flex;flex-wrap:wrap;gap:4px;align-items:center;list-style:none}
.oj-breadcrumbs li+li::before{content:"/";margin-right:4px;opacity:.5}
.oj-breadcrumbs a{color:var(--oj-purple);text-decoration:underline;text-decoration-thickness:1px}
.oj-breadcrumbs a:hover{color:var(--oj-purple-2)}
.oj-breadcrumbs [aria-current]{color:var(--oj-text);font-weight:600}

/* SECTION / CONTENT */
.oj-section{padding:40px 0}
.oj-section--alt{background:var(--oj-surface)}
.content h2{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:800;
}
.content ul{
  list-style:disc;padding-left:20px;
  display:flex;flex-direction:column;gap:8px;
  margin-bottom:16px;
}
.content ul li{color:var(--oj-text)}
.content blockquote{
  border-left:4px solid var(--oj-purple);
  padding:16px 20px;
  background:var(--oj-surface);
  border-radius:0 var(--oj-radius-sm) var(--oj-radius-sm) 0;
  font-style:italic;color:var(--oj-text-muted);
  margin:24px 0;
}
.content table{
  width:100%;border-radius:var(--oj-radius-sm);
  overflow:hidden;margin:20px 0;
}
.content table thead{background:var(--oj-purple);color:#fff}
.content table th,.content table td{padding:12px 16px;text-align:left;font-size:14px}
.content table tbody tr:nth-child(even){background:var(--oj-surface-alt)}
.content table tbody tr:hover{background:rgba(123,44,191,.05)}
.content img{
  display:block;max-width:720px;width:100%;height:auto;
  max-height:480px;object-fit:contain;
  margin:24px auto;border-radius:var(--oj-radius);
}

/* CONTENT IMAGES */
article img,section.content img,main p img{
  display:block;max-width:720px;width:100%;height:auto;
  max-height:480px;object-fit:contain;
  margin:24px auto;border-radius:var(--oj-radius,12px);
}
.hero img,.banner img,img.banner{
  max-width:100%;max-height:560px;object-fit:cover;
  width:100%;height:auto;display:block;
}
header img{max-height:48px;width:auto;object-fit:contain}
.author img{width:96px;height:96px;border-radius:50%;object-fit:cover}
footer img[src*="img_listing_casinos"]{max-height:28px;width:auto;object-fit:contain}
@media (max-width:768px){
  article img,section.content img,main p img{max-height:320px}
  .hero img,.banner img{max-height:360px}
}

/* TRUST STRIP */
.oj-trust{
  background:var(--oj-surface);
  border-top:1px solid var(--oj-border);
  border-bottom:1px solid var(--oj-border);
  padding:18px 0;
}
.oj-trust__inner{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;
  gap:16px 28px;
}
.oj-trust__item{
  display:flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;color:var(--oj-text-muted);
}
.oj-trust__item svg{width:18px;height:18px;color:var(--oj-green);flex-shrink:0}

/* ────────────────────────────────
   OFFERS LISTING (VARIANT 2 — VERTICAL)
   ──────────────────────────────── */
.oj-offers{padding:44px 0}
.oj-offers h2{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:800;margin-bottom:24px;
  font-size:clamp(20px,2.4vw,28px)!important;
}
.oj-offers__grid{
  display:flex;flex-direction:column;
  gap:16px;
  max-width:780px;margin:0 auto;
}
.oj-offers__card{
  background:var(--oj-surface);
  border:1px solid var(--oj-border);
  border-radius:var(--oj-radius-lg);
  overflow:hidden;
  position:relative;
  display:flex;flex-direction:column;
  box-shadow:var(--oj-shadow);
  transition:box-shadow .2s,border-color .2s;
}
.oj-offers__card:hover{
  box-shadow:var(--oj-shadow-strong);
  border-color:var(--oj-purple-2);
}
.oj-offers__card--top{
  border-color:var(--oj-yellow);
  box-shadow:0 0 0 2px var(--oj-yellow),var(--oj-shadow-strong);
}
.oj-offers__overlay-link{
  position:absolute;inset:0;z-index:1;
  font-size:0;color:transparent;
}
.oj-offers__ribbon{
  position:absolute;top:14px;right:14px;z-index:2;
  background:var(--oj-yellow);color:var(--oj-yellow-ink);
  font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
  padding:4px 10px;border-radius:999px;
  pointer-events:none;
}
.oj-offers__card>*:not(.oj-offers__overlay-link){
  position:relative;z-index:2;
  pointer-events:none;
}
.oj-offers__card .oj-offers__overlay-link,
.oj-offers__card .oj-offers__review-link{
  pointer-events:auto;cursor:pointer;
}
.oj-offers__card .oj-offers__review-link{
  position:relative;z-index:3;
}
.oj-offers__card>*{pointer-events:none}
.oj-offers__card .oj-offers__overlay-link,.oj-offers__card .oj-offers__review-link{pointer-events:auto;cursor:pointer}
.oj-offers__top{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:12px;
  padding:16px 16px 0;
  align-items:start;
}
.oj-offers__logo{
  width:64px;height:64px;
  border-radius:var(--oj-radius-sm);
  overflow:hidden;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--oj-surface-alt);
  border:1px solid var(--oj-border);
}
.oj-offers__logo img{
  width:64px;height:64px;object-fit:contain;
  display:block;
}
.oj-offers__meta{
  display:flex;flex-direction:column;gap:4px;
}
.oj-offers__name{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:800;font-size:16px;color:var(--oj-purple-deep);
  line-height:1.2;
}
.oj-offers__tags{
  display:flex;flex-wrap:wrap;gap:6px;
}
.oj-offers__tag{
  font-size:11px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  padding:3px 8px;border-radius:999px;
  background:rgba(123,44,191,.1);color:var(--oj-purple);
}
.oj-offers__tag--top{background:rgba(255,208,0,.15);color:#8a6500}
.oj-offers__stars{
  display:flex;align-items:center;gap:5px;
  font-size:13px;font-weight:700;color:var(--oj-yellow-ink);
}
.oj-offers__stars-val{
  display:flex;gap:2px;
}
.oj-offers__stars-val span{
  color:var(--oj-yellow);font-size:14px;
}
.oj-offers__bonus{
  padding:12px 16px;
  border-top:1px solid var(--oj-border);
  font-weight:800;font-size:16px;color:var(--oj-green);
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
}
.oj-offers__bonus small{
  display:block;font-size:12px;font-weight:500;
  color:var(--oj-text-muted);margin-top:2px;
}
.oj-offers__usps{
  padding:0 16px 12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}
@media (max-width:639px){
  .oj-offers__usps{grid-template-columns:1fr}
}
.oj-offers__usp{
  display:flex;align-items:flex-start;gap:7px;
  font-size:13px;color:var(--oj-text);
}
.oj-offers__usp::before{
  content:"✓";color:var(--oj-green);font-weight:900;
  flex-shrink:0;margin-top:1px;
}
.oj-offers__social{
  padding:0 16px 12px;
  display:flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;color:var(--oj-text-muted);
}
.oj-offers__social-fire{font-size:16px}
.oj-offers__timer{
  padding:0 16px 12px;
  font-size:12px;color:var(--oj-text-muted);
}
.oj-offers__timer-count{
  display:inline-flex;align-items:center;gap:4px;
  background:var(--oj-surface-alt);
  border:1px solid var(--oj-border);
  border-radius:6px;padding:4px 10px;
  font-weight:800;font-size:16px;color:var(--oj-purple-deep);
  font-family:monospace;
  margin-top:4px;
}
.oj-offers__timer-count span{color:var(--oj-purple)}
.oj-offers__cta-row{
  padding:12px 16px;
  border-top:1px solid var(--oj-border);
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.oj-offers__cta{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;padding:12px 22px;
  background:var(--oj-yellow);color:var(--oj-yellow-ink);
  border-radius:999px;font-weight:900;font-size:13px;
  letter-spacing:.04em;text-transform:uppercase;
  white-space:nowrap;
}
.oj-offers__review-link{
  font-size:13px;font-weight:600;color:var(--oj-purple);
  text-decoration:underline;text-decoration-thickness:1px;
  white-space:nowrap;
}
.oj-offers__review-link:hover{color:var(--oj-purple-2)}
.oj-offers__urgency{
  padding:8px 16px 14px;
  font-size:11px;color:var(--oj-text-muted);
  font-style:italic;
}
.oj-offers__aggregate{
  text-align:center;
  margin-top:20px;
  font-size:14px;color:var(--oj-text-muted);
  max-width:780px;margin-inline:auto;
}

/* ────────────────────────────────
   SLOTS LISTING (VARIANT 2 — 12 cards, 2/3/6 grid)
   ──────────────────────────────── */
.oj-slots{padding:44px 0}
.oj-slots h2{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:800;margin-bottom:24px;
  font-size:clamp(20px,2.4vw,28px)!important;
}
.oj-slots__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (min-width:640px){
  .oj-slots__grid{grid-template-columns:repeat(3,1fr);gap:14px}
}
@media (min-width:1024px){
  .oj-slots__grid{grid-template-columns:repeat(6,1fr);gap:14px}
}
.oj-slots__grid>div{
  position:relative;
  aspect-ratio:3/4;
  border-radius:var(--oj-radius);
  overflow:hidden;
  border:1px solid var(--oj-border);
  background:var(--oj-navy);
}
.oj-slots__grid>div:hover{border-color:var(--oj-purple-2);box-shadow:var(--oj-shadow-strong)}
.oj-slots__tile{
  position:absolute;inset:0;display:block;
  width:100%;height:100%;border:0;background:transparent;
  aspect-ratio:auto;border-radius:0;
}
.oj-slots__tile img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;border-radius:0;
  display:block;margin:0;
}
.oj-slots__top-row{
  position:absolute;top:6px;left:6px;right:6px;z-index:2;
  display:flex;justify-content:space-between;align-items:flex-start;
  pointer-events:none;
}
.oj-slots__meta-row{
  position:absolute;bottom:0;left:0;right:0;z-index:2;
  background:linear-gradient(transparent,rgba(13,18,38,.92));
  padding:24px 8px 8px;
  pointer-events:none;
}
.oj-slots__overlay{
  position:absolute;inset:0;z-index:3;
  background:rgba(13,18,38,.6);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:6px;opacity:0;transition:opacity .2s;
  pointer-events:none;
}
.oj-slots__grid>div:hover .oj-slots__overlay{opacity:1}
.oj-slots__play-icon{
  position:absolute;top:50%;left:50%;z-index:4;
  transform:translate(-50%,-50%);
  width:36px;height:36px;
  background:rgba(255,208,0,.9);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .2s;
  pointer-events:none;
}
.oj-slots__grid>div:hover .oj-slots__play-icon{opacity:1}
.oj-slots__play-icon svg{width:16px;height:16px;color:#1a1f4f}
.oj-slots__hot{
  background:var(--oj-danger);color:#fff;
  font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
  padding:2px 7px;border-radius:999px;
  pointer-events:none;
}
.oj-slots__rtp{
  background:rgba(0,166,81,.85);color:#fff;
  font-size:9px;font-weight:700;padding:2px 6px;border-radius:4px;
  pointer-events:none;
}
.oj-slots__name{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:700;font-size:11px;color:#fff;
  display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.oj-slots__badge{
  font-size:10px;color:#c8c5e0;display:block;margin-top:2px;
}
.oj-slots__more{
  display:block;text-align:center;
  margin-top:24px;
  font-size:14px;font-weight:700;color:var(--oj-purple);
  text-decoration:underline;
}

/* AUTHOR BLOCK */
.oj-author{
  background:var(--oj-surface);
  border:1px solid var(--oj-border);
  border-radius:var(--oj-radius-lg);
  padding:28px;
  display:flex;gap:20px;
  align-items:flex-start;
  margin:32px auto;max-width:780px;
}
@media (max-width:540px){
  .oj-author{flex-direction:column;align-items:center;text-align:center}
}
.oj-author__photo{
  width:88px;height:88px;border-radius:50%;object-fit:cover;
  flex-shrink:0;border:3px solid var(--oj-purple);
}
.oj-author__body{flex:1;min-width:0}
.oj-author__name{
  font-family:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
  font-weight:800;font-size:17px;color:var(--oj-purple-deep);
  text-decoration:none;
}
a.oj-author__name:hover{text-decoration:underline;color:#7b2cbf}
.oj-author__role{
  font-size:13px;color:var(--oj-text-muted);font-weight:600;
  margin:3px 0 10px;
}
.oj-author__bio{font-size:14px;color:var(--oj-text);margin:0 0 12px}
.oj-author__badges{display:flex;flex-wrap:wrap;gap:8px}
.oj-author__badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:999px;
  font-size:11px;font-weight:700;letter-spacing:.04em;
  background:rgba(0,166,81,.1);color:var(--oj-green);
  border:1px solid rgba(0,166,81,.25);
}

/* FAQ */
.oj-faq{padding:40px 0;max-width:780px;margin:0 auto}
.oj-faq h2{margin-bottom:20px}
.oj-faq details{
  border:1px solid var(--oj-border);
  border-radius:var(--oj-radius-sm);
  margin-bottom:8px;
  background:var(--oj-surface);
  overflow:hidden;
}
.oj-faq summary{
  padding:16px 20px;cursor:pointer;
  font-weight:700;font-size:15px;color:var(--oj-purple-deep);
  list-style:none;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
}
.oj-faq summary::-webkit-details-marker{display:none}
.oj-faq summary::after{
  content:"＋";font-size:18px;color:var(--oj-purple);flex-shrink:0;
  transition:transform .2s;
}
.oj-faq details[open]>summary::after{transform:rotate(45deg)}
.oj-faq__ans{
  padding:0 20px 18px;
  font-size:14px;color:var(--oj-text);line-height:1.65;
}

/* RELATED LINKS */
.oj-related{
  padding:24px 0;border-top:1px solid var(--oj-border);
  margin-top:24px;
}
.oj-related h3{margin-bottom:12px;font-size:15px;color:var(--oj-text-muted)}
.oj-related__list{
  display:flex;flex-wrap:wrap;gap:8px;
}
.oj-related__list a{
  padding:7px 14px;border-radius:999px;font-size:13px;font-weight:600;
  background:rgba(123,44,191,.08);color:var(--oj-purple);
  border:1px solid rgba(123,44,191,.2);
  transition:background .15s;
}
.oj-related__list a:hover{background:rgba(123,44,191,.16)}

/* MOBILE FAB */
.oj-fab{
  position:fixed;left:14px;right:14px;bottom:14px;
  z-index:60;display:none;
}
@media (max-width:1023px){.oj-fab{display:block}}
.oj-fab__btn{
  display:flex;align-items:center;justify-content:center;
  gap:8px;width:100%;padding:16px;border-radius:999px;
  background:var(--oj-yellow);color:var(--oj-yellow-ink);
  font-weight:900;font-size:15px;text-transform:uppercase;
  letter-spacing:.04em;
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  text-decoration:none;
  transition:background .15s;
}
.oj-fab__btn:hover{background:var(--oj-yellow-2);color:var(--oj-yellow-ink)}
.oj-fab__btn svg{width:16px;height:16px;flex-shrink:0}
@media (max-width:1023px){
  .oj-foot{padding-bottom:84px}
}

/* ────────────────────────────────
   FOOTER — FLAT 3-STRIP (VARIANT 2)
   Classes: oj-foot__* (NOT oj-footer__*)
   ──────────────────────────────── */
.oj-foot{
  background:#100627;
  color:#a09dc0;
  padding-top:0;
  font-size:14px;
  margin-top:40px;
}
.oj-foot__zone1{
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:28px 0;
}
.oj-foot__zone1-inner{
  display:flex;flex-wrap:wrap;
  align-items:center;
  gap:16px 24px;
  justify-content:space-between;
}
.oj-foot__logo{
  display:flex;align-items:center;gap:12px;overflow:visible;flex-shrink:0;
}
.oj-foot__logo img{
  height:38px;width:auto;object-fit:contain;
  overflow:visible;
}
.oj-foot__tagline{
  font-size:13px;color:#7a78a0;
  max-width:280px;
  flex:1;
}
.oj-foot__newsletter{
  display:flex;align-items:center;gap:0;
  flex-shrink:0;
}
.oj-foot__newsletter input{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-right:0;
  border-radius:999px 0 0 999px;
  padding:10px 16px;
  font:inherit;font-size:13px;
  color:#fff;
  outline:none;
  width:200px;
}
.oj-foot__newsletter input::placeholder{color:#6b6890}
.oj-foot__newsletter button{
  background:var(--oj-yellow);color:var(--oj-yellow-ink);
  border:1px solid var(--oj-yellow);
  border-radius:0 999px 999px 0;
  padding:10px 16px;font-weight:900;cursor:pointer;
  display:flex;align-items:center;
}
.oj-foot__newsletter button svg{width:16px;height:16px}
.oj-foot__socials{display:flex;align-items:center;gap:12px;margin-left:auto;flex-shrink:0}
.oj-foot__socials a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;transition:background .15s}
.oj-foot__socials a:hover{background:rgba(255,208,0,.25)}
@media (max-width:639px){.oj-foot__socials{margin-left:0}}
@media (max-width:639px){
  .oj-foot__zone1-inner{flex-direction:column;align-items:flex-start}
  .oj-foot__newsletter input{width:160px}
  .oj-foot__tagline{max-width:100%}
}

.oj-foot__zone2{
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:20px 0;
}
.oj-foot__links{
  display:flex;flex-wrap:wrap;
  gap:6px;
  align-items:baseline;
  line-height:1.8;
}
.oj-foot__links-cat{
  font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:var(--oj-yellow);margin-right:2px;
}
.oj-foot__links a{
  font-size:13px;color:#a09dc0;
  transition:color .15s;
}
.oj-foot__links a:hover{color:#fff}
.oj-foot__sep{
  color:rgba(255,255,255,.18);margin:0 4px;
  pointer-events:none;user-select:none;
}

.oj-foot__zone3{
  padding:24px 0 28px;
}
.oj-foot__zone3-inner{
  display:flex;flex-direction:column;gap:16px;
}
.oj-foot__pays{
  display:flex;flex-wrap:wrap;align-items:center;gap:8px 12px;
}
.oj-foot__pays img{
  height:24px;width:auto;object-fit:contain;
  filter:brightness(.7);
  transition:filter .15s;
}
.oj-foot__pays img:hover{filter:brightness(1)}
.oj-foot__rg{
  font-size:12px;color:#6b6890;line-height:1.6;
  max-width:720px;
}
.oj-foot__rg strong{color:#a09dc0}
.oj-foot__rg a{color:#a09dc0;text-decoration:underline;text-decoration-thickness:1px}
.oj-foot__rg a:hover{color:#fff}
.oj-foot__bottom{
  display:flex;flex-wrap:wrap;align-items:center;
  gap:6px 10px;
  font-size:12px;color:#5a5880;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:14px;
}
.oj-foot__bottom a{color:#6b6890;transition:color .15s}
.oj-foot__bottom a:hover{color:#fff}
.oj-foot__bottom-sep{color:rgba(255,255,255,.15);margin:0 3px}

/* SITEMAP PAGE */
.oj-sitemap{padding:40px 0}
.oj-sitemap h1{margin-bottom:8px}
.oj-sitemap__lead{font-size:16px;color:var(--oj-text-muted);margin-bottom:36px}
.oj-sitemap__group{margin-bottom:36px}
.oj-sitemap__group h2{
  font-size:16px!important;font-weight:800;margin:0 0 14px;
  text-transform:uppercase;letter-spacing:.06em;
  color:var(--oj-purple);
}
.oj-sitemap__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:10px;
}
.oj-sitemap__card{
  background:var(--oj-surface);
  border:1px solid var(--oj-border);
  border-radius:var(--oj-radius-sm);
  padding:14px 16px;
  transition:border-color .15s,box-shadow .15s;
}
.oj-sitemap__card:hover{
  border-color:var(--oj-purple-2);
  box-shadow:0 4px 12px rgba(123,44,191,.12);
}
.oj-sitemap__card a{
  font-weight:700;font-size:14px;color:var(--oj-purple);display:block;margin-bottom:4px;
}
.oj-sitemap__card a:hover{color:var(--oj-purple-2)}
.oj-sitemap__card p{font-size:12px;color:var(--oj-text-muted);margin:0}

/* MEDIA QUERIES */
@media (max-width:599px){
  .oj-foot{font-size:13px}
}
