:root {
  --bg: #0b0208;
  --bg-deep: #14020d;
  --panel: #200512;
  --panel-2: #2a0618;
  --panel-3: #3a0820;
  --line: rgba(255, 48, 86, 0.46);
  --line-hot: #ff2f55;
  --text: #fff7f7;
  --muted: #d9a9ba;
  --gold: #ffb000;
  --orange: #ff7a00;
  --red: #ff174d;
  --pink: #ff2f8b;
  --green: #17d67a;
  --purple: #7d40ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 47, 139, 0.22), transparent 24rem),
    radial-gradient(circle at 86% 4%, rgba(255, 122, 0, 0.18), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(125, 64, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, #0d0209 0%, #12020b 48%, #070104 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0, transparent 70%);
}

a { color: #ffcf39; text-decoration-thickness: 0.1em; text-underline-offset: 0.18em; }
img { max-width: 100%; display: block; }
code {
  color: #170207;
  background: linear-gradient(135deg, #ffcf39, #ff7a00);
  border-radius: 0.45rem;
  padding: 0.08rem 0.32rem;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--gold);
  color: #130208;
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 47, 85, 0.35);
  background: rgba(10, 1, 7, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: white;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.brand span:last-child {
  color: var(--red);
  text-shadow: 0 0 24px rgba(255, 23, 77, .5);
}
.logo-mark {
  width: 3rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: .45rem;
  color: white;
  background: linear-gradient(135deg, var(--red), #ff5a00);
  box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 12px 28px rgba(255, 23, 77, .36);
  transform: skew(-8deg);
}
.top-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 47, 85, .55);
  border-radius: 14px;
  color: white;
  background: linear-gradient(180deg, rgba(255, 47, 85, .22), rgba(55, 4, 24, .92));
  padding: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 0 18px rgba(255, 47, 85, .18), 0 10px 22px rgba(0,0,0,.25);
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: white;
}
.top-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .8rem;
  color: #f7d5df;
  text-decoration: none;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 750;
}
.top-nav a:hover,
.top-nav a:focus {
  color: white;
  background: rgba(255, 47, 85, .14);
}
.age {
  flex: 0 0 auto;
  border: 1px solid var(--line-hot);
  border-radius: 999px;
  color: white;
  padding: .42rem .62rem;
  font-weight: 950;
  box-shadow: inset 0 0 18px rgba(255, 23, 77, .18);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.page-hero {
  position: relative;
  padding: clamp(2.2rem, 6vw, 4.8rem) 0 1rem;
}
.breadcrumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .9rem;
}
.kicker,
.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: .34rem .72rem;
  border: 1px solid rgba(255, 47, 139, .36);
  border-radius: 999px;
  background: rgba(255, 47, 139, .14);
  color: #ff9bbd;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
}

h1,
h2,
h3 {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.06;
  letter-spacing: -.045em;
}
h1 {
  max-width: 11ch;
  margin: .45rem 0 1rem;
  font-size: clamp(2.45rem, 8vw, 5.65rem);
  text-shadow: 0 18px 50px rgba(255, 23, 77, .2);
}
h2 { margin-top: 0; font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { margin-bottom: .35rem; font-size: 1rem; }
.meta {
  max-width: 74ch;
  color: #d9a9ba;
  font-size: .95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
}
.lead {
  max-width: 58ch;
  color: #fff0f3;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 520;
}
.actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .7rem;
  padding: .83rem 1.22rem;
  color: white;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.12);
}
.btn.primary {
  background: linear-gradient(180deg, #ff2f64 0%, #db083d 100%);
  box-shadow: 0 16px 34px rgba(255, 23, 77, .34), inset 0 1px rgba(255,255,255,.26);
}
.btn.ghost {
  background: linear-gradient(180deg, #ffb000, #ff7000);
  color: #1a0508;
  box-shadow: 0 16px 34px rgba(255, 122, 0, .22);
}

.hero-art-card,
.content-card,
.demo-shell,
.split article,
.steps article,
.author-card,
.image-band,
.related-slots,
.casino-hero-card,
.game-preview-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 47, 85, .08), rgba(0,0,0,.05)),
    rgba(31, 5, 17, .88);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.035);
}
.hero-art-card {
  min-height: 430px;
}
.hero-art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}
.hero-art-card::after,
.image-band::after,
.casino-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 1, 8, .68), transparent 52%);
}
.floating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: .48rem .78rem;
  border-radius: 999px;
  color: #120206;
  background: linear-gradient(180deg, #ffcf39, #ff7a00);
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(255, 122, 0, .36);
}
.floating-badge.second {
  top: 4.35rem;
  background: linear-gradient(180deg, #8d52ff, #5d18d7);
  color: white;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0;
}
.quick-facts article {
  min-height: 84px;
  padding: .95rem;
  border: 1px solid rgba(255, 47, 85, .42);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 47, 85, .12), rgba(255, 47, 139, .06));
  text-align: center;
}
.quick-facts span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.quick-facts strong {
  display: block;
  margin-top: .3rem;
  color: white;
  font-size: 1.22rem;
}

.content-card,
.split article,
.steps article,
.author-card,
.related-slots {
  padding: clamp(1rem, 2.6vw, 1.6rem);
  margin-bottom: 1rem;
}
.content-card p,
.split p,
.steps p,
.author-card p {
  color: #f0c7d2;
}
.split,
.criteria-grid,
.author-grid,
.steps,
.game-preview-grid {
  display: grid;
  gap: 1rem;
}
.split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.criteria-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.author-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: white;
  background: linear-gradient(180deg, #ff2f64, #8c0b45);
  font-weight: 950;
  box-shadow: inset 0 1px rgba(255,255,255,.2);
}

.image-band,
.casino-hero-card {
  display: grid;
  grid-template-columns: .95fr 1fr;
  align-items: center;
  min-height: 260px;
  margin-bottom: 1rem;
}
.image-band img,
.casino-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: 66% 50%;
}
.image-band > div,
.casino-hero-card > div {
  position: relative;
  z-index: 2;
  padding: clamp(1.1rem, 3vw, 2rem);
}
.rating {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  color: var(--gold);
  font-weight: 950;
}
.rating small { color: var(--muted); }

.demo-shell { padding: 0; margin-bottom: 1rem; }
.demo-top {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.pill {
  color: white;
  background: linear-gradient(180deg, #ff2f64, #d9063b);
}
.demo-screen {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,1,6,.72), rgba(8,1,6,.2)),
    url("/assets/fruity-game-screen.jpg") center / cover no-repeat;
}
.demo-screen::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 207, 57, .45);
  box-shadow: inset 0 0 42px rgba(255, 47, 85, .18);
}
.demo-center {
  position: relative;
  z-index: 2;
  width: min(92%, 30rem);
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255, 47, 85, .58);
  border-radius: 18px;
  background: rgba(16, 2, 10, .72);
  backdrop-filter: blur(8px);
}
.demo-center strong {
  display: block;
  font-size: clamp(2rem, 6vw, 4.3rem);
  line-height: 1;
}
.fruit,
.slice-line { display: none; }

.game-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}
.game-preview-grid article { padding: 0; }
.game-preview-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: 68% 50%;
  border-bottom: 1px solid var(--line);
}
.game-preview-grid h2,
.game-preview-grid p { padding-inline: 1rem; }
.game-preview-grid p { padding-bottom: 1rem; color: var(--muted); }

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0,0,0,.12);
}
th,
td {
  text-align: left;
  padding: .85rem;
  border-bottom: 1px solid rgba(255, 47, 85, .25);
  vertical-align: top;
}
th {
  color: #ffcf39;
  background: rgba(255, 47, 85, .12);
}
.check-list { padding-left: 1.2rem; }
.check-list li { margin: .42rem 0; }
.warning { border-color: rgba(255, 176, 0, .55); }
.disclosure { color: var(--muted); font-size: .95rem; }

details {
  border-top: 1px solid rgba(255, 47, 85, .26);
  padding: .75rem 0;
}
summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.related-slots h2 { text-align: center; }
.slot-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}
.slot-row a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  color: white;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255, 47, 85, .32);
}
.slot-row img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: 70% 50%;
}
.slot-row span {
  display: block;
  padding: .55rem;
  font-weight: 900;
}

.sources { margin-top: 1rem; }
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 47, 85, .34);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

@media (max-width: 940px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: .75rem;
  }
  .brand { min-width: 0; }
  .menu-toggle { display: inline-flex; grid-column: 2; grid-row: 1; }
  .age { display: none; }
  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: .45rem;
    padding: .75rem 0 0;
    overflow: visible;
  }
  .top-nav.is-open { display: grid; }
  .top-nav a {
    justify-content: center;
    border: 1px solid rgba(255, 47, 85, .28);
    background: rgba(255, 47, 85, .08);
  }
  .hero-grid,
  .split,
  .criteria-grid,
  .author-grid,
  .steps,
  .image-band,
  .casino-hero-card,
  .game-preview-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { min-height: auto; padding: .5rem 0; }
  .hero-art-card { min-height: 310px; }
  .quick-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slot-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  main,
  .site-footer { width: min(100% - 1rem, 1180px); }
  .brand span:last-child { max-width: 10.5rem; overflow: hidden; text-overflow: ellipsis; }
  h1 { font-size: clamp(2.1rem, 13vw, 3.4rem); }
  .page-hero { padding-top: 1.5rem; }
  .quick-facts { gap: .5rem; }
  .quick-facts article { min-height: 74px; padding: .75rem .45rem; }
  th,
  td { display: block; width: 100%; }
  tr { display: block; border-bottom: 1px solid rgba(255, 47, 85, .22); padding: .4rem 0; }
  .demo-screen { min-height: 68vh; }
  .demo-center { padding: 1.2rem; }
}
