/* ========== BASE / RESET ========== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ========== VARIABLES ========== */

:root {
  color-scheme: dark;
  --bg: #2d214e;
  --panel: #3a2b60;
  --panel-alt: #43316f;
  --text: #f5f2ff;
  --muted: #c9c0e8;
  --accent: #EF295B;
  --accent-strong: #EF295B;
  --pill: #b2a3d7;
  --pill-dark: #2b224e;
}

html {
  scroll-behavior: smooth;
  background-color: #1c1633;
}


.is-hidden {
	display: none;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #2b204d 0%, #2d214e 45%, #2a1e49 100%);
  color: var(--text);
  font-family: "Jua", sans-serif;
  font-size: 20px;
    overflow-x: hidden;
  animation: page-fade-in 120ms ease-out;
}

.lazy-image {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  animation: lazy-pulse 1.6s ease-in-out infinite;
}

.lazy-image.lazy-image--loaded {
  animation: none;
  background: transparent;
}

@keyframes lazy-pulse {
  0% {
    background-color: rgba(255, 255, 255, 0.06);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.18);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.06);
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0.98;
  }
  to {
    opacity: 1;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.link-disabled{
  cursor: none;
  pointer-events: none;
  opacity: 0.5;
}

body.search-open {
  overflow: hidden;
}

body.settings-open {
  overflow: hidden;
}

body.adult-warning-open {
  overflow: hidden;
}
button {
  font-family: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

button:hover,
button:focus-visible {
  animation: button-wobble 0.45s ease-in-out;
}

button a{
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@keyframes button-wobble {
  0% {
    transform: scale(1) rotate(0deg);
  }
  20% {
    transform: scale(1.04) rotate(-1deg);
  }
  40% {
    transform: scale(1.02) rotate(1deg);
  }
  60% {
    transform: scale(1.03) rotate(-0.6deg);
  }
  80% {
    transform: scale(1.01) rotate(0.4deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.menu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(19, 12, 39, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 20;
}


/* ========== HELLO BAR ========== */

.hello-bar {
  background: rgba(239, 41, 91, 0.14);
  border-bottom: 1px solid rgba(239, 41, 91, 0.22);
  position: relative;
  z-index: 11;
}

.hello-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  color: rgba(245, 242, 255, 0.95);
}

.hello-bar__text {
  line-height: 1.2;
}

.hello-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hello-bar__link {
  color: #ffffff;
  text-decoration: underline;
  opacity: 0.95;
  white-space: nowrap;
}

.hello-bar__close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  opacity: 0.95;
}

.hello-bar__close:hover,
.hello-bar__close:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
}

.menu-link-button {
  font-family: inherit;
  font-size: inherit;
  color: #efe7ff;
  opacity: 0.85;
  text-decoration: none;
}
.menu-link-button:hover,
.menu-link-button:focus-visible {
  opacity: 1;
}


/* ========== SETTINGS OVERLAY ========== */

.settings-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}
.settings-overlay.is-open {
  display: block;
}
.settings-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 7, 26, 0.85);
}
.settings-overlay__panel {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 56px auto;
  padding: 22px;
  background: #2a1f4d;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.tag-action-menu {
  position: fixed;
  z-index: 1200;
  min-width: 220px;
  background: #2a1f4d;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  padding: 10px;
  display: none;
}
.tag-action-menu.is-open {
  display: block;
}
.tag-action-menu__title {
  font-size: 14px;
  color: rgba(245, 242, 255, 0.75);
  margin: 0 0 8px;
}
.tag-action-menu__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: rgba(245, 242, 255, 0.95);
  font-size: 16px;
}
.tag-action-menu__btn + .tag-action-menu__btn {
  margin-top: 8px;
}
.tag-action-menu__btn:hover,
.tag-action-menu__btn:focus-visible {
  background: rgba(255, 255, 255, 0.10);
}
.tag-action-menu__btn--danger {
  background: rgba(239, 41, 91, 0.14);
  border: 1px solid rgba(239, 41, 91, 0.18);
}
.tag-action-menu__btn--danger:hover,
.tag-action-menu__btn--danger:focus-visible {
  background: rgba(239, 41, 91, 0.22);
}
.settings-overlay__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.settings-overlay__title {
  font-family: "Cherry Bomb One", cursive;
  font-size: 34px;
  margin: 0;
}
.settings-overlay__subtitle {
  margin: 6px 0 0;
  color: rgba(245, 242, 255, 0.85);
  font-size: 16px;
}
.settings-overlay__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-size: 26px;
  line-height: 1;
}
.settings-overlay__close:hover,
.settings-overlay__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}
.settings-section {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.settings-section:first-child {
  border-top: none;
  padding-top: 0;
}
.settings-section__title {
  margin: 0 0 10px;
  font-size: 18px;
  color: rgba(245, 242, 255, 0.95);
}
.settings-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.settings-empty {
  margin: 0;
  font-size: 16px;
  color: rgba(245, 242, 255, 0.75);
}
.settings-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 16px;
}
.settings-chip__remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-size: 18px;
  line-height: 1;
}
.settings-chip__remove:hover,
.settings-chip__remove:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}
.settings-overlay__panel p {
  font-family: 'Source Sans Pro';
  font-size: 16px;
}

.hello-bar__link:hover,
.hello-bar__link:focus-visible {
  opacity: 1;
}


/* ========== HEADER / NAV ========== */

.site-header {
  max-width: 1100px;
  margin: 0 auto 42px;
  padding: 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding-top: 25px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.logo-title {
  font-family: "Cherry Bomb One", cursive;
  font-size: 38px;
  color: #EF295B;
  letter-spacing: 0.5px;
}
.logo-title a{
  color: #EF295B;
  text-decoration: none;
}

.logo-subtitle {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e7defa;
}

.logo-subtitle a{
  color: #ffffff;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 20px;
}

.nav-link {
  color: #efe7ff;
  text-decoration: none;
  opacity: 0.85;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

.more-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #f3e9ff;
}

.search-icon {
  width: 18px;
  height: 18px;
}

.text-link{
  text-decoration: underline;
  color: #cfc9e7;
}
.updates-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3e9ff;
  text-decoration: none;
}
.updates-icon {
  width: 18px;
  height: 18px;
	fill: #ffffff;
}
.updates-badge {
  position: absolute;
  top: 0px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}
.updates-page .updates-panel {
  padding-bottom: 145px;
}

.hamburger {
  width: 22px;
  height: 12px;
  border-top: 2px solid #f3e9ff;
  border-bottom: 2px solid #f3e9ff;
  position: relative;
}

.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  border-top: 2px solid #f3e9ff;
}


/* ========== PAGE LAYOUT ========== */

.page {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

body.menu-open .page {
  opacity: 0.35;
  filter: blur(2px);
}

body.search-open .page {
  opacity: 0.25;
  filter: blur(3px);
}

body.adult-warning-open .page {
  opacity: 0.2;
  filter: blur(4px);
}

body.menu-open .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}


/* ========== HERO ========== */

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -130px;
  padding: 190px 24px 200px;
  border-radius: 28px;
  background: rgba(65, 49, 103, 0.5);
  background-image: url("/static/catalog/images/header-bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 260px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero--kinks .hero-content, .hero--game .hero-content {
  text-align: left;
  max-width: 1060px;
}

.hero--kinks .hero-title, .hero--game .hero-title {
  margin-top: 6px;
}

.hero-search {
  margin-top: 22px;
  display: flex;
  align-items: center;
  max-width: 520px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  gap: 10px;
}

.hero-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 20px;
  padding: 10px 14px;
  color: #3b2f61;
  outline: none;
}

.hero-search-input::placeholder {
  color: #bdb5d8;
}

.hero-search-button {
  background: #2f2454;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 20px;
}

.hero-kicker {
  font-size: 22px;
  color: var(--muted);
}

.hero-title {
  font-family: "Cherry Bomb One", cursive;
  font-size: 110px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 90%;
  margin-top: -7px;
}
.hero-sub-text, .footer-link-text{
  margin: 12px 0 26px;
  background: rgba(40, 30, 75, 0.75);
  border-radius: 20px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 30px;
  font-family: "Source Sans Pro";
  letter-spacing: 0.275px;
  word-spacing: 4px;
  line-height: 140%;
  max-width: 50%;
  min-width: 320px;
}
.footer-link-text {
  display: block;
}
.footer-link-text p, .footer-link-text ul {
  width: 100%;
  padding-bottom: 10px;
}
.footer-link-text ul {
  margin-left: 30px;
}
.hero-subtitle {
  font-size: 34px;
  margin-top: 10px;
}
.hero-subtitle-small{
  font-size: 22px;
  margin-top: 30px;  
  font-family:"Source Sans Pro", sans-serif;
  width:420px;
}

.hero-description {
  font-size: 22px;
  color: var(--muted);
  margin-top: 40px;
  margin-bottom: 10px;
  max-width: 350px;
}
.home .hero-description{
  margin: auto;
  margin-top:30px;
}

.hero-cta {
  margin-top: 22px;
  background: var(--accent-strong);
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(255, 78, 134, 0.35);
}

/* Make the entire button clickable when it wraps a single link */
button.hero-cta {
  padding: 0;
}
button.hero-cta a {
  display: block;
  padding: 16px 36px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}


/* ========== PANEL ========== */

.panel {
  position: relative;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  background: #433782;
  border-radius: 80px 80px 26px 26px;
  padding: 32px 24px 100px;
  margin-bottom: -80px;
  border: none;
  padding: 70px 170px 170px;
  margin-bottom: -130px;
}


/* ========== SEARCH OVERLAY ========== */

.search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}

body.search-open .search-overlay {
  display: block;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 30, 0.65);
}

.search-overlay-panel {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 140px auto 0;
  background: #4b3f7f;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(10, 6, 25, 0.4);
}

.search-overlay-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 16px;
}

.search-overlay-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  padding: 8px 12px;
  color: #3b2f61;
  outline: none;
}

.search-overlay-input::placeholder {
  color: #bdb5d8;
}

.search-overlay-button {
  background: #2f2454;
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 18px;
}

.search-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.search-overlay-title {
  font-size: 22px;
  color: #ffffff;
}

.search-overlay-close {
  font-size: 26px;
  color: #ffffff;
}

.search-overlay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search-overlay .card {
  padding: 10px;
  border-radius: 18px;
}

.search-overlay .card-media {
  border-radius: 14px;
  height: 120px;
}

.search-overlay .card-label {
  font-size: 16px;
}


/* ========== ADULT WARNING ========== */

.adult-warning {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.adult-warning-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 28, 0.85);
}

.adult-warning-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 90vw);
  background: #433782;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(10, 6, 25, 0.5);
}

.adult-warning-panel h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}

.adult-warning-panel p {
  font-size: 18px;
  color: #e7defa;
  line-height: 1.6;
  margin-bottom: 24px;
}

.adult-warning-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.panel-first{
  margin-top: -130px;
  z-index: 99;
}
.panel-second{
  z-index: 999;
}
.panel-third{
  margin-top: -130px;
  z-index: 9999;
}
.panel-fourth{
  margin-top: -130px;
  z-index: 99999;
}

.panel:nth-of-type(odd) {
  background: #372f61;
}

.panel > * {
  max-width: 1280px;
  margin: 0 auto;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.panel-title {
  font-family: "Cherry Bomb One", cursive;
  font-size: 46px;
  color: var(--accent);
    line-height: 105%;
}

.panel-subtitle {
  font-size: 20px;
  line-height: 145%;
  color: var(--muted);
  max-width: 520px;
  margin-top: 6px;
  font-family:"Source Sans Pro", sans-serif;
}

.panel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ========== KINK A-Z / CATEGORY ========== */

.kink-az-header {
  margin-bottom: 26px;
}
.kink-az-header p{
  font-family: 'Source Sans Pro';
  margin-top: 10px;
}

.kink-az-title {
  font-family: "Cherry Bomb One", cursive;
  font-size: 34px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kink-az-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 60px;
}

.kink-az-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kink-az-cols {
	display: flex;
	gap: 1rem;
}

.kink-az-col {
	flex: 1;
}

.kink-az-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  color: #ffffff;
  text-align: left;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
}

.kink-az-item--selected {
  background: #ef295b;
  color: #ffffff;
  padding: 10px 16px;
}

.kink-az-emoji {
  width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kink-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.kink-category-section {
	display: contents;
}
.kink-category-section.is-hidden {
	display: none;
}
[hidden] {
	display: none !important;
}
.kink-category-item {
  background: var(--panel-alt);
  border-radius: 16px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  display: grid;
  gap: 10px;
  justify-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.kink-category-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.kink-category-item:hover,
.kink-category-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 12, 40, 0.25);
  background-color: var(--accent);
}

.kink-category-empty {
  color: #c9c2e6;
  font-size: 18px;
}

.game-hero-panel .panel-title,
.game-hero-panel .panel-subtitle {
  margin: 0;
}


/* ========== GAME HERO ========== */

.hero--game {
  background-image: url("/static/catalog/images/temp-imgs/game-bg.jpg");
}
.game-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 26px;
  align-items: start;
}

.game-hero-menu {
  margin-top: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 40;
  /*background: rgba(44, 34, 78, 0.85);*/ 
  border: 4px solid #7269A1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  
  max-width: 1420px;
  margin: auto;
  border-top: 0px;
  z-index: 99999;
  opacity:0;
}

.game-hero-menu a {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.game-hero-menu a:first-child {
  border-left: none;
}

.game-hero-menu a:hover,
.game-hero-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.game-hero-menu .menu-up {
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.game-hero-menu.is-sticky {
  border-radius: 0 0 999px 999px;
  background: rgba(44, 34, 78, 0.95);
  box-shadow: 0 10px 25px rgba(12, 7, 26, 0.35);
  border-radius: 0 0 40px 40px;
  opacity:1;
}

.game-hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity:0.15;
  pointer-events: none;
}
.game-cat-hero-bg.game-hero-bg, .game-cat-hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 9;
  opacity:0.2;
  pointer-events: none;
}
.game-cat-hero-bg{
  border-radius: 70px;
  opacity:0.04;
  z-index: 9;
}

.game-media-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.game-media-sutro {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  display: block;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}
.game-media-sutro video {
  object-fit: cover;
}
.game-media-video{
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.35);
}
.game-media-image:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
.game-media-play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  padding: 10px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.game-hero-kicker {
  font-family: "Cherry Bomb One", cursive;
  font-size: 46px;
  line-height: 95%;
  margin-bottom: 20px;
  color: #ef295b;
}

.game-hero-meta {
  color: #c9c2e6;
  margin-top: 6px;
  font-size: 18px;
}

.game-hero-description {
  color: #e7defa;
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.5;
  font-family:"Source Sans Pro", sans-serif;
}

.game-hero-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.game-hero-price .price {
  font-size: 24px;
  color: #ffffff;
}

.game-hero-price .price-note {
  font-size: 16px;
  color: #bdb5d8;
}

.game-hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.game-hero-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
}

.game-hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.heart-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  align-items: flex-end;
  margin-top:30px;
}

.heart-icons {
  display: flex;
  gap: 6px;
  color: #ef295b;
  font-size: 26px;
}

.game-hero-stats {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top:20px;
}

.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.stat-row:last-child{
  margin-top:20px;
}

.stat-label {
  min-width: 80px;
  color: #c9c2e6;
  font-size: 18px;
}

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat-chip {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s all;
}
a.stat-chip:hover{
  background: rgba(0, 0, 0, 0.65);
  transition: 0.3s all;
}


/* ========== GAME DETAIL / MEDIA ========== */

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr);
  gap: 16px;
}

.media-large {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.media-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 40px;
  background: rgba(0, 0, 0, 0.25);
}

.media-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.media-small,
.media-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  min-height: 120px;
}

.media-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0px;
}

.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 20px;
  align-items: start;
}

.summary-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  grid-column: 1 / -1;
  border-top: 1px solid #5F5981; 
  margin-bottom: -20px;
}
.summary-lists div{
  border-right: 1px solid #5F5981;
  padding-bottom: 30px;
}
.summary-lists div:nth-child(2){
  padding-left: 30px;
}
.summary-lists div:last-child{
  border-right:none;
  padding-left: 30px;
}


.summary-title {
  font-size: 22px;
  margin-bottom: 8px;
  padding-top: 30px;
}

.summary-title--good {
  color: #59d0a4;
}

.summary-title--bad {
  color: #ef7a7a;
}

.summary-title--note {
  color: #f4c26f;
}

.summary-lists ul {
  list-style: disc;
  padding-left: 18px;
  color: #e7defa;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-quotes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 26px 0 0;
  border-top: 1px solid #5F5981;
  padding-bottom: 130px;
}

.review-quotes__title {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0;
}

.review-quote {
  position: relative;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.review-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: "Cherry Bomb One", cursive;
  font-size: 80px;
  line-height: 1;
  color: rgba(239, 41, 91, 0.22);
  pointer-events: none;
}

.review-quote__text {
  position: relative;
  margin: 0;
  color: #f1ebff;
  line-height: 1.55;
  font-size: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.review-quote__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(201, 192, 232, 0.95);
}

.review-quote__link {
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.review-quote__link:hover,
.review-quote__link:focus-visible {
  text-decoration: underline;
}

.summary-lists ul li {

font-family:"Source Sans Pro", sans-serif;

    font-size: 18px;
}

.summary-score {
  display: flex;
  justify-content: flex-end;
}

.score-circle {
  display: grid;
  position: relative;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  text-align: center;
}
.score-circle span {
  font-size: 100px;
  color: #ffffff;
  font-family: "Cherry Bomb One", cursive;
}
.score-circle small {
  display: block;
  font-size: 14px;
  color: #c9c2e6;
}
.score-circle small a{
  color:#9B97B0;
  font-size:20px;
  font-family:"Source Sans Pro", sans-serif;
  margin-top:-10px;
}
.score-circle .review-cap-info {
  font-size: 14px;
  position: absolute;
  top: 40px;
  right: -7px;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 18px;
  padding-bottom: 40px;
}

.details-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details-cover {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  min-height: 220px;
  padding:30px;
}

.details-cover {
  font-family:"Source Sans Pro", sans-serif;
}

.game_area_description {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ef295b rgba(255, 255, 255, 0.08);
  font-size: 18px;
}
.game_area_description h2{
  padding-bottom:15px;
}
.game_area_description p{
  padding-bottom:15px;
  font-size: 18px;
  line-height:130%;
}

.game_area_description video, .game_area_description img {
  width:100%;
    height: auto;
}
.game_area_description::-webkit-scrollbar {
  width: 10px;
}

.game_area_description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.game_area_description::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ef295b, #f4c26f);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.25);
}

.details-grid.details-grid--expanded {
  grid-template-columns: minmax(0, 1fr);
}

.details-grid.details-grid--expanded .details-left {
  grid-column: 1 / -1;
}

.details-grid.details-grid--expanded .details-right {
  display: none;
}

.details-heading {
  font-size: 20px;
  color: #ffffff;
}

.details-text {
  color: #e7defa;
  line-height: 1.5;
}

.details-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.details-right-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 6px;
}

.kink-card {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 28px;
  padding: 18px 20px;
  border: 2px solid rgba(18, 12, 40, 0.6);
  color: #f2ecff;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.kink-card:hover,
.kink-card:focus-visible {
  background: rgba(58, 47, 103, 0.7);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.kink-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.kink-pill {
  background: rgba(30, 22, 62, 0.8);
  color: #ffffff;
  font-size: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.kink-meter {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.kink-dot {
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.kink-dot--green {
  background: #32c26b;
}

.kink-dot--amber {
  background: #c88a2b;
}

.kink-dot--red {
  background: #d44a2b;
}

.kink-dot--off {
  background: rgba(255, 255, 255, 0.12);
}

.kink-card-text {
  font-size: 18px;
  line-height: 1.6;
  color: #e5def6;
  font-family:"Source Sans Pro", sans-serif;
}

.detail-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 14px;
  color: #ffffff;
}

.detail-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.detail-bars div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #c9c2e6;
  margin-bottom: 6px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 14px;
}

/*.kink-cat-panel {
  padding: 28px 26px 32px;
}*/

/* ========== KINK CATEGORY LIST ========== */

.kink-cat-panel {
  margin-top: -120px;
  z-index: 9;
}

.kink-cat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.kink-cat-controls {
  display: inline-flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px;
  border-radius: 999px;
}

.view-toggle {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 16px;
  color: #efe7ff;
  background: transparent;
  opacity: 0.7;
}

.view-toggle.is-active {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.kink-cat-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* ========== GAME CARD (KINK) ========== */

.kink-game-card {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow: inset 0 0 0 2px rgba(25, 18, 52, 0.6);
  position: relative;
}

.kink-game-large {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  position: relative;
}

.kink-game-compact {
  display: none;
  align-items: center;
  gap: 18px;
  z-index: 99;
  position: relative;
}

.kink-cat-list[data-view="compact"] .kink-game-large {
  display: none;
}

.kink-cat-list[data-view="compact"] .kink-game-compact {
  display: flex;
}

.kink-game-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.kink-game-title {
    font-size: 38px;
    color: #ffffff;
    line-height: 105%;
    margin-bottom: 5px;
}

.kink-game-title a {
  color: inherit;
  text-decoration: none;
}

.kink-game-title a:hover,
.kink-game-title a:focus-visible {
  text-decoration: none;
}

.kink-game-meta {
  font-size: 14px;
  color: #c9c0e8;
}

/* Hide price and review on upcoming games page */
.page-upcoming .game-card-price,
.page-upcoming .game-card-review {
  display: none;
}

.kink-game-description {
  font-size: 17px;
  color: #e7defa;
  line-height: 1.5;
  font-family: "Source Sans Pro", sans-serif;
    max-width: 620px;
}

.kink-game-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 20px;
  color: #c9c0e8;
}
.kink-game-rating span{
  opacity: 0.6;
}

.rating-hearts {
  display: flex;
  gap: 6px;
    font-size: 26px;
  color: #ef295b;
}

.kink-game-gallery {
  position: relative;
}

.kink-game-gallery-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kink-game-gallery-prev,
.kink-game-gallery-next {
  display: none;
}

.kink-game-gallery-track {
  display: contents;
}

.kink-game-media-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.kink-game-media-link img {
  display: block;
}

.microtrailer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 120ms ease-out;
  z-index: 10;
  border-radius: inherit;
  pointer-events: none;
}

.kink-game-media-link.is-microtrailer-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 9;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.00) 0%,
    rgba(180, 140, 255, 0.35) 25%,
    rgba(255, 255, 255, 0.25) 35%,
    rgba(180, 140, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.00) 65%
  );
  background-size: 220% 100%;
  animation: microtrailer-sheen 900ms ease-in-out infinite;
  mix-blend-mode: screen;
}

.kink-game-media-link.is-microtrailer-loading img {
  filter: brightness(1.08) saturate(1.1);
}

.kink-game-media-link.is-microtrailer-loading .microtrailer-video {
  opacity: 0;
}

.kink-game-media-link.is-microtrailer-playing::after {
  content: none;
}

@keyframes microtrailer-sheen {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.kink-game-media-link.is-microtrailer-playing .microtrailer-video {
  opacity: 1;
}

.kink-game-gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.kink-game-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.kink-game-thumb {
  width: 300px;
  height: auto;
  border-radius: 18px;
  flex-shrink: 0;
}

.kink-game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kink-game-tags a {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  color: #e7defa;
  text-decoration: none;
  display: inline-flex;
}

.kink-game-tags a.tag--gameplay {
  background: rgba(68, 201, 255, 0.16);
}

.kink-game-tags-expand {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  color: #e7defa;
  cursor: pointer;
  flex-shrink: 0;
}

.kink-game-tags-expand:hover,
.kink-game-tags-expand:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.kink-game-compact-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kink-game-compact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}


/* ========== SEARCH / FILTERS ========== */

.search-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.search-name-row{
  margin-bottom:20px;
}

.search-selector-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 28px;
  padding: 24px;
  box-shadow: inset 0 0 0 2px rgba(25, 18, 52, 0.5);
}

.search-selector-header h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 14px;
}

.search-filter-collapsible__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.search-filter-collapsible__title {
  font-size: 28px;
  color: #ffffff;
  margin: 0;
  font-weight: inherit;
  margin-bottom: 10px;
}

.search-filter-collapsible__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.search-filter-collapsible__toggle:hover,
.search-filter-collapsible__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.search-filter-collapsible__toggle i {
  transition: transform 0.2s ease;
}

.search-selector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px;
  min-height: 64px;
  align-items: center;
}

.search-selector-chips span {
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
}

.search-selector-input {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
	position: relative;
}

.search-selector-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  padding:10px;
  outline: none;
}
.search-name-row .search-selector-input input {
  padding: 15px 20px;
}
.search-filter-bar {
  margin: 12px 0 26px;
  background: rgba(40, 30, 75, 0.55);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#kink-input::placeholder, #gameplay-input::placeholder, #q-input::placeholder, #q-input::placeholder {
  color: #ffffff;
  font-size: 18px;
  font-family: "Jua", sans-serif;
}
.search-filters-row select{
  margin-left: 10px;
}
.filter-pill {
  background: rgba(255, 255, 255, 0);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s;
}
.filter-pill:hover{
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.filter-pill.is-active {
  background: rgba(255, 255, 255, 0.15);
}

.filter-pill--icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
}


/* ========== RELATED GAMES / REVIEWS ========== */

#comments .panel-header, #comments .comments{
    cursor: default;
    opacity: 0.5;
}
.comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-game-card {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  padding: 12px;
  text-decoration: none;
  color: var(--text);
  display: grid;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.related-game-card:hover,
.related-game-card:focus-visible {
  background: rgba(58, 47, 103, 0.7);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.related-game-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.related-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-game-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

/* Game page news slider */
.game-news-slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #433782 rgba(67, 55, 130, 0.2);
  padding-bottom: 8px;
}
.game-news-slider::-webkit-scrollbar {
  height: 8px;
}
.game-news-slider::-webkit-scrollbar-track {
  background: rgba(67, 55, 130, 0.2);
  border-radius: 4px;
}
.game-news-slider::-webkit-scrollbar-thumb {
  background: #433782;
  border-radius: 4px;
}
.game-news-slider::-webkit-scrollbar-thumb:hover {
  background: #554a99;
}
.game-news-slider__track {
  display: flex;
  gap: 16px;
  padding: 4px 0;
}
.game-news-slider__card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  display: block;
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.game-news-slider__card:hover {
  transform: translateY(-2px);
}
.game-news-slider__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.game-news-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-news-slider__body {
  padding: 12px 14px;
}
.game-news-slider__title {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--text);
}
.game-news-slider__meta {
  font-size: 13px;
  color: var(--muted);
}
.panel-news {
  z-index: 9999;
  padding-bottom: 270px !important;
}
.panel-news .panel-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.related-game-score {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 999px;
}

.related-game-title {
  font-size: 16px;
  color: #ffffff;
}

.review-cap-info {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  font-size: 0.85em;
  color: #f5f2ff;
  opacity: 1;
  cursor: help;
  position: relative;
}

.review-cap-info i {
  line-height: 1;
}

.review-cap-tooltip {
  position: absolute;
  right: 0;
  top: 120%;
  width: min(350px, 86vw);
  background: rgba(28, 22, 51, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  font-size: 14px !important;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 5;
  font-family:"Source Sans Pro", sans-serif !important;
  text-align: left !important;
}

.review-cap-info:hover .review-cap-tooltip,
.review-cap-info:focus-within .review-cap-tooltip {
  opacity: 1;
  transform: translateY(0);
}
section#comments {
  display: none;
}
.comment {
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  padding: 12px;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.comment-name {
  font-size: 16px;
  color: #ffffff;
}
.comment-text {
  font-size: 14px;
  color: #d7d0ef;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.lightbox.is-open {
  display: block;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 7, 26, 0.85);
}
.lightbox-content {
  position: relative;
  z-index: 99999;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 24px;
  pointer-events: none;
}
.lightbox-content .lightbox-close,
.lightbox-content .lightbox-main,
.lightbox-content .lightbox-thumbs {
  pointer-events: auto;
}
.lightbox-close {
  align-self: flex-end;
  font-size: 100px;
  color: #ffffff;
  margin-bottom: 12px;
}
.lightbox-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 0 12px;
}
.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.lightbox-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 6px 4px;
  justify-content: center;
}
.lightbox-thumb {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  opacity: 0.7;
  cursor: pointer;
}
.lightbox-thumb img {
  width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}
.lightbox-thumb.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px #ef295b;
}
[data-view="compact"] .kink-game-title{
  font-size: 28px;
  margin-bottom: 0px;
  line-height: 105%;
}
.kink-game-description {
  font-size: 16px;
  line-height: 130% !important;
}
.kink-game-compact-actions .rating-hearts {
  margin-bottom: 20px;
}


/* ========== PILL / BUTTONS ========== */

.pill {
  background: var(--pill);
  color: #2f2354;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.6s;
}

/* Make the entire pill clickable when it wraps a link (e.g. button.pill > a) */
button.pill {
  padding: 0;
}
button.pill a {
  display: block;
  padding: 14px 26px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.pill:hover{
  background:#ef295b;
  color:#ffffff;
  transition: all 0.6s;
}
.gameplay-page .panel:last-child .pill:hover {
    background-color: #17B8F2;
}
.kink-cat-list .panel:last-child .pill:hover {
  background-color: #ef295b;
}

.pill-outline {
  background: var(--pill-dark);
  color: #f3e9ff;
  border: 1px solid rgba(201, 192, 232, 0.35);
}

.details-left .pill-outline{
    margin-top: 25px;
    width: 100%;
}

[data-view="large"] .pill{
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}
[data-view="large"] button.pill a {
  padding-left: 40px;
  padding-right: 40px;
}

.panel-or {
  font-size: 17px;
  color: var(--muted);
}


/* ========== GAME CARD GRID ========== */

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.card-grid--quarters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--halves {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--panel-alt);
  border-radius: 22px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
}

.horniness-title{
    color: #c9c2e6;
    font-size:18px;
    padding-right:10px;
}

.home .card:hover,
.home .card:focus-visible {
  background-color: var(--accent);
  box-shadow: 0 14px 30px rgba(20, 12, 42, 0.3);
  transform: translateY(-2px);
}


.home .card {
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.home .panel {
  margin-top: -100px;
  z-index: 9;
}
.home .panel:last-child {
  margin-top: 0px;
}

.panel-title a {
  text-decoration: none;
  color:#ef295b
}
.home .panel:last-child .card:hover{
  background-color: #17B8F2;
}
.gameplay-page .kink-az-item--selected{
  background-color: #17B8F2;
}
.gameplay-color, .gameplay-color a, .gameplay-page .hero-title, .gameplay-page .panel-title{
  color: #17B8F2;
}
.card--highlight {
  box-shadow: 0 0 0 2px rgba(255, 110, 156, 0.6);
}

.card--selected {
  box-shadow: 0 0 0 2px rgba(255, 110, 156, 0.6);
}

.card--placeholder .card-media {
  background: rgba(32, 24, 60, 0.45);
  display: grid;
  place-items: center;
  color: #c9c2e6;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card--placeholder .card-label {
  color: #c9c2e6;
}
.card-media {
  height: 200px;
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.2));
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

.card-grid--halves .card-media {
  height: 200px;
}

.card-label {
  text-align: center;
  font-size: 22px;
}

.card-media--pink {
  background: linear-gradient(135deg, #f17cb8, #5a3a8a);
}

.card-media--peach {
  background: linear-gradient(135deg, #ffb28c, #5b396e);
}

.card-media--blue {
  background: linear-gradient(135deg, #7aa6ff, #3c2a6b);
}

.card-media--purple {
  background: linear-gradient(135deg, #b279ff, #402a6f);
}

.card-media--mint {
  background: linear-gradient(135deg, #82f0d2, #2f2654);
}

.card-media--rose {
  background: linear-gradient(135deg, #ff8da6, #3a275e);
}

.card-media--sunset {
  background: linear-gradient(135deg, #ffb678, #402761);
}

.card-media--indigo {
  background: linear-gradient(135deg, #9fa4ff, #3a295e);
}

.card-media--scene {
  background: linear-gradient(135deg, #f4a9be, #3a2a6c);
}

.card-media--scene-alt {
  background: linear-gradient(135deg, #a9c7ff, #34215f);
}



/* ========== PAGINATION ========== */

.pagination-current{
    background-color: #261f44;
    padding: 5px;
    border-radius: 20px;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    margin-right: 5px;
}
a.pagination-link {
    background-color: #ffffff;
    padding: 5px;
    border-radius: 20px;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #261f44;
    margin-right: 5px;
}
.pagination-pages{
    margin: auto;
}
a.pill[href*="page="] {
    margin-left: 10px;
}

.pagination {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 60px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: auto;
  margin-top: 20px;
}

.pagination-controls .pagination-meta {
  margin: 0;
}

.pagination-controls a.pill[href*="page="] {
  margin-left: 0;
}


/* ========== MEGA MENU ========== */

.mega-menu {
  position: fixed;
  top: 24px;
  right: 24px;
  width: min(560px, 92vw);
  background: #2f2454;
  border-radius: 22px;
  padding: 34px 30px 40px;
  box-shadow: 0 20px 40px rgba(16, 9, 33, 0.55);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 30;
}

body.menu-open .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
}

.mega-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.menu-close {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.menu-close-icon {
  font-size: 22px;
  line-height: 1;
}

.mega-menu-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 10px;
}

/* Collapsible mega menu sections */
.mega-menu-section {
  border-bottom: 1px dashed rgba(204, 193, 240, 0.2);
}

.mega-menu-section:last-of-type {
  border-bottom: none;
}

.mega-menu-section__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: #efe8ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.mega-menu-section__trigger:hover,
.mega-menu-section__trigger:focus-visible {
  color: var(--accent);
  outline: none;
}

.mega-menu-section__trigger[aria-expanded="true"] .mega-menu-section__icon {
  transform: rotate(180deg);
}

.mega-menu-section__icon {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.mega-menu-section__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 0 20px 0;
  overflow: hidden;
}

.mega-menu-section__content[hidden] {
  display: none !important;
}

.mega-menu-section.is-expanded .mega-menu-section__content {
  display: flex;
}

.mega-menu-divider {
  height: 1px;
  background: rgba(204, 193, 240, 0.2);
  margin: 8px 0 16px;
}

.mega-menu-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 35px;
}

.menu-link {
  font-size: 24px;
  color: #efe8ff;
}

.menu-link--highlight {
  color: var(--accent);
}

.menu-link a {
  color: inherit;
  text-decoration: none;
}

.menu-link-button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
}


/* ========== FOOTER ========== */

.site-footer {
  width: 100%;
  background: #261f44;
  padding: 36px 24px 46px;
  margin-top: 80px;
  margin-top: 40px;
  z-index: 99999999999;
  position: relative;
}

.footer-inner {
  max-width: 1075px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #cfc9e7;
  font-size: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #cfc9e7;
}

.footer-link {
  color: #cfc9e7;
  text-decoration: none;
}

.footer-sep {
  opacity: 0.6;
}

.footer-copy {
  max-width: 560px;
  line-height: 1.5;
  color: #bdb5d8;
  font-family: 'Source Sans Pro';
  font-size: 12px;
}

.footer-year {
  color: #bdb5d8;
  font-size: 12px;
}

/* ========== SEARCH DROPDOWN / FILTERS ========== */

.search-dropdown {
	position: absolute;
	top: calc(100% + 6px); /* hangs below input */
	left: 0;
	right: 0;

	background: #1f1b3a;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,.3);
	z-index: 50;

	max-height: 260px;
	overflow-y: auto;
}
.search-option {
	padding: 10px 14px;
	cursor: pointer;
	white-space: nowrap;
}
.search-selector-chips {
	position: relative;
	z-index: 1;
}
.search-option:hover {
	background: #222;
}

.search-filters-row{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 130px;
}

.range--sliders {
  display: grid;
  gap: 12px;
}

.range-row {
  display: grid;
  gap: 8px;
}

.range-label {
  font-size: 15px;
  color: var(--muted);
}

.range--sliders input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.search-filters-row input, 
#kink-input, #gameplay-input, .search-filters-row  select {
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-family: "Jua", sans-serif;
    border-radius: 20px;
}
 .search-filters-row  select{
  color:#ffffff;
 }

.custom-select {
  position: relative;
  width: 70%;
  display: inline-block;
  margin-left: 15px;
  margin-top: -4px;
  margin-bottom: -4px;
}

.custom-select__trigger {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-family: "Jua", sans-serif;
}

.custom-select__trigger::after {
  content: "▴";
  float: right;
  opacity: 0.7;
}

.custom-select__menu {
  position: absolute;
  top: -400%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #2b224e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 6px;
  display: none;
  z-index: 5;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.custom-select.is-open .custom-select__menu {
  display: block;
}

.custom-select__option {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: 12px;
  color: #ffffff;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}
 
.search-selector-chips .chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	background: #222;
	border-radius: 12px;
	margin: 4px;
}

.search-selector-chips button {
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
}


/* --- LEGAL PAGES --- */
.legal-page .terms-text p, .legal-page .terms-text h2, .legal-page .terms-text li{
  font-family:"Source Sans Pro", sans-serif;
  margin-bottom:10px;
} 
.legal-page .terms-text h2{
  margin-top:40px;
}
.legal-page .terms-text ul{
  padding-left: 40px;
}
.legal-page .panel-title{
  font-weight: bold !important;
}

/* --- UPDATES PAGE --- */
.updates-panel {
  max-width: 900px;
}
.updates-panel:first-child{
  margin-top: 40px;
}
.updates-meta {
  color: #c9c0e8;
  margin-top: 8px;
}
.updates-content {
  margin-top: 20px;
  line-height: 1.7;
  color: #f1ebff;
}
.updates-content p, .updates-content li{
  font-family: "Source Sans Pro", sans-serif;
}
.updates-content h2 {
  margin-top: 24px;
  margin-bottom: 12px;
}
.updates-content ul {
  margin-left: 24px;
}
.updates-content p{
  margin-bottom: 20px;
}
.updates-content p:last-child{
  margin-bottom: 0px;
}

/* --- NEWS PAGE --- */
.news-panel {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.news-filters {
  margin-bottom: 24px;    
  background: var(--panel-alt);
  padding: 20px;
  border-radius: 20px 20px 0px 20px;
}
.news-sources-title {
  font-size: 22px;
  color: var(--accent);
  margin: 0 0 16px;
  font-family: "Cherry Bomb One", cursive;
}
.news-sources-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.news-sources-section {
  flex: 0 1 auto;
  min-width: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: flex-grow 0.25s ease, min-width 0.25s ease;
}
.news-sources-section.is-expanded {
  flex: 1 1 auto;
  min-width: min(400px, 100%);
}
.news-sources-section__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 120px;
  padding: 14px 18px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.news-sources-section__trigger:hover,
.news-sources-section__trigger:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}
.news-sources-section__label {
  font-weight: inherit;
}
.news-sources-section__chevron {
  font-size: 14px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}
.news-sources-section.is-expanded .news-sources-section__chevron {
  transform: rotate(90deg);
}
.news-sources-section__content {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.news-sources-section__content[hidden] {
  display: none !important;
}
.news-sources-section.is-expanded .news-sources-section__content {
  display: block;
}
.news-sources-section__content .news-type-filters {
  padding-top: 14px;
}
.news-sources-placeholder {
  padding: 14px 0 0;
}
.news-sources-placeholder__hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-family: "Source Sans Pro", sans-serif;
}
.news-type-checkbox--disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.news-type-checkbox--disabled .news-type-checkbox__circle {
  cursor: not-allowed;
}
.news-type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  align-items: center;
}
/* Custom circular checkbox - news type filters */
.checkbox-wrapper-26.news-type-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
}
.checkbox-wrapper-26.news-type-checkbox * {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.checkbox-wrapper-26.news-type-checkbox input[type="checkbox"] {
  display: none;
}
.news-type-checkbox__circle {
  --size: 28px;
  --shadow: calc(var(--size) * 0.07) calc(var(--size) * 0.1);
  position: relative;
  display: block;
  width: var(--size);
  height: var(--size);
  margin: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 var(--shadow) rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s ease transform, 0.2s ease background-color, 0.2s ease box-shadow;
  overflow: hidden;
  z-index: 1;
  flex-shrink: 0;
}
.news-type-checkbox__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: calc(var(--size) * 0.7);
  height: calc(var(--size) * 0.7);
  margin: 0 auto;
  background-color: var(--panel);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: inset 0 var(--shadow) rgba(0, 0, 0, 0.15);
  transition: 0.2s ease width, 0.2s ease height;
}
.news-type-checkbox:hover .news-type-checkbox__circle::before {
  width: calc(var(--size) * 0.55);
  height: calc(var(--size) * 0.55);
  box-shadow: inset 0 var(--shadow) rgba(0, 0, 0, 0.2);
}
.news-type-checkbox:active .news-type-checkbox__circle {
  transform: scale(0.9);
}
.news-type-checkbox__circle .tick_mark {
  position: absolute;
  top: -1px;
  right: 0;
  left: calc(var(--size) * -0.05);
  width: calc(var(--size) * 0.6);
  height: calc(var(--size) * 0.6);
  margin: 0 auto;
  margin-left: calc(var(--size) * 0.14);
  transform: rotateZ(-40deg);
}
.news-type-checkbox__circle .tick_mark::before,
.news-type-checkbox__circle .tick_mark::after {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 2px;
  opacity: 0;
  transition: 0.2s ease transform, 0.2s ease opacity;
}
.news-type-checkbox__circle .tick_mark::before {
  left: 0;
  bottom: 0;
  width: calc(var(--size) * 0.1);
  height: calc(var(--size) * 0.3);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
  transform: translateY(calc(var(--size) * -0.68));
}
.news-type-checkbox__circle .tick_mark::after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(var(--size) * 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
  transform: translateX(calc(var(--size) * 0.78));
}
.checkbox-wrapper-26.news-type-checkbox input[type="checkbox"]:checked ~ .news-type-checkbox__circle {
  background-color: #EF295B;
  box-shadow: 0 var(--shadow) rgba(239, 41, 91, 0.5);
}
.checkbox-wrapper-26.news-type-checkbox input[type="checkbox"]:checked ~ .news-type-checkbox__circle::before {
  width: 0;
  height: 0;
}
.checkbox-wrapper-26.news-type-checkbox input[type="checkbox"]:checked ~ .news-type-checkbox__circle .tick_mark::before,
.checkbox-wrapper-26.news-type-checkbox input[type="checkbox"]:checked ~ .news-type-checkbox__circle .tick_mark::after {
  transform: translate(0);
  opacity: 1;
}
.news-type-checkbox__label {
  user-select: none;
}
.news-layout {
  display: block;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
/* Row 1: 2 articles + sidebar, all 33% (span 4) */
.news-grid > .news-card:nth-child(1),
.news-grid > .news-card:nth-child(2) {
  grid-column: span 4;
}
.news-grid > .news-grid__sidebar {
  grid-column: span 4;
  background-color: #43316f;
  position: relative;
  top: -25px;
  padding: 20px;
  padding-top: 25px;
  padding-bottom: 0px;
  border-radius: 0px 0px 20px 20px;
}
/* Row 2: 3 articles at 33% each */
.news-grid > .news-card:nth-child(4),
.news-grid > .news-card:nth-child(5),
.news-grid > .news-card:nth-child(6) {
  grid-column: span 4;
}
/* Row 3+: 4 articles per row (25% each) */
.news-grid > .news-card:nth-child(n + 7) {
  grid-column: span 3;
}
.news-grid > .news-empty {
  grid-column: 1 / -1;
}
/* Page 2+: no sidebar, row 1 = 3 articles 33%, row 2 = 3 articles 33%, row 3+ = 4 per row */
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(1),
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(2),
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(3) {
  grid-column: span 4;
}
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(4),
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(5),
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(6) {
  grid-column: span 4;
}
.news-grid:not(.news-grid--has-sidebar) > .news-card:nth-child(n + 7) {
  grid-column: span 3;
}

.news-card {
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
}
.news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card__image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__body {
  padding: 16px;
}
.news-card__title {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
}
.news-card__meta {
  font-size: 14px;
  color: var(--muted);
  opacity: 0.9;
  margin-bottom: 4px;
  z-index: 999999;
  position: relative;
  top: -30px;
  left: 15px;
  background: var(--panel);
  padding: 3px 8px;
  border-radius: 5px;
  width: fit-content;
}
.news-card__type {
  margin-left: 8px;
}
.news-card__game {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}
.news-card__summary {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-family: "Source Sans Pro";
}
.news-empty {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--muted);
}
.news-sidebar__section {
  margin-bottom: 10px;
}
.news-sidebar__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.news-sidebar__title {
  font-size: 18px;
  margin: 0;
}
.news-sidebar__clear-kink {
  font-size: 12px;
  flex-shrink: 0;
  margin-left: auto;
}
.news-sidebar .search-filter-collapsible__body .news-sidebar__clear-kink {
  display: block;
  margin-bottom: 12px;
  margin-left: 0;
}
.news-kink-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.news-kink-search .pill {
  padding: 10px 14px;
  font-size: 16px;
  min-width: 44px;
  display: grid;
  place-items: center;
}
.news-kink-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
}
.news-kink-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 125px;
  overflow-y: auto;
}
.news-kink-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  font-family: "Source Sans Pro", sans-serif;
}
.news-kink-checkbox input {
  width: 16px;
  height: 16px;
}
.news-sidebar__cta {
  padding: 20px 0px;
  background: var(--panel-alt);
  border-radius: 12px;
}
.news-sidebar__cta-text {
  margin-bottom: 12px;
  font-size: 16px;
  padding-bottom: 15px;
  font-family: "Source Sans Pro";
}
.news-sidebar__cta .pill {
  font-size: 18px;
  padding: 10px 15px;
}
.news-detail-hero {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
}
.news-detail-hero__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.news-detail-body {
  font-family: "Source Sans Pro", sans-serif;
}
.news-detail-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 60px;
}
.news-detail-page .pill {
  font-size: 16px;
}
.news-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.updates-panel {
    max-width: 1200px;
    padding: 70px 100px 100px;
}
.news-related-card {
  display: block;
  padding: 12px;
  background: var(--panel);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
}
.news-related-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.news-related-card__title {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.news-related-card__meta {
  font-size: 12px;
  color: var(--muted);
}
.news-panel img{
  max-width: 100%;
}
.news-panel {
  max-width: 1200px;
  padding: 70px 100px 100px;
}
.news-panel:first-child {
  margin-top: 40px;
}
/*.news-detail-hero {
  display: none;
}*/
.news-related-panel {
  padding-bottom: 150px;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}
.cookie-banner__content {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(35, 26, 61, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.cookie-banner__content p {
  margin: 0;
  color: #f1ebff;
  font-size: 16px;
  line-height: 1.5;
  flex: 1 1 280px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-banner__actions .pill {
  padding: 8px 14px;
  font-size: 14px;
}

button .fa-steam {
  margin-right: 10px;
}
button[title*='Favorites'] {
  padding-left: 17px;
  padding-right: 17px;
  font-size: 20px;
  position: relative;
}

button[title*='Favorites'] .fa-heart{
  position: relative;
  top: 2px;
}

body.fillout-open {
  overflow: hidden;
}

.fillout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.fillout-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fillout-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.fillout-overlay__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.fillout-overlay__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.fillout-overlay__close:hover,
.fillout-overlay__close:focus-visible {
  background: rgba(0, 0, 0, 0.7);
}

.game-report-links {
  margin-top: -10px;
}

.game-report-link {
  font-size: 14px;
}

.details-report-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
}

.fillout-report-trigger {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ========== MEDIA QUERIES (all breakpoints) ========== */

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kink-game-media-link.is-microtrailer-loading::after {
    animation: none;
  }
}

/* --- max-width: 1200px --- */
@media (max-width: 1200px) {
  .panel {
    padding: 60px 90px 140px;
  }
  .news-type-checkbox__circle {
    --size: 20px;
  }
  .panel#game-news {
    padding-bottom: 290px;
  }
}

/* --- max-width: 900px --- */
@media (max-width: 900px) {
  .settings-overlay__panel {
    margin: 20px 16px;
  }
  .review-quotes {
    grid-template-columns: minmax(0, 1fr);
  }
  .kink-cat-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .kink-game-rating {
    font-size: 16px;
  }

  .kink-game-rating .rating-hearts {
    font-size: 20px;
  }

  .kink-game-gallery-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kink-game-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .kink-game-compact-actions {
    align-items: flex-start;
  }

  .search-selector {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .search-selector-card {
    width: 100%;
  }

  .search-name-row {
    width: 100%;
  }

  .search-filters-row {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .search-filters-row .filter {
    width: 100%;
  }

  .search-filters-row .pill {
    width: 100%;
  }

  .search-filter-collapsible__header {
    margin-bottom: 0;
    cursor: pointer;
  }

  .search-filter-collapsible__title {
    font-size: 20px;
  }

  .search-filter-collapsible__toggle {
    display: flex;
  }

  .search-filter-collapsible:not(.is-expanded) .search-filter-collapsible__body {
    display: none;
  }

  .search-filter-collapsible.is-expanded .search-filter-collapsible__toggle i {
    transform: rotate(180deg);
  }

  .search-filter-collapsible__body {
    margin-top: 14px;
  }

  .search-selector-input {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .search-selector-input input {
    width: 100%;
  }

  .search-filter-bar {
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .hero-kicker {
      font-size: 18px;
      opacity: 0.75;
      margin-bottom: 5px;
  }
  .hero-subtitle {
      font-size: 18px;
      margin-top: 8px;
  }
  .panel-title{
      font-size: 34px;
      line-height: 100%;
      padding-bottom: 5px;
  }

  .site-nav {
    gap: 16px;
    font-size: 22px;
  }

  .hero-title {
    font-size: 62px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-grid > .news-card,
  .news-grid > .news-grid__sidebar {
    grid-column: span 1 !important;
  }
  .news-grid--has-sidebar .news-grid__sidebar {
    order: -1;
  }
  .news-sidebar .search-filter-collapsible__header {
    cursor: pointer;
  }
  .news-sidebar .search-filter-collapsible__toggle {
    display: flex;
  }
  .news-sidebar .search-filter-collapsible:not(.is-expanded) .search-filter-collapsible__body {
    display: none;
  }
  .news-sidebar .search-filter-collapsible.is-expanded .search-filter-collapsible__toggle i {
    transform: rotate(180deg);
  }
  .news-sidebar .search-filter-collapsible__body {
    margin-top: 12px;
  }
  .news-sidebar .search-filter-collapsible__title {
    font-size: 20px;
  }
}

/* --- max-width: 720px --- */
@media (max-width: 720px) {
  body {
    padding: 0 0 60px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .site-nav {
    flex-wrap: wrap;
    position: absolute;
        top: 30px;
    right: 24px;
  }

  .site-nav .nav-link {
    display: none;
  }

  .details-right-title{
      margin-top: 25px;
  }
  .details-left .pill-outline{
    display: none;
  }

  .panel-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    margin-top: -80px;
    padding: 160px 30px 150px;
    margin-top: -150px;
  }

  .panel {
    border-radius: 40px 40px 13px 13px;
    padding: 50px 28px 140px;
  }
  .hero-search input {
      width: 75%;
  }

  .kink-az-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .kink-az-cols {
    flex-direction: column;
  }

  .kink-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--quarters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--halves {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .game-hero-side {
    align-items: flex-start;
  }

  .game-hero-menu {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .game-hero-menu a {
    flex: 1 1 50%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .game-hero-menu a:nth-child(-n + 2) {
    border-top: none;
  }

  .game-hero-menu .menu-up {
    flex: 1 1 100%;
  }

  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-lists {
    grid-template-columns: minmax(0, 1fr);
  }

  .details-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-row{
    display: block;
  }

  .details-cover{
    max-height: 380px;
  }
  .game_area_description{
    max-height: 320px;
  }


.media-row .media-thumb{ 

    display: inline-block;
    width: 32%;
        min-height: auto;
}

  .kink-game-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .kink-game-description {
    max-width: none;
    width: 100%;
  }

  .kink-game-actions .pill {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .kink-game-title {
    font-size: 28px;
  }

  .kink-game-compact .kink-game-thumb {
    width: 100%;
    max-width: 100%;
  }

  .search-overlay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-filters-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-columns: none;
    gap: 16px;
  }
  .search-selector-card label{
      padding-bottom: 10px;
      display: inline-block;
  }
  .search-filters-row .range {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .search-filters-row input,
  .search-filters-row select,
  .search-filters-row .pill {
    width: 100%;
    max-width: 100%;
  }


}

/* --- max-width: 620px --- */
@media (max-width: 620px) {

  .mega-menu{
      width: 90%;
  }

  .summary-lists div{
      border-right:none;
  }
  
.kink-az-title{
    line-height: 100%;
    margin-bottom: 20px;
}
  
  .news-detail-tags .pill{
    padding: 10px 20px;
    font-size: 16px;
}

  .summary-lists{
      padding-top: 10px;
  }

  .summary-lists div {
      border-right: none;
      padding-left: 0px;
  }
  .summary-lists div:nth-child(2) {
      padding-left: 60px;
  }
  .summary-lists div:last-child {
      border-right: none;
      padding-left: 0px;
      padding-bottom: 30px;
  }

  .updates-panel,
  .news-panel {
    padding: 50px 50px 50px;
  }

  /* Game card: show 3 tags + expand on small screens */
  .kink-game-tags.has-more-tags:not(.is-expanded) a:nth-child(n + 4) {
    display: none;
  }
  .kink-game-tags.has-more-tags:not(.is-expanded) .kink-game-tags-expand {
    display: inline-flex;
  }
  .kink-game-tags.has-more-tags.is-expanded .kink-game-tags-expand {
    display: none;
  }

  .related-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

}

/* --- max-width: 550px --- */
@media (max-width: 550px) {
  .hello-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hello-bar__actions {
    width: 100%;
    justify-content: space-between;
  }
  .kink-cat-controls {
    display: none;
  }

  [data-description-toggle] {
    display: none;
  }

  .kink-game-gallery {
    overflow: hidden;
  }

  .kink-game-gallery-carousel {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0;
  }

  .kink-game-gallery-prev,
  .kink-game-gallery-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s;
  }

  .kink-game-gallery-prev:hover,
  .kink-game-gallery-prev:focus-visible,
  .kink-game-gallery-next:hover,
  .kink-game-gallery-next:focus-visible {
    background: rgba(0, 0, 0, 0.55);
  }

  .kink-game-gallery-prev {
    left: 0;
  }

  .kink-game-gallery-next {
    right: 0;
  }

  .kink-game-gallery-track {
    display: flex;
    flex: 1;
    transition: transform 0.3s ease;
  }

  .kink-game-gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .kink-az-item{
      font-size: 16px;
  }
}

/* --- max-width: 420px --- */
@media (max-width: 420px) {

  .mega-menu-section__content {
    padding-bottom: 14px;
  }
  .menu-link {
    font-size: 20px;
  }
  .mega-menu{
    padding: 30px 25px 30px;
  }
  .site-nav {
    gap: 3px;
  }
  
  .card-label{
    font-size:18px;
  }
  .card-media, .card-grid--halves .card-media {
    height: 125px;
  }
  .card-grid{
    gap:15px;
  }

  .hero-sub-text, .footer-link-text{ 
    font-size:16px;
  }

  .kink-game-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .kink-game-rating {
      align-items: flex-start;
      display: block;
  }
  .kink-game-rating span {
    font-size: 14px;
    display: inline-block;
  }
  .rating-hearts {
    display: inline-block;
    font-size: 18px;
  }

  .updates-link{
    display: none;
  }

  .updates-panel, .news-panel {
    padding: 40px 30px 30px;
  }

}
