/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

/* Default font for entire site */
:root,
[data-bs-theme='light'],
[data-bs-theme='dark'] {
  --bs-font-sans-serif: 'Almarai', 'Tajawal', -apple-system, blinkmacsystemfont, 'Segoe UI', sans-serif;
  --bs-primary: #660000;
  --bs-primary-rgb: 102, 0, 0;
  --bs-link-color: #660000;
  --bs-link-hover-color: #4d0000;
  --brand-maroon: #660000;
  --brand-maroon-dark: #4d0000;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
}

.locale-switcher i {
  font-size: 1.15em;
  line-height: 1;
}

.locale-switcher--nav {
  padding: 0.35rem 0.7rem;
  border: 1.5px solid #660000;
  border-radius: 999px;
  color: #660000 !important;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.locale-switcher-fixed {
  position: fixed;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1200;
  pointer-events: none;
}

.locale-switcher-fixed .locale-switcher {
  pointer-events: auto;
}

.locale-switcher--fixed {
  padding: 0.4rem 0.75rem;
  border: 1.5px solid #660000;
  border-radius: 999px;
  color: #660000 !important;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  line-height: 1;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.locale-switcher--fixed:hover {
  background: #660000;
  color: #fff !important;
}

.locale-switcher--nav:hover {
  background: #660000;
  color: #fff !important;
}

.locale-switcher--nav.locale-switcher--short span {
  font-weight: 800;
}

.locale-switcher--dashboard {
  opacity: 0.92;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(102, 0, 0, 0.35);
  border-radius: 999px;
  color: #660000 !important;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
}

.locale-switcher--dashboard:hover,
.locale-switcher--auth:hover {
  opacity: 1;
}

.locale-switcher--blob {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.2rem 0.5rem;
  color: inherit;
  font-size: 1em;
  font-weight: 700;
}

.blob-nav__locale {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.25rem;
  padding-top: 0.15rem;
  text-align: center;
}

.locale-switcher--auth {
  font-size: 0.92rem;
  color: #fff !important;
  padding: 0.35rem 0.7rem;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

.locale-switcher--auth:hover {
  color: #fff !important;
  border-color: #fff;
  opacity: 1;
}

html[dir='ltr'] body {
  text-align: start;
}

body,
html {
  font-family: 'Almarai', 'Tajawal', sans-serif !important;
}

.menu .app-brand.demo {
  height: 64px;
  margin-top: 12px;
}

.app-brand-logo.demo svg {
  width: 22px;
  height: 38px;
}

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.5px;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 74px !important;
}
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 62px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 231px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

/*
* Landing page header
******************************************************************************/

nav.layout-navbar {
  z-index: 1080 !important;
  background-color: transparent;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

nav.layout-navbar.navbar-active {
  background-color: rgba(242, 239, 235, 0.98) !important;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

body.has-site-frame:not(.dashboard-user-site) nav.layout-navbar.navbar-active {
  background-color: #f2efeb !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.has-site-frame:not(.dashboard-user-site) nav.layout-navbar.navbar-active::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  block-size: 100%;
  inline-size: 100%;
  background-color: #f2efeb;
  background-image: url('../img/background-1988.jpeg');
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
  background-attachment: fixed;
  background-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.has-site-frame:not(.dashboard-user-site) nav.layout-navbar.navbar-active > .container {
  position: relative;
  z-index: 1;
}

.landing-header-top {
  margin-block: 1rem 0.5rem;
  padding-block-start: 3rem;
  transition: margin 0.2s ease-in-out, padding 0.2s ease-in-out;
}

nav.layout-navbar.navbar-active .landing-header-top {
  margin-block: 0.65rem 0.4rem;
  padding-block-start: 2.5rem;
}

.landing-logo-above img {
  width: 270px;
  max-width: min(90vw, 320px);
  height: auto;
  transition: width 0.2s ease-in-out;
}

nav.layout-navbar.navbar-active .landing-logo-above img {
  width: 210px;
}

nav.layout-navbar .navbar.landing-navbar {
  --bs-front-navbar-bg: transparent;
  --bs-front-navbar-border-color: #660000;
  margin-block-start: 0.75rem;
  background-color: transparent !important;
  border: 2px solid #660000 !important;
  transition: margin 0.2s ease-in-out;
}

nav.layout-navbar.navbar-active .landing-navbar {
  background-color: transparent !important;
  box-shadow: none;
  margin-block-start: 0.35rem;
}

nav.layout-navbar.navbar-active::before {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

nav.layout-navbar .navbar.landing-navbar .navbar-nav.landing-nav-links .nav-link {
  color: #660000 !important;
}

nav.layout-navbar .navbar.landing-navbar .navbar-nav.landing-nav-links .nav-link:hover,
nav.layout-navbar .navbar.landing-navbar .navbar-nav.landing-nav-links .show > .nav-link,
nav.layout-navbar .navbar.landing-navbar .navbar-nav.landing-nav-links .active > .nav-link,
nav.layout-navbar .navbar.landing-navbar .navbar-nav.landing-nav-links .nav-link.active {
  color: #4d0000 !important;
}

.landing-nav-icon {
  color: #660000 !important;
}

.landing-music-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.landing-music-toggle__icon {
  display: block;
  inline-size: 1.65rem;
  block-size: 1.65rem;
  color: #660000;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.landing-music-toggle__svg {
  display: block;
  inline-size: 100%;
  block-size: 100%;
}

.landing-music-toggle__muted-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  inline-size: 1.65rem;
  block-size: 1.65rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.landing-music-toggle__muted-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  inline-size: 125%;
  block-size: 2.5px;
  background-color: #660000;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 1px;
}

.landing-music-toggle:hover .landing-music-toggle__icon,
.landing-music-toggle:focus-visible .landing-music-toggle__icon {
  opacity: 1;
}

.landing-music-toggle.is-playing .landing-music-toggle__icon {
  opacity: 1;
  transform-origin: 50% 50%;
  animation: landing-music-wiggle 2.2s ease-in-out infinite;
}

.landing-music-toggle.is-muted .landing-music-toggle__icon {
  opacity: 0.4;
  animation: none;
}

@keyframes landing-music-wiggle {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  50% {
    transform: translateX(0);
  }

  75% {
    transform: translateX(2px);
  }
}

.landing-music-toggle.is-muted .landing-music-toggle__muted-mark {
  opacity: 1;
}

@media (min-width: 992px) {
  nav.layout-navbar .navbar.landing-navbar {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
  }

  nav.layout-navbar .navbar.landing-navbar .landing-nav-menu {
    position: absolute;
    inset-inline: 0;
    margin-inline: auto;
    inline-size: fit-content;
    max-inline-size: calc(100% - 18rem);
    flex-grow: 0 !important;
    flex-basis: auto !important;
    display: flex !important;
    justify-content: center;
    transform: none;
    pointer-events: none;
  }

  nav.layout-navbar .navbar.landing-navbar .landing-nav-links {
    justify-content: center;
    flex-direction: row;
    margin-inline: 0 !important;
    pointer-events: auto;
  }

  nav.layout-navbar .navbar.landing-navbar > .navbar-nav.ms-auto {
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
    flex-shrink: 0;
    margin-inline-start: auto !important;
    gap: 0.15rem;
  }

  nav.layout-navbar .navbar.landing-navbar > .navbar-nav.ms-auto .btn {
    white-space: nowrap;
  }

  nav.layout-navbar .navbar.landing-navbar > .navbar-nav.landing-navbar-tools > .nav-item {
    flex-shrink: 0;
  }
}

@media (max-width: 991.98px) {
  nav.layout-navbar .navbar.landing-navbar .landing-nav-menu {
    background-color: transparent;
  }
}

.landing-hero .hero-title {
  animation: none !important;
  background: linear-gradient(135deg, #000000 0%, #660000 45%, #000000 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% auto !important;
  color: transparent !important;
  font-size: 25px !important;
  line-height: 1.5 !important;
}

@media (min-width: 1200px) {
  .landing-hero .hero-title {
    font-size: 25px !important;
  }
}

.hero-typewriter-cursor {
  display: inline-block;
  margin-inline-start: 0.1rem;
  color: #660000;
  -webkit-text-fill-color: #660000;
  animation: hero-typewriter-blink 0.75s step-end infinite;
}

.hero-typewriter-cursor--done {
  opacity: 0;
  animation: none;
}

@keyframes hero-typewriter-blink {
  50% {
    opacity: 0;
  }
}

#landingIssues .card-title,
#landingProducts .card-title,
#landingCatalog .card-title,
#dashboardCrimesFile .card-title {
  text-align: center;
}

#landingProducts .card {
  overflow: visible;
}

#landingCatalog .card {
  overflow: visible;
}

#landingIssues .card {
  overflow: visible;
}

.landing-catalog-toolbar {
  max-inline-size: 52rem;
  margin-inline: auto;
}

.landing-ranks-section {
  padding-block: 1.25rem 0.5rem;
}

.landing-section-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.landing-section-toolbar__title {
  position: relative;
  margin: 0;
  color: #111;
  font-weight: 900;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.landing-section-toolbar__title::after {
  content: '';
  display: block;
  width: 4.25rem;
  height: 4px;
  margin-top: 0.35rem;
  background: #bc0e1c;
  border-radius: 2px;
}

.landing-section-toolbar__action {
  flex-shrink: 0;
  margin-top: 0.15rem;
  align-self: flex-start;
}

.landing-catalog-search .input-group-text {
  background-color: #fff;
  border-color: rgba(102, 0, 0, 0.18);
  color: #660000;
}

.landing-catalog-search .form-control {
  border-color: rgba(102, 0, 0, 0.18);
}

.landing-catalog-search .form-control:focus {
  border-color: #660000;
  box-shadow: 0 0 0 0.15rem rgba(102, 0, 0, 0.12);
}

.landing-catalog-filters {
  display: flex;
  gap: 0.5rem;
  block-size: 100%;
}

.landing-catalog-filters__btn {
  flex: 1 1 0;
  border: 1px solid rgba(102, 0, 0, 0.2);
  border-radius: 0.35rem;
  background-color: #fff;
  color: #660000;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.landing-catalog-filters__btn:hover,
.landing-catalog-filters__btn:focus {
  background-color: rgba(102, 0, 0, 0.06);
  color: #660000;
}

.landing-catalog-filters__btn.is-active {
  background-color: #660000;
  border-color: #660000;
  color: #fff;
}

.landing-issues-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.landing-issues-filters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(102, 0, 0, 0.2);
  border-radius: 0.35rem;
  background-color: #fff;
  color: #660000;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.landing-issues-filters__btn:hover,
.landing-issues-filters__btn:focus {
  background-color: rgba(102, 0, 0, 0.06);
  color: #660000;
}

.landing-issues-filters__btn.is-active {
  background-color: #660000;
  border-color: #660000;
  color: #fff;
}

.landing-issue-action-bar__details.is-disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: default;
}

#landingProducts .price-currency {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  inline-size: 100%;
}

#landingCatalog .card > .ratio,
#landingProducts .card > .ratio,
#landingIssues .card > .ratio {
  overflow: hidden;
}

#landingCatalog .card .card-body,
#landingIssues .card .card-body,
#landingProducts .card .card-body,
#dashboardCrimesFile .card .card-body {
  background-color: #35302c;
  color: #f2efeb;
}

#landingCatalog .card .card-title,
#landingIssues .card .card-title,
#landingProducts .card .card-title,
#dashboardCrimesFile .card .card-title {
  color: #fff;
}

#landingCatalog .card .landing-issue-prerequisite-notice,
#landingIssues .card .landing-issue-prerequisite-notice,
#landingProducts .card .landing-issue-prerequisite-notice,
#dashboardCrimesFile .card .landing-issue-prerequisite-notice,
#landingCatalog .card .landing-issue-novel-notice,
#landingIssues .card .landing-issue-novel-notice,
#landingProducts .card .landing-issue-novel-notice,
#dashboardCrimesFile .card .landing-issue-novel-notice {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f2efeb;
}

#landingCatalog .card .landing-issue-prerequisite-notice a,
#landingIssues .card .landing-issue-prerequisite-notice a,
#landingProducts .card .landing-issue-prerequisite-notice a,
#dashboardCrimesFile .card .landing-issue-prerequisite-notice a,
#landingCatalog .card .landing-issue-novel-notice a,
#landingIssues .card .landing-issue-novel-notice a,
#landingProducts .card .landing-issue-novel-notice a,
#dashboardCrimesFile .card .landing-issue-novel-notice a {
  color: #fff;
}

#dashboardCrimesFile .dashboard-crimes-file__title,
#dashboardCrimesFile .dashboard-crimes-file__subtitle {
  color: #000 !important;
}

.dashboard-flow-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.dashboard-flow-step__number {
  flex: 0 0 auto;
  display: block;
  width: 2.5rem;
  height: 4.6rem;
  object-fit: contain;
  transform-origin: center bottom;
  animation: dashboard-flow-step-pulse 1.8s ease-in-out infinite;
}

@keyframes dashboard-flow-step-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(102, 0, 0, 0));
  }

  50% {
    transform: translateY(-0.35rem) scale(1.06);
    filter: drop-shadow(0 0 0.45rem rgba(102, 0, 0, 0.4));
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-flow-step__number {
    animation: none;
  }
}

.dashboard-flow-step__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.25;
}

.dashboard-flow-step__label {
  color: #660000;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
}

.dashboard-flow-step__action {
  color: #111;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
}

body.dashboard-user-site .dashboard-game-play__title {
  color: #000 !important;
}

body.dashboard-user-site .dashboard-game-play__back-btn {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

body.dashboard-user-site .dashboard-game-play__back-btn:hover,
body.dashboard-user-site .dashboard-game-play__back-btn:focus {
  background-color: #222 !important;
  border-color: #222 !important;
  color: #fff !important;
}

body.dashboard-user-site .dashboard-game-play__crime-type {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background-color: #bc0e1c;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 0.25rem;
}

body.dashboard-user-site .dashboard-game-play__media {
  padding: 0.7rem 0.65rem;
}

body.dashboard-user-site .dashboard-game-play__media .landing-issue-media {
  border-radius: 0 !important;
}

body.dashboard-user-site .dashboard-game-play__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.dashboard-user-site .dashboard-game-play__meta {
  justify-content: flex-start;
}

body.dashboard-user-site .dashboard-game-play__meta .landing-crime-date__label {
  color: #660000 !important;
}

body.dashboard-user-site .dashboard-game-play__meta .landing-crime-date__value {
  color: #000 !important;
}

body.dashboard-user-site .dashboard-game-play__meta .landing-crime-date__item {
  background-color: #ead7ac !important;
  border-color: rgba(102, 0, 0, 0.2) !important;
}

#dashboardCrimesFile .landing-crime-date__value {
  color: #000 !important;
}

#dashboardCrimesFile .landing-crime-date__item {
  background-color: #ead7ac !important;
  border-color: rgba(102, 0, 0, 0.2) !important;
}

#dashboardCrimesFile .text-body-secondary {
  color: rgba(242, 239, 235, 0.78) !important;
}

#dashboardCrimesFile .landing-card-frame {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-block-end: 0;
}

#dashboardCrimesFile .landing-card-frame > .card-body {
  flex: 1 1 auto;
}

#dashboardCrimesFile .landing-issue-action-bar {
  position: relative;
  z-index: 1;
  margin-block-start: 0;
  border-block-start: none;
  background-color: #660000;
}

#dashboardCrimesFile .landing-issue-action-bar__details {
  border-block-start: none;
  background-color: #660000;
  color: #fff;
}

#dashboardCrimesFile .landing-issue-action-bar__details:hover,
#dashboardCrimesFile .landing-issue-action-bar__details:focus {
  background-color: #4d0000;
  color: #fff;
}

#dashboardCrimesFile .landing-issue-action-bar__details.is-disabled {
  background-color: #660000;
  color: #fff;
  opacity: 1;
}

.landing-issue-action-bar {
  margin-block-start: auto;
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
  inline-size: 100%;
}

.landing-issue-action-bar__row {
  display: flex;
  align-items: stretch;
  inline-size: 100%;
  min-block-size: 3rem;
  overflow: visible;
}

.landing-issue-action-bar__prices {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  min-inline-size: 0;
  background-color: #ead7ac;
  position: relative;
  overflow: visible;
}

.landing-issue-action-bar__cell {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.4rem;
  background-color: transparent;
}

.landing-issue-action-bar__cell--cart {
  position: relative;
  flex: 0 0 3.6rem;
  padding: 0;
  overflow: visible;
  background: #660000;
  z-index: 1;
}

.landing-issue-action-bar__cell--cart::before {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  z-index: 2;
  inline-size: 1.4rem;
  block-size: 2.4rem;
  background: #ead7ac;
  clip-path: polygon(100% 0, 100% 100%, 62% 50%);
  transform: translate(22%, -50%);
  pointer-events: none;
}

.landing-issue-action-bar__price {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
}

.landing-issue-action-bar__price--old {
  position: relative;
  color: #660000;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
}

.landing-issue-action-bar__price--old::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 50%;
  block-size: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
}

.landing-issue-action-bar__price .price-currency__icon {
  opacity: 1;
}

.landing-issue-action-bar__price--old .price-currency__icon {
  inline-size: 0.85em;
  block-size: 0.85em;
  filter: none;
  opacity: 0.9;
}

.landing-issue-action-bar__price--new {
  color: #000;
  font-size: 0.95rem;
  font-weight: 800;
}

.landing-issue-action-bar__details {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 100%;
  min-block-size: 2.85rem;
  padding: 0.65rem 0.75rem;
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #35302c;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-issue-action-bar__details:hover,
.landing-issue-action-bar__details:focus {
  background-color: #660000;
  color: #fff;
}

.landing-issue-action-bar__cell--cart .landing-cart-icon-form {
  inline-size: 100%;
  block-size: 100%;
  margin: 0;
}

.landing-issue-action-bar__cell--cart .landing-cart-icon-btn {
  inline-size: 100%;
  block-size: 100%;
  min-block-size: 3rem;
  padding: 0;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
}

.landing-issue-action-bar__cell--cart .landing-cart-icon-btn:hover,
.landing-issue-action-bar__cell--cart .landing-cart-icon-btn:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

.landing-issue-action-bar__cell--cart .landing-cart-icon-btn .bx {
  font-size: 1.25rem;
  line-height: 1;
}

.landing-cart-icon-form {
  display: flex;
  flex-shrink: 0;
  margin: 0;
}

.landing-cart-icon-btn {
  inline-size: 2.5rem;
  block-size: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #660000 !important;
  background-color: #fff !important;
  color: #660000 !important;
}

.landing-cart-icon-btn:hover,
.landing-cart-icon-btn:focus {
  background-color: #660000 !important;
  color: #fff !important;
}

.landing-cart-icon-btn .bx {
  font-size: 1.2rem;
  line-height: 1;
}

.cart-icon-svg {
  display: inline-block;
  inline-size: 1.15em;
  block-size: 1.15em;
  flex-shrink: 0;
  vertical-align: middle;
}

.cart-icon-svg--nav {
  inline-size: 1.5rem;
  block-size: 1.5rem;
}

.cart-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

nav.layout-navbar .navbar-nav .nav-item:has(.cart-nav-link) {
  overflow: visible;
}

.cart-count-badge {
  position: absolute;
  top: -1rem;
  inset-inline-end: 0.9rem;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.cart-count-badge__wrap {
  position: relative;
  display: block;
  inline-size: 3rem;
  block-size: 2.25rem;
  transform-origin: 50% 85%;
  animation: cart-count-wiggle 2.2s ease-in-out infinite;
}

.cart-count-badge--wide .cart-count-badge__wrap {
  inline-size: 3.45rem;
}

.cart-count-badge__shape {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 100%;
  overflow: visible;
  display: block;
}

.cart-count-badge__num {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  inline-size: 62%;
  text-align: center;
  color: #660000 !important;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  animation: cart-count-pulse 2.2s ease-in-out infinite;
}

@keyframes cart-count-wiggle {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  20% {
    transform: rotate(-2.5deg) translateY(-2px);
  }

  40% {
    transform: rotate(2deg) translateY(0);
  }

  60% {
    transform: rotate(-1.5deg) translateY(-1px);
  }

  80% {
    transform: rotate(1.5deg) translateY(0);
  }

  100% {
    transform: rotate(0deg) translateY(0);
  }
}

@keyframes cart-count-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/******************************************************************************
* Cart floating stack + sidebar
******************************************************************************/

.cart-floating-stack {
  position: fixed;
  left: 0;
  top: 50%;
  bottom: auto;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  transform: translateY(-50%);
}

@media (max-width: 575.98px) {
  body.has-site-frame:not(.mobile-home-page) #cartFloatingStack {
    display: none !important;
  }
}

.cart-floating-badge {
  display: block;
  padding: 0;
  margin-left: 1.1rem;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.cart-floating-badge:hover,
.cart-floating-badge:focus {
  background: transparent;
  box-shadow: none;
}

.cart-speech-bubble__wrap {
  position: relative;
  display: block;
  inline-size: 3.6rem;
  block-size: 2.7rem;
  transform-origin: 50% 85%;
  animation: cart-count-wiggle 2.2s ease-in-out infinite;
}

.cart-floating-badge--empty .cart-speech-bubble__wrap {
  inline-size: 5.2rem;
  block-size: 3.9rem;
}

.cart-speech-bubble__shape {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 100%;
  overflow: visible;
  display: block;
}

.cart-speech-bubble__text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  inline-size: 70%;
  text-align: center;
  color: #660000;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  animation: cart-count-pulse 2.2s ease-in-out infinite;
}

.cart-speech-bubble__label-stack {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  inline-size: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  text-align: center;
  color: #660000;
  font-weight: 800;
  line-height: 1.1;
  animation: cart-count-pulse 2.2s ease-in-out infinite;
}

.cart-speech-bubble__label-stack .cart-speech-bubble__text--fixed,
.cart-speech-bubble__label-stack .cart-speech-bubble__text--swap {
  position: static;
  transform: none;
  inline-size: auto;
  animation: none;
  font-size: 0.72rem;
  line-height: 1.1;
}

.cart-speech-bubble__text--swap {
  transition: opacity 0.25s ease;
}

.cart-speech-bubble__text--fade-out {
  opacity: 0;
}

.cart-floating-trigger {
  display: flex;
  padding-left: 0px !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0.55rem 0.75rem 0;
  min-inline-size: 3.1rem;
  border: 2px solid #660000;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  background: #f2efeb;
  color: #660000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cart-floating-badge:hover .cart-speech-bubble__text,
.cart-floating-badge:focus .cart-speech-bubble__text {
  color: #000;
}

.cart-floating-trigger:hover,
.cart-floating-trigger:focus {
  background: #660000;
  color: #fff;
  box-shadow: 0 10px 28px rgba(102, 0, 0, 0.22);
}

.cart-floating-trigger__icon {
  inline-size: 1.65rem;
  block-size: 1.65rem;
}

.cart-floating-trigger__total {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
}

.cart-floating-trigger--empty .cart-floating-trigger__total {
  opacity: 0.55;
}

body.is-cart-page #cartFloatingStack {
  display: none !important;
}

.cart-money {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1;
}

.cart-money__icon {
  inline-size: 1em;
  block-size: 1em;
  flex-shrink: 0;
  object-fit: contain;
}

.cart-money--maroon,
.cart-money--maroon .cart-money__amount {
  color: #660000;
  font-weight: 800;
}

#cart-page .cart-line-total .cart-money--maroon {
  font-size: 1rem;
}

#cart-page .cart-page__total .cart-money--maroon {
  font-size: 1.25rem;
}

#cart-page .cart-line__placeholder {
  background: rgba(102, 0, 0, 0.08);
  color: #660000;
}

#cart-page .btn-cart-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #660000;
  --bs-btn-border-color: #660000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #520000;
  --bs-btn-hover-border-color: #520000;
  --bs-btn-focus-shadow-rgb: 102, 0, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #450000;
  --bs-btn-active-border-color: #450000;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #660000;
  --bs-btn-disabled-border-color: #660000;
}

#cart-page .cart-remove-btn {
  --bs-btn-color: #660000;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #660000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #660000;
  --bs-btn-hover-border-color: #660000;
}

#cart-page .card {
  border-color: rgba(102, 0, 0, 0.12);
}

#cart-page #cart-discount-row {
  color: #660000 !important;
}

.cart-sidebar {
  inline-size: min(22rem, 92vw);
  background: #f2efeb;
  border-inline-start: 2px solid rgba(102, 0, 0, 0.18);
}

.cart-sidebar__header {
  border-block-end: 1px solid rgba(102, 0, 0, 0.12);
  padding-block: 1rem;
}

.cart-sidebar__title {
  color: #660000;
  font-weight: 800;
}

.cart-sidebar__body {
  padding-block: 1rem 1.25rem;
}

.cart-sidebar__lines {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
  max-block-size: calc(100vh - 14rem);
  padding-inline-end: 0.15rem;
}

.cart-sidebar-line {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(102, 0, 0, 0.14);
  border-radius: 0.65rem;
  background: #fff;
}

.cart-sidebar-line__image,
.cart-sidebar-line__placeholder {
  inline-size: 3.5rem;
  block-size: 3.5rem;
  border-radius: 0.45rem;
  object-fit: cover;
}

.cart-sidebar-line__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 0, 0, 0.08);
  color: #660000;
}

.cart-sidebar-line__name {
  margin: 0 0 0.25rem;
  color: #660000;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.cart-sidebar-line__meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-sidebar-line__qty {
  color: #660000;
}

.cart-sidebar-line__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 1.75rem;
  block-size: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(102, 0, 0, 0.08);
  color: #660000;
}

.cart-sidebar-line__remove:hover,
.cart-sidebar-line__remove:focus {
  background: #660000;
  color: #fff;
}

.cart-sidebar__summary-label {
  color: #660000;
  font-weight: 700;
}

.cart-sidebar__summary-value {
  color: #000;
  font-weight: 800;
}

.landing-cart-icon-btn .cart-icon-svg {
  inline-size: 1.25rem;
  block-size: 1.25rem;
}

.add-to-cart-btn .cart-icon-svg {
  inline-size: 1.05rem;
  block-size: 1.05rem;
}

.add-to-cart-btn-wrap {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.add-to-cart-btn-wrap.is-celebrating-wrap::after {
  content: '';
  position: absolute;
  inset: -0.35rem;
  border: 2px solid rgba(102, 0, 0, 0.45);
  border-radius: 0.45rem;
  animation: cart-celebrate-ring-local 0.75s ease-out forwards;
  pointer-events: none;
}

.add-to-cart-btn-wrap--icon {
  inline-size: 100%;
  block-size: 100%;
}

.add-to-cart-btn.is-celebrating {
  animation: cart-btn-celebrate 0.65s ease;
  z-index: 2;
}

.add-to-cart-btn--success {
  background-color: #660000 !important;
  border-color: #660000 !important;
  color: #fff !important;
}

.add-to-cart-btn--in-cart,
.add-to-cart-in-cart .add-to-cart-btn--in-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ead7ac !important;
  border: 2px solid #660000 !important;
  color: #660000 !important;
  font-weight: 700;
  pointer-events: none;
}

.add-to-cart-in-cart--icon,
.add-to-cart-in-cart--icon .landing-cart-icon-btn {
  inline-size: 100%;
  block-size: 100%;
}

.landing-issue-action-bar__cell--cart .add-to-cart-in-cart--icon .add-to-cart-btn--in-cart {
  inline-size: 100%;
  block-size: 100%;
  min-block-size: 3rem;
  border: none !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
}

@keyframes cart-celebrate-ring-local {
  from {
    transform: scale(0.75);
    opacity: 0.95;
  }

  to {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes cart-btn-celebrate {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.14);
  }

  100% {
    transform: scale(1);
  }
}

.cart-celebrate-ring {
  position: fixed;
  z-index: 1080;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  margin-inline-start: -1.25rem;
  margin-block-start: -1.25rem;
  border: 3px solid #660000;
  border-radius: 50%;
  pointer-events: none;
  animation: cart-celebrate-ring-fly 0.75s ease-out forwards;
}

@keyframes cart-celebrate-ring-fly {
  from {
    transform: scale(0.35);
    opacity: 0.95;
  }

  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

.cart-celebrate-particle {
  position: fixed;
  z-index: 1081;
  border-radius: 1px;
  pointer-events: none;
  animation: cart-particle-fly 0.85s cubic-bezier(0.15, 0.7, 0.2, 1) forwards;
}

@keyframes cart-particle-fly {
  from {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }

  to {
    transform: translate(var(--tx), var(--ty)) scale(0.15) rotate(180deg);
    opacity: 0;
  }
}

.landing-crime-date {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.landing-crime-date__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-inline-size: 4.5rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(102, 0, 0, 0.2);
  border-radius: 0.35rem;
  background-color: #ead7ac;
}

.landing-crime-date__label {
  color: #660000;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.landing-crime-date__value {
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.landing-crime-type-badge {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 5;
  background-color: #660000 !important;
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  line-height: 1.3;
}

.landing-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  background-color: #bc0e1c;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 0.25rem;
}

.landing-coming-soon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 100%;
  min-block-size: 2.85rem;
  padding: 0.65rem 0.75rem;
  background-color: #660000;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: default;
  user-select: none;
}

.landing-product-badge {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 3rem;
  block-size: 3rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.landing-issue-soon-overlay {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transform: translateY(0.75rem);
  z-index: 2;
  pointer-events: none;
}

.landing-issue-chain-overlay {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  z-index: 3;
  pointer-events: none;
}

.landing-issue-novel-overlay {
  position: absolute;
  z-index: 4;
  inline-size: 62%;
  max-inline-size: 9rem;
  block-size: auto;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
}

.landing-issue-novel-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(102, 0, 0, 0.14);
  border-radius: 0.35rem;
  background-color: rgba(102, 0, 0, 0.05);
  color: #660000;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: start;
}

.landing-issue-novel-notice .bx {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.2;
  margin-block-start: 0.05rem;
}

.landing-issue-novel-notice a {
  color: #660000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-issue-novel-notice a:hover,
.landing-issue-novel-notice a:focus {
  color: #6f0000;
}

.landing-issue-prerequisite-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(102, 0, 0, 0.18);
  border-radius: 0.35rem;
  background-color: rgba(102, 0, 0, 0.06);
  color: #660000;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: start;
}

.landing-issue-prerequisite-notice .bx {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.2;
  margin-block-start: 0.05rem;
}

.landing-issue-prerequisite-notice a {
  color: #660000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-issue-prerequisite-notice a:hover,
.landing-issue-prerequisite-notice a:focus {
  color: #6f0000;
}

.landing-card-actions {
  display: flex;
  gap: 0.5rem;
  inline-size: 100%;
}

.landing-card-actions > a.btn,
.landing-card-actions > form,
.landing-card-actions > span.btn {
  flex: 1 1 0;
  min-inline-size: 0;
}

.landing-card-actions > form {
  display: flex;
  margin: 0;
}

.landing-card-actions .btn {
  inline-size: 100%;
  justify-content: center;
}

.landing-card-actions > :only-child {
  flex: 1 1 100%;
}

.landing-testimonial-rating {
  color: #660000;
}

.landing-testimonials-slider {
  padding-block: 0.25rem;
}

.landing-testimonials-slider .swiper-wrapper {
  align-items: stretch;
}

.landing-testimonials-slider .swiper-slide {
  block-size: auto;
}

.landing-testimonials-slider .swiper-slide .card {
  block-size: 100%;
}

#landingTestimonials.section-py {
  padding-block-end: 1.25rem;
}

#landingCatalog.section-py {
  padding-block-start: 1.25rem;
}

#landingTournaments.section-py {
  padding-block-end: 1.5rem;
}

#landingChallenges.section-py {
  padding-block-start: 1.5rem;
}

.landing-ratings-row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  row-gap: 1.5rem;
}

.landing-ratings-col {
  flex: 0 0 auto;
  width: 20%;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

@media (max-width: 1199.98px) {
  .landing-ratings-col {
    width: 33.333333%;
  }
}

@media (max-width: 767.98px) {
  .landing-ratings-col {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .landing-ratings-col {
    width: 100%;
  }
}

.landing-section-badge {
  background-color: transparent !important;
  background-image: url('../img/front-pages/backgrounds/border.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #660000 !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.65rem 2.25rem;
  border-radius: 0;
  line-height: 1.4;
}

.landing-card-frame {
  border: none !important;
  box-shadow: none !important;
  background-color: transparent;
  background-image: url('../img/1border.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 0.7rem 0.65rem;
  overflow: visible;
}

.landing-card-frame .landing-crime-type-badge,
.landing-card-frame .landing-product-badge {
  z-index: 2;
}

.landing-card-frame > .ratio,
.landing-card-frame > .landing-issue-media {
  border-radius: 0 !important;
}

.price-currency {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  line-height: 1;
}

.price-currency__before,
.price-currency__after {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.price-currency__before {
  position: relative;
  color: #660000 !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.8;
}

.price-currency__before::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 50%;
  block-size: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
}

.price-currency__before .price-currency__icon {
  inline-size: 0.9em;
  block-size: 0.9em;
  filter: none;
}

.price-currency__after {
  color: #660000 !important;
  font-size: 1rem;
  font-weight: 600;
}

.price-currency__after .price-currency__icon {
  filter: none;
  opacity: 1;
}

.landing-issue-action-bar__price--new .price-currency__icon {
  filter: none;
  opacity: 1;
}

.price-currency__after--sale {
  font-size: 1.12rem;
  font-weight: 800;
}

.price-currency__icon {
  inline-size: 1em;
  block-size: 1em;
  flex-shrink: 0;
  object-fit: contain;
}

p:has(.price-currency__icon) .fw-semibold.text-primary,
p:has(img[src*="drham-icon"]) .fw-semibold.text-primary {
  color: #660000 !important;
}

p:has(img[src*="drham-icon"]) {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

p:has(img[src*="drham-icon"]) img[src*="drham-icon"] {
  inline-size: 1em !important;
  block-size: 1em !important;
  object-fit: contain;
}

p:has(img[src*="drham-icon"]) span:has(img[src*="drham-icon"]) {
  display: inline-flex;
  align-items: center;
  font-size: inherit;
  color: #660000 !important;
}

.landing-bg-soft {
  opacity: 0.52;
  filter: blur(0.5px) saturate(0.88);
  object-fit: fill !important;
  inline-size: 100% !important;
  block-size: 100% !important;
  min-block-size: 100%;
  inset-block: 0;
  inset-inline: 0;
  transform: none;
  left: 0 !important;
  pointer-events: none;
  z-index: 0;
}

#hero-animation {
  position: relative;
  overflow: visible;
}

#hero-animation .landing-hero {
  background: transparent !important;
}

#hero-animation .landing-hero::after {
  display: none;
}

#hero-animation .landing-hero,
#hero-animation .landing-hero-blank {
  position: relative;
  z-index: 1;
}

.landing-hero .hero-animation-img .hero-dashboard-img {
  inline-size: 58% !important;
  max-inline-size: 400px;
}

.landing-hero .hero-animation-img .hero-dashboard-img img {
  inline-size: 100%;
  block-size: auto;
}

.landing-top-layer {
  position: fixed !important;
  top: -34px;
  left: 50%;
  inline-size: 50%;
  block-size: auto;
  max-block-size: 20rem;
  z-index: 1100;
  transform: translateX(calc(-50% - 2.5rem));
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}

/* Website blood + logo sizing (independent from dashboard) */
body.has-site-frame:not(.dashboard-user-site) .landing-top-layer {
  top: -34px !important;
  left: 50% !important;
  inline-size: 50% !important;
  width: 50% !important;
  height: auto !important;
  block-size: auto !important;
  max-height: none !important;
  max-block-size: 20rem !important;
  transform: translateX(calc(-50% - 2.5rem)) !important;
  object-fit: cover !important;
  object-position: top center !important;
  z-index: 1100 !important;
}

body.has-site-frame:not(.dashboard-user-site) .landing-logo-above img {
  width: 270px !important;
  max-width: min(90vw, 320px) !important;
  height: auto !important;
}

body.has-site-frame:not(.dashboard-user-site) nav.layout-navbar.navbar-active .landing-logo-above img {
  width: 210px !important;
  max-width: min(90vw, 320px) !important;
}

.landing-logo-above {
  position: relative;
  z-index: 1;
}

html:has(body.has-site-frame) {
  background-color: #f2efeb;
  min-height: 100%;
}

body.has-site-frame {
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  background-color: transparent !important;
  min-height: 100vh;
  min-height: 100dvh;
}

body.has-site-frame .modal-backdrop {
  --bs-backdrop-zindex: 2000;
  z-index: 2000 !important;
}

body.has-site-frame .modal {
  --bs-modal-zindex: 2010;
  z-index: 2010 !important;
}

body.has-site-frame.modal-open .layout-wrapper {
  z-index: auto !important;
}

body.has-site-frame .site-main {
  flex: 1 0 auto;
}

body.has-site-frame .landing-footer {
  flex-shrink: 0;
  margin-block-start: auto;
}

body.has-site-frame::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #f2efeb;
  background-image: url('../img/background-1988.jpeg');
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
  background-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}

body.has-site-frame section {
  background-color: transparent !important;
}

body.has-site-frame #hero-animation .landing-hero::after {
  background-color: transparent !important;
}

body.has-site-frame .scrollspy-example > section {
  background-color: transparent !important;
}

body.has-site-frame .first-section-pt {
  padding-block-start: 14.5rem !important;
}

.landing-cta.landing-hero {
  padding-block-start: 6.25rem;
}

.landing-hero::after {
  background-color: #f2efeb !important;
}

/******************************************************************************
* Information page (colors only)
******************************************************************************/

.information-page .card {
  border-color: rgba(102, 0, 0, 0.35) !important;
  background-color: rgba(255, 255, 255, 0.78);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.information-page .card:hover,
.information-page .card:focus-visible {
  border-color: #660000 !important;
  background-color: rgba(102, 0, 0, 0.05);
}

.information-page .card h5 {
  color: #000;
  transition: color 0.2s ease;
}

.information-page .card:hover h5,
.information-page .card:focus-visible h5 {
  color: #660000;
}

.information-page .card .text-body-secondary {
  color: #1a1412 !important;
  opacity: 0.8;
}

.information-page__icon {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #660000;
}

.information-page .card:hover .information-page__icon,
.information-page .card:focus-visible .information-page__icon {
  background-color: #660000 !important;
  color: #fff !important;
}

/******************************************************************************
* Site content pages (text / policies / FAQ)
******************************************************************************/

.site-content-page__body,
.site-content-page__body p,
.site-content-page__body li,
.site-content-page__body span,
.site-content-page__body div,
.site-content-page__body h1,
.site-content-page__body h2,
.site-content-page__body h3,
.site-content-page__body h4,
.site-content-page__body h5,
.site-content-page__body h6,
.site-content-page__body td,
.site-content-page__body th,
.site-content-page__body blockquote {
  color: #000 !important;
  background: transparent !important;
  background-color: transparent !important;
  font-size: 1.0625rem;
  line-height: 2;
  font-weight: 500;
}

.site-content-page__body a {
  color: #660000 !important;
  background: transparent !important;
  background-color: transparent !important;
}

.site-content-page__body p:last-child {
  margin-bottom: 0;
}

.site-content-page__empty {
  color: #000;
  font-weight: 500;
  text-align: center;
}

.site-content-page .accordion-item {
  border: 2px solid rgba(102, 0, 0, 0.3) !important;
  background-color: transparent;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.site-content-page .accordion-button {
  background-color: transparent;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none !important;
}

.site-content-page .accordion-button:not(.collapsed) {
  background-color: rgba(102, 0, 0, 0.06);
  color: #660000;
}

.site-content-page .accordion-button:focus {
  border-color: #660000;
  box-shadow: none;
}

.site-content-page .accordion-body,
.site-content-page .accordion-body * {
  background: transparent !important;
  background-color: transparent !important;
  color: #000 !important;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
}

.site-content-page .rank-card {
  border: none !important;
  background-color: transparent;
  box-shadow: none !important;
}

.site-content-page .rank-card-frame {
  background-image: url('../img/bage2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 0.75rem 0.7rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.site-content-page .rank-card .rank-card__body {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex: 1 1 auto;
  background: transparent;
  min-block-size: 9rem;
}

.site-content-page .rank-card__badge-image {
  block-size: 100%;
  inline-size: auto;
  max-inline-size: 34%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  align-self: stretch;
}

.site-content-page .rank-card__content {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  justify-content: center;
  min-inline-size: 0;
}

.site-content-page .rank-card__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-inline-start: 2.25rem;
  inline-size: min(100%, 11rem);
}

.site-content-page .rank-card__rank-media {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 100%;
}

.site-content-page .rank-card__rank-image {
  inline-size: 5rem;
  block-size: 5rem;
  object-fit: contain;
}

.site-content-page .rank-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  inline-size: 100%;
}

.site-content-page .rank-card__title,
.site-content-page .rank-card__points {
  display: block;
  inline-size: 100%;
  text-align: center;
  margin: 0;
  color: #fff;
}

.site-content-page .rank-card__title {
  font-size: 1.125rem;
  font-weight: 800;
}

.site-content-page .rank-card__points {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}

.site-content-page .rank-card h5 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
}

.site-content-page .rank-card .text-body-secondary {
  color: #fff !important;
  font-size: 0.9375rem;
  opacity: 1;
}

.site-content-page .rank-card__icon {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #660000;
}

.site-contact-form__intro {
  color: #000 !important;
}

.site-contact-form .form-label {
  color: #000 !important;
}

.site-contact-form .form-control {
  background-color: #fff !important;
}

/******************************************************************************
* Auth login page
******************************************************************************/

html:has(.auth-login-page) {
  overflow: hidden;
  height: 100%;
}

.auth-login-page {
  position: relative;
  isolation: isolate;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  background-color: #f2efeb;
}

.auth-login-page__music-toggle {
  position: fixed !important;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  padding: 0.35rem;
  border: 0;
  background: transparent;
}

.auth-login-page__mobile-chrome,
.auth-login-page__mobile-music-icon {
  display: none;
}

.auth-login-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #f2efeb;
  background-image: url('../img/auth/background-1988.jpeg');
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
  background-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}

.auth-login-page .landing-top-layer {
  z-index: 2;
}

.auth-login-page__wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  height: 100%;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.35rem, 1vh, 0.65rem);
  padding: clamp(2.5rem, 6vh, 3.5rem) 0 1rem;
}

.auth-login-page__cluster {
  position: relative;
  display: flex;
  flex-direction: row;
  direction: ltr;
  align-items: center;
  justify-content: center;
  gap: 0;
  inline-size: 100%;
  flex: 1 1 auto;
  min-block-size: 0;
  max-block-size: none;
}

.auth-login-page__tape {
  position: fixed;
  top: 50%;
  translate: 0 calc(-50% + 2.5rem);
  inline-size: calc((100vw - min(28rem, 92vw)) / 2);
  width: calc((100vw - min(28rem, 92vw)) / 2);
  block-size: calc(((100vw - min(28rem, 92vw)) / 2) * 1395 / 1508);
  height: calc(((100vw - min(28rem, 92vw)) / 2) * 1395 / 1508);
  max-block-size: calc(((100vw - min(28rem, 92vw)) / 2) * 1395 / 1508);
  max-inline-size: calc((100vw - min(28rem, 92vw)) / 2);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.auth-login-page__tape--left {
  left: 0;
  object-position: right center;
}

.auth-login-page__tape--right {
  right: 0;
  object-position: left center;
  object-fit: fill;
}

.auth-login-page__frame {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  position: relative;
  top: -31px;
  z-index: 2;
  flex: 0 0 auto;
  min-inline-size: 0;
  inline-size: 100%;
  max-inline-size: 28rem;
  flex-shrink: 0;
  block-size: 370px;
  max-block-size: 370px;
  align-self: center;
}

.auth-login-page__logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  line-height: 0;
}

.auth-login-page__logo img {
  inline-size: min(240px, 65vw);
  block-size: auto;
}

.auth-login-page__decor {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: block;
  inline-size: min(285px, 38vw);
  block-size: auto;
  margin-block: 0.1rem 0.2rem;
}

.auth-login-page__line {
  display: block;
  pointer-events: none;
  user-select: none;
}

.auth-login-page__line--top {
  grid-column: 1 / -1;
  grid-row: 1;
  inline-size: 100%;
  block-size: auto;
}

.auth-login-page__line--bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  inline-size: 100%;
  block-size: auto;
}

.auth-login-page__line--left {
  grid-column: 1;
  grid-row: 2;
  inline-size: 0.5rem;
  block-size: 340px;
  height: 354px;
  align-self: center;
  object-fit: fill;
}

.auth-login-page__line--right {
  grid-column: 3;
  grid-row: 2;
  inline-size: 0.5rem;
  block-size: 340px;
  height: 354px;
  align-self: center;
  object-fit: fill;
}

.auth-login-page__card {
  grid-column: 2;
  grid-row: 2;
  flex-shrink: 1;
  min-inline-size: 0;
  min-block-size: 0;
  overflow-y: auto;
  padding: 0.7rem 1.15rem;
  border: none;
  border-radius: 0;
  background: #181818;
  box-shadow: none;
  text-align: center;
}

.auth-login-page__card h4 {
  margin-bottom: 0.2rem !important;
  font-size: 1.15rem;
  text-align: center;
  color: #fff;
}

.auth-login-page__card > p.mb-6 {
  margin-bottom: 0.55rem !important;
  font-size: 0.9rem;
  text-align: center;
  color: #fff;
}

.auth-login-page__card .mb-6 {
  margin-bottom: 0.55rem !important;
}

.auth-login-page__card .my-7 {
  margin-block: 0.5rem !important;
}

.auth-login-page__card #formAuthentication.mb-6 {
  margin-bottom: 0.55rem !important;
  margin-inline: auto;
  max-inline-size: 100%;
  text-align: center;
}

.auth-login-page__card .my-7 .d-flex {
  justify-content: space-between !important;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
}

.auth-login-page__card .form-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: 0;
}

.auth-login-page__card .my-7 .form-check {
  direction: ltr;
}

.auth-login-page__card .my-7 .form-check-input {
  margin-left: 5px;
}

.auth-login-page__card .btn-primary {
  padding-block: 0.45rem;
  font-size: 0.95rem;
  --bs-btn-color: #000;
  --bs-btn-bg: #fdd313;
  --bs-btn-border-color: #cba703;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f5c800;
  --bs-btn-hover-border-color: #cba703;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e8bc00;
  --bs-btn-active-border-color: #cba703;
  --bs-btn-focus-shadow-rgb: 203, 167, 3;
  color: #000;
  background-color: #fdd313;
  border: 2px solid #cba703;
  box-shadow: none;
  font-weight: 700;
}

.auth-login-page__card .btn-primary:hover,
.auth-login-page__card .btn-primary:focus,
.auth-login-page__card .btn-primary:active {
  box-shadow: none;
}

.auth-login-page__card .form-control-validation.mb-6 {
  margin-bottom: 0.5rem !important;
}

.auth-login-page__card .text-center {
  font-size: 0.9rem;
  line-height: 1.35;
  color: #fff;
}

.auth-login-page__card .text-center.mb-2 {
  margin-bottom: 0.35rem !important;
}

.auth-login-page__card .auth-login-page__terms-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.55rem !important;
}

.auth-login-page__card .text-center.mb-2 > span {
  color: #fdd313;
}

.auth-login-page__card .text-center.mb-2 a,
.auth-login-page__card .text-center.mb-2 a span,
.auth-login-page__card .text-center.mb-2 .auth-login-page__link-btn,
.auth-login-page__card .text-center.mb-2 .auth-login-page__link-btn span {
  color: #ff8c00;
  text-decoration: none;
}

.auth-login-page__card .text-center.mb-2 a:hover,
.auth-login-page__card .text-center.mb-2 a:hover span,
.auth-login-page__card .text-center.mb-2 .auth-login-page__link-btn:hover,
.auth-login-page__card .text-center.mb-2 .auth-login-page__link-btn:hover span {
  color: #ff9f2e;
}

.auth-login-page__card .form-label {
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
}

.auth-login-page__card .form-check-label,
.auth-login-page__card .my-7 a,
.auth-login-page__card .my-7 p {
  color: #fff;
}

.auth-login-page__card .form-control {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #fdd313 !important;
  padding-block: 0.45rem;
  font-size: 0.95rem;
  text-align: center;
  caret-color: #000;
}

@keyframes auth-login-autofill-fix {
  to {
    background-color: #181818;
    color: #fff;
  }
}

.auth-login-page__card .form-control:-webkit-autofill,
.auth-login-page__card .form-control:-webkit-autofill:hover,
.auth-login-page__card .form-control:-webkit-autofill:focus,
.auth-login-page__card .form-control:-webkit-autofill:active,
.auth-login-page__card input.form-control:-internal-autofill-selected,
.auth-login-page__card .form-control:autofill {
  animation: auth-login-autofill-fix 0s forwards;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  color: #fff !important;
  background-color: #181818 !important;
  background-clip: padding-box !important;
  -webkit-background-clip: padding-box !important;
  border-color: #fdd313 !important;
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0 1000px #181818 inset !important;
  box-shadow: 0 0 0 1000px #181818 inset !important;
}

.auth-login-page__card .form-control:-webkit-autofill::first-line {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.auth-login-page__card .form-control.is-browser-autofilled {
  background-color: #181818 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  border-color: #fdd313 !important;
  -webkit-box-shadow: 0 0 0 1000px #181818 inset !important;
  box-shadow: 0 0 0 1000px #181818 inset !important;
}

.auth-login-page__card .input-group-text {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #fdd313 !important;
}

.auth-login-page__card .form-control:focus {
  border-color: #cba703 !important;
  box-shadow: none !important;
  outline: none;
}

.auth-login-page__card .input-group:focus-within .form-control,
.auth-login-page__card .input-group:focus-within .input-group-text {
  border-color: #cba703 !important;
}

.auth-login-page__card .input-group:focus-within {
  box-shadow: none !important;
}

.auth-login-page__card .input-group {
  justify-content: center;
}

.auth-login-page .icon-base {
  left: 8px;
  position: relative;
}

.auth-login-page__card .alert {
  text-align: center;
}

.auth-login-page--scrollable .auth-login-page__wrap {
  overflow-y: auto;
  padding-bottom: 1.5rem;
}

.auth-login-page__frame--tall {
  block-size: auto;
  max-block-size: min(68dvh, 620px);
  min-block-size: 370px;
}

.auth-login-page__frame--tall .auth-login-page__line--left,
.auth-login-page__frame--tall .auth-login-page__line--right {
  block-size: 340px;
  height: 354px;
}

.auth-login-page__frame--compact {
  block-size: 257px;
  max-block-size: 257px;
  height: 257px;
  top: -92px;
}

.auth-login-page__frame--compact .auth-login-page__line--left,
.auth-login-page__frame--compact .auth-login-page__line--right {
  block-size: 257px;
  height: 257px;
}

.auth-login-page__frame--reset .auth-login-page__line--left,
.auth-login-page__frame--reset .auth-login-page__line--right {
  block-size: 340px;
  height: 401px;
}

.auth-login-page__frame--register {
  top: -8px;
}

.auth-login-page__frame--register .auth-login-page__line--left,
.auth-login-page__frame--register .auth-login-page__line--right {
  block-size: 340px;
  height: 543px;
}

.auth-login-page__card .text-center a {
  color: #ff8c00;
  text-decoration: none;
}

.auth-login-page__card .text-center a:hover {
  color: #ff9f2e;
}

.auth-login-page__link-btn {
  color: #ff8c00 !important;
  text-decoration: none;
}

.auth-login-page__link-btn:hover {
  color: #ff9f2e !important;
}

.auth-login-page__card .btn-label-secondary {
  --bs-btn-color: #fdd313;
  --bs-btn-border-color: #cba703;
  --bs-btn-bg: transparent;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fdd313;
  --bs-btn-hover-border-color: #cba703;
  color: #fdd313;
  border: 2px solid #cba703;
  box-shadow: none;
  font-weight: 700;
}

.auth-login-page__card .select2-container--default .select2-selection--single {
  background-color: #fff !important;
  border: 1px solid #fdd313 !important;
  min-height: 2.4rem;
}

.auth-login-page__card .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000 !important;
  line-height: 2.25rem;
  text-align: center;
}

.auth-login-page__card .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.25rem;
}

.auth-login-page__card .select2-container--default.select2-container--focus .select2-selection--single,
.auth-login-page__card .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #cba703 !important;
}

.auth-login-page__card .invalid-feedback {
  text-align: center;
}

.auth-login-page__card .fw-medium {
  color: #fdd313;
}


@media (max-width: 575.98px) {
  .auth-login-page {
    background-color: #1a1a1a;
  }

  .auth-login-page::before {
    background-color: transparent;
    background-image: url('../../mobile/background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-blend-mode: normal;
    opacity: 1;
  }

  .auth-login-page::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('../../mobile/pg-gif-mobile.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
  }

  .auth-login-page .landing-top-layer {
    display: none;
  }

  .auth-login-page__tape,
  .auth-login-page__tape--left,
  .auth-login-page__tape--right {
    display: none !important;
  }

  .auth-login-page__logo {
    display: none !important;
  }

  .auth-login-page__decor {
    display: block !important;
    inline-size: min(140px, 38vw);
    margin-block: 0;
    margin-top: -0.75rem;
    z-index: 3;
  }

  .auth-login-page__mobile-chrome {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 102px;
    z-index: 120;
    pointer-events: none;
  }

  .auth-login-page__mobile-hang {
    position: absolute;
    top: 0;
    left: 28px;
    height: 115px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
  }

  .auth-login-page__mobile-top {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    display: block;
  }

  .auth-login-page__mobile-logo-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .auth-login-page__mobile-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .auth-login-page__music-toggle {
    top: 28px;
    right: auto;
    left: 14px;
    width: 30px;
    height: 29px;
    padding: 4px;
    border-radius: 50%;
    background: #000;
    z-index: 50;
  }

  .auth-login-page__music-toggle .landing-music-toggle__icon {
    display: none;
  }

  .auth-login-page__mobile-music-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .auth-login-page__music-toggle .landing-music-toggle__muted-mark {
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
  }

  .auth-login-page__music-toggle .landing-music-toggle__muted-mark::after {
    background-color: #fff;
  }

  .auth-login-page__wrap {
    padding-top: 5.5rem;
    gap: 0.2rem;
  }

  .auth-login-page__cluster {
    top: -45px;
  }

  .auth-login-page__frame {
    block-size: 370px;
    max-block-size: 370px;
    max-inline-size: min(28rem, 92vw);
  }

  .auth-login-page__frame--compact {
    block-size: 260px;
    max-block-size: 260px;
    height: 260px;
    top: -20px;
  }

  .auth-login-page__frame--compact .auth-login-page__line--left,
  .auth-login-page__frame--compact .auth-login-page__line--right {
    block-size: 260px;
    height: 260px;
  }

  .auth-login-page__frame--compact .auth-login-page__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/******************************************************************************
* Detectives guild cards
******************************************************************************/

.detectives-guild-search .input-group-text,
.detectives-guild-search .form-control,
.catalog-search .input-group-text,
.catalog-search .form-control {
  background-color: #fff !important;
}

.detectives-guild-search .input-group-text,
.catalog-search .input-group-text {
  border-color: rgba(102, 0, 0, 0.18);
  color: #660000;
}

.detectives-guild-search .form-control,
.catalog-search .form-control {
  border-color: rgba(102, 0, 0, 0.18);
  color: #000;
}

.detectives-guild-search .form-control:focus,
.catalog-search .form-control:focus {
  background-color: #fff !important;
  border-color: #660000;
  box-shadow: 0 0 0 0.15rem rgba(102, 0, 0, 0.12);
}

.catalog-search {
  max-width: 36rem;
  margin-inline: auto;
}

.detectives-guild-page .detective-card {
  border: none !important;
  background-color: transparent;
  box-shadow: none !important;
}

.detectives-guild-page .detective-card-frame {
  background-image: url('../img/bage.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 0.85rem 0.7rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.detectives-guild-page .detective-card__body {
  background: transparent;
  flex: 1 1 auto;
}

.detectives-guild-page .detective-card__corners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-block-size: 4.1rem;
}

.detectives-guild-page .detective-card__corner-logo {
  inline-size: auto;
  block-size: 4.1rem;
  max-inline-size: 4.1rem;
  object-fit: contain;
  flex-shrink: 0;
}

.detectives-guild-page .detective-card__corner-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detectives-guild-page .detective-card__corner-rank-image {
  inline-size: 3.35rem;
  block-size: 3.35rem;
  object-fit: contain;
}

.detectives-guild-page .detective-card__avatar-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.detective-card--large .detective-card__avatar-media {
  padding: 6px;
}

.detectives-guild-page .detective-card__avatar-box {
  --detective-avatar-pixel-line: 5px;
  --detective-avatar-pixel-color: #202020;
  position: relative;
  inline-size: 4rem;
  block-size: 4rem;
  flex-shrink: 0;
}

.detectives-guild-page .detective-card__avatar-box-line {
  position: absolute;
  background: var(--detective-avatar-pixel-color);
}

.detectives-guild-page .detective-card__avatar-box-line--top,
.detectives-guild-page .detective-card__avatar-box-line--bottom {
  block-size: var(--detective-avatar-pixel-line);
  inline-size: 100%;
}

.detectives-guild-page .detective-card__avatar-box-line--top::before,
.detectives-guild-page .detective-card__avatar-box-line--top::after,
.detectives-guild-page .detective-card__avatar-box-line--bottom::before,
.detectives-guild-page .detective-card__avatar-box-line--bottom::after {
  content: "";
  position: absolute;
  inline-size: var(--detective-avatar-pixel-line);
  block-size: var(--detective-avatar-pixel-line);
  background: var(--detective-avatar-pixel-color);
}

.detectives-guild-page .detective-card__avatar-box-line--top {
  inset-block-start: calc(var(--detective-avatar-pixel-line) * -1);
  inset-inline: 0;
}

.detectives-guild-page .detective-card__avatar-box-line--top::before {
  inset-inline-start: 0;
  inset-block-end: calc(var(--detective-avatar-pixel-line) * -1);
}

.detectives-guild-page .detective-card__avatar-box-line--top::after {
  inset-inline-end: 0;
  inset-block-end: calc(var(--detective-avatar-pixel-line) * -1);
}

.detectives-guild-page .detective-card__avatar-box-line--bottom {
  inset-block-end: calc(var(--detective-avatar-pixel-line) * -1);
  inset-inline: 0;
}

.detectives-guild-page .detective-card__avatar-box-line--bottom::before {
  inset-inline-start: 0;
  inset-block-start: calc(var(--detective-avatar-pixel-line) * -1);
}

.detectives-guild-page .detective-card__avatar-box-line--bottom::after {
  inset-inline-end: 0;
  inset-block-start: calc(var(--detective-avatar-pixel-line) * -1);
}

.detectives-guild-page .detective-card__avatar-box-line--left,
.detectives-guild-page .detective-card__avatar-box-line--right {
  inline-size: var(--detective-avatar-pixel-line);
  block-size: 100%;
  inset-block: 0;
}

.detectives-guild-page .detective-card__avatar-box-line--left {
  inset-inline-start: calc(var(--detective-avatar-pixel-line) * -1);
}

.detectives-guild-page .detective-card__avatar-box-line--right {
  inset-inline-end: calc(var(--detective-avatar-pixel-line) * -1);
}

.detectives-guild-page .detective-card__avatar-image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: fill;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}

.detectives-guild-page .detective-card__avatar-fallback {
  inline-size: 100%;
  block-size: 100%;
  background-color: #000 !important;
  color: #fff !important;
  border: none;
  border-radius: 0;
}

.detectives-guild-page .detective-card__rank-title {
  color: #fff;
}

.detectives-guild-page .detective-card__identity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  inline-size: 100%;
}

.detectives-guild-page .detective-card__name {
  color: #fff;
  font-weight: 800;
}

.detectives-guild-page .detective-card__date {
  color: #fff !important;
  margin: 0;
}

.detectives-guild-page .detective-card h6,
.detectives-guild-page .detective-card .text-body-secondary,
.detectives-guild-page .detective-card .investigator-guild-meta,
.detectives-guild-page .detective-card .small {
  color: #fff !important;
}

.detectives-guild-page .detective-card .badge.bg-label-secondary {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

.detectives-guild-page .detective-card--friend {
  position: relative;
}

.detectives-guild-page .detective-card__unfriend-form {
  position: absolute;
  top: 0.55rem;
  inset-inline-start: 0.55rem;
  z-index: 3;
  margin: 0;
}

.detectives-guild-page .detective-card__unfriend-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(188, 14, 28, 0.92);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.detectives-guild-page .detective-card__unfriend-btn:hover,
.detectives-guild-page .detective-card__unfriend-btn:focus {
  background: #9a0b17;
  color: #fff;
  transform: scale(1.06);
}

.detectives-guild-page .detective-card__friend-stats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff !important;
  font-weight: 600;
}

.detectives-guild-page .detective-card__friend-stats li {
  color: #fff !important;
}

.detectives-guild-page .country-flag--square {
  display: inline-block;
  inline-size: 1.25rem;
  block-size: 0.85rem;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  vertical-align: middle;
}

.detectives-guild-page .country-flag--rect {
  inline-size: 1.4rem;
  block-size: 1.05rem;
  line-height: 1.05rem;
}

.investigator-friendship-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.investigator-friendship-status-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.investigator-friendship-label {
  font-weight: 600;
}

.investigator-friendship-unfriend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 2rem;
  block-size: 2rem;
  padding: 0;
  line-height: 1;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.detectives-guild-page .investigator-friendship-status {
  color: #fff;
}

.detectives-guild-page .investigator-friendship-status--pending .investigator-friendship-status-icon {
  opacity: 0.9;
}

.country-flag--rect {
  display: inline-block;
  inline-size: 2.75rem;
  block-size: 2.0625rem;
  line-height: 2.0625rem;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  vertical-align: middle;
}

.country-flag--bordered {
  box-shadow: 0 0 0 1.5px #c2c5c6;
}

/******************************************************************************
* Detective guild card modal + flip
******************************************************************************/

nav.layout-navbar .detective-card-modal-toggle {
  color: #660000 !important;
}

nav.layout-navbar .detective-card-modal-toggle:hover,
nav.layout-navbar .detective-card-modal-toggle:focus {
  color: #000 !important;
}

.detective-guild-card-modal__dialog {
  max-inline-size: 22rem;
}

.detective-guild-card-modal__content {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(194, 197, 198, 0.35);
  border-radius: 0.75rem;
}

.detective-guild-card-modal__hint {
  color: rgba(255, 255, 255, 0.75) !important;
}

.detective-card--large.detective-card-frame {
  padding: 1rem 0.85rem;
}

.detective-card--large .detective-card__corner-logo {
  block-size: 4.75rem;
  max-inline-size: 4.75rem;
}

.detective-card--large .detective-card__corner-rank-image {
  inline-size: 3.85rem;
  block-size: 3.85rem;
}

.detective-card--large .detective-card__avatar-box {
  --detective-avatar-pixel-line: 6px;
  inline-size: 5rem;
  block-size: 5rem;
}

.detective-card--large .detective-card__avatar-image,
.detective-card--large .detective-card__avatar-fallback {
  inline-size: 100%;
  block-size: 100%;
}

.detective-card--large .detective-card__name {
  font-size: 1.125rem;
}

.detective-flip-card {
  inline-size: 100%;
  margin-inline: auto;
  perspective: 1400px;
  cursor: pointer;
}

.detective-flip-card__inner {
  position: relative;
  min-block-size: 24rem;
  transform-style: preserve-3d;
  transition: transform 0.85s ease;
}

.detective-flip-card.is-flipped .detective-flip-card__inner {
  transform: rotateY(180deg);
}

.detective-flip-card.is-intro-spin .detective-flip-card__inner {
  animation: detective-card-intro-spin 1.4s ease-in-out;
}

@keyframes detective-card-intro-spin {
  0% {
    transform: rotateY(0deg);
  }

  45% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.detective-flip-card__face {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.detective-flip-card__back {
  transform: rotateY(180deg);
}

.detective-flip-card__back-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-block-size: 22rem;
  block-size: 100%;
  padding: 1.5rem;
}

.detective-flip-card__back-logo {
  inline-size: auto;
  block-size: auto;
  max-inline-size: 62%;
  max-block-size: 9rem;
  object-fit: contain;
}

/******************************************************************************
* Issue show page
******************************************************************************/

.issue-show-page .issue-show__back {
  color: #660000;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.issue-show-page .issue-show__back:hover,
.issue-show-page .issue-show__back:focus {
  color: #000;
}

.issue-show-page .issue-show__title {
  color: #660000;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.35;
}

.issue-show-page .issue-show__media-wrap .landing-crime-type-badge {
  z-index: 2;
}

.issue-show-page .issue-show__media {
  border-color: rgba(102, 0, 0, 0.22) !important;
}

.issue-show-page .issue-show__crime-date {
  justify-content: flex-start;
}

.issue-show-page .issue-show__meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(102, 0, 0, 0.22);
  border-radius: 0.35rem;
  background-color: #ead7ac;
  color: #660000;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.issue-show-page .issue-show__meta-badge--novel {
  background-color: rgba(102, 0, 0, 0.08);
}

.issue-show-page .issue-show__purchased-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 1rem;
  background-color: #15803d;
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  border-radius: 0.35rem;
}

.issue-show-page .issue-show__purchased-badge .bx {
  font-size: 1.15rem;
}

.issue-show-page .issue-show__price .price-currency__before {
  opacity: 1;
  font-weight: 600;
  font-size: 1rem;
}

.issue-show-page .issue-show__price .price-currency__after,
.issue-show-page .issue-show__price .price-currency__after--sale {
  color: #000 !important;
  font-size: 1.2rem;
  font-weight: 800;
}

.issue-show-page .issue-show__details {
  border-block-start: 1px solid rgba(102, 0, 0, 0.15);
}

.issue-show-page .issue-show__details h6 {
  color: #660000;
  font-weight: 800;
}

.issue-show-page .issue-show__details-body {
  color: #1a1a1a;
  line-height: 1.85;
}

body.dashboard-user-site .dashboard-game-play-page .issue-show__title {
  color: #660000 !important;
}

body.dashboard-user-site .dashboard-game-play-page .landing-crime-date__label {
  color: #660000 !important;
}

body.dashboard-user-site .dashboard-game-play-page .landing-crime-date__value {
  color: #000 !important;
}

body.dashboard-user-site .dashboard-game-play-page .landing-crime-date__item {
  background-color: #ead7ac !important;
  border-color: rgba(102, 0, 0, 0.2) !important;
}

body.dashboard-user-site .dashboard-game-play-page .issue-show__meta-badge {
  background-color: #ead7ac !important;
  border-color: rgba(102, 0, 0, 0.22) !important;
  color: #660000 !important;
}

body.dashboard-user-site .dashboard-game-play-page .issue-show__details-body,
body.dashboard-user-site .dashboard-game-play-page .issue-show__details-body * {
  color: #1a1a1a !important;
}

body.dashboard-user-site .dashboard-game-play__details-typewriter {
  white-space: pre-wrap;
  line-height: 1.7;
  min-height: 1.5em;
  font-weight: 600;
}

body.dashboard-user-site .dashboard-game-play__details-typewriter.typewriter-cursor::after,
.dashboard-mobile-game-play__details-typewriter.typewriter-cursor::after {
  content: '|';
  margin-inline-start: 1px;
  animation: play-typewriter-blink 1s step-end infinite;
}

@keyframes play-typewriter-blink {
  50% { opacity: 0; }
}

body.dashboard-user-site .dashboard-game-play__details-preview {
  color: #333;
  font-weight: 600;
  line-height: 1.7;
}

body.dashboard-user-site .dashboard-game-play__details-full {
  display: none;
}

body.dashboard-user-site .dashboard-game-play__details.is-open .dashboard-game-play__details-preview {
  display: none;
}

body.dashboard-user-site .dashboard-game-play__details.is-open .dashboard-game-play__details-full {
  display: block;
}

body.dashboard-user-site .dashboard-game-play__details-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(102, 0, 0, 0.08);
  color: #660000;
  padding: 0;
}

body.dashboard-user-site .dashboard-game-play__details-toggle i {
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

body.dashboard-user-site .dashboard-game-play__details.is-open .dashboard-game-play__details-toggle i {
  transform: rotate(180deg);
}

body.dashboard-user-site .dashboard-game-play-page .text-body-secondary {
  color: #4b5563 !important;
}

/******************************************************************************
* Landing footer
******************************************************************************/

.landing-footer {
  --bs-footer-bottom-bg: #660000;
  --bs-footer-top-bg: #660000;
  --bs-footer-bottom-text: #fff;
  --bs-footer-text: #fff;
  background-color: #660000 !important;
}

.landing-footer .footer-top,
.landing-footer .footer-bottom {
  background-color: #660000 !important;
}

.landing-footer .footer-top .footer-bg {
  opacity: 0.12;
}

.landing-footer .footer-link,
.landing-footer .footer-text,
.landing-footer .footer-title,
.landing-footer .footer-bottom-text {
  color: #fff;
}

.landing-footer .footer-bottom-text {
  opacity: 1;
}

.landing-footer .footer-link,
.landing-footer .footer-text {
  opacity: 0.88;
}

.landing-footer .footer-title {
  opacity: 1;
}

.landing-footer .footer-link:hover {
  color: #fff;
  opacity: 1;
}

/* Dashboard shell only ? keep website (has-site-frame) independent */
html:has(body.dashboard-user-site),
html[data-bs-theme='light']:has(body.dashboard-user-site),
html[data-bs-theme='dark']:has(body.dashboard-user-site) {
  background-color: #d3d3d3 !important;
  --bs-body-bg: #d3d3d3;
  --bs-body-bg-rgb: 211, 211, 211;
}

body.dashboard-user-site,
body.dashboard-user-site[data-bs-theme='light'],
body.dashboard-user-site[data-bs-theme='dark'] {
  background-color: transparent !important;
  background-image: none !important;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  cursor: url("../cursors/dagger.png") 3 2, auto;
}

body.dashboard-user-site > .layout-wrapper {
  flex: 1 1 auto;
  width: 100%;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.dashboard-user-site a,
body.dashboard-user-site button,
body.dashboard-user-site [role="button"],
body.dashboard-user-site .dashboard-welcome-icon-item,
body.dashboard-user-site .dashboard-challenge-card-shell,
body.dashboard-user-site .dashboard-challenge-card__result-btn,
body.dashboard-user-site .dashboard-start-investigation-btn,
body.dashboard-user-site input[type="submit"],
body.dashboard-user-site label[for],
body.dashboard-user-site .nav-link,
body.dashboard-user-site select,
body.dashboard-user-site summary {
  cursor: url("../cursors/dagger-active.png") 3 2, pointer;
}

body.dashboard-user-site input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
body.dashboard-user-site textarea {
  cursor: text;
}

body.has-site-frame {
  cursor: url("../cursors/dagger.png") 3 2, auto;
}

body.has-site-frame a,
body.has-site-frame button,
body.has-site-frame [role="button"],
body.has-site-frame .nav-link,
body.has-site-frame input[type="submit"],
body.has-site-frame label[for] {
  cursor: url("../cursors/dagger-active.png") 3 2, pointer;
}

body.has-site-frame input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
body.has-site-frame textarea {
  cursor: text;
}

body.dashboard-user-site::before {
  content: none !important;
  display: none !important;
}

body.dashboard-user-site .site-bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.dashboard-user-site nav.layout-navbar:not(.navbar-active),
body.dashboard-user-site nav.layout-navbar.navbar-active:not(.dashboard-landing-navbar) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.dashboard-user-site nav.layout-navbar::before,
body.dashboard-user-site nav.layout-navbar.navbar-active::before {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.dashboard-user-site .layout-page.window-scrolled .layout-navbar {
  background: #0b0e13 !important;
  background-color: #0b0e13 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  z-index: 9000 !important;
}

body.dashboard-user-site .layout-wrapper {
  position: relative;
  z-index: 1;
}

body.dashboard-user-site .layout-wrapper.is-scroll-nav {
  z-index: 2147483647 !important;
}

body.dashboard-user-site:has(nav.dashboard-landing-navbar.navbar-active) .layout-wrapper {
  z-index: 2147483647 !important;
}

body.dashboard-user-site {
  overflow-x: hidden;
  --bs-secondary-color: #4b5563;
  --bs-secondary-color-rgb: 75, 85, 99;
  --bs-secondary-rgb: 75, 85, 99;
}

body.dashboard-user-site .text-body-secondary,
body.dashboard-user-site .text-muted {
  color: #4b5563 !important;
}

body.dashboard-user-site .layout-wrapper,
body.dashboard-user-site .layout-container,
body.dashboard-user-site .layout-page {
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100%;
}

body.dashboard-user-site .layout-wrapper,
body.dashboard-user-site .layout-container,
body.dashboard-user-site .layout-page,
body.dashboard-user-site .content-wrapper,
body.dashboard-user-site .container-xxl,
body.dashboard-user-site .container-p-y {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.dashboard-user-site .layout-wrapper,
body.dashboard-user-site .layout-container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

body.dashboard-user-site .layout-page,
body.dashboard-user-site.layout-content-navbar .layout-page,
body.dashboard-user-site .layout-content-navbar .layout-page {
  padding-inline: 0 !important;
  padding-top: 0 !important;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: 100% !important;
  inline-size: 100% !important;
  min-inline-size: 100% !important;
  max-inline-size: 100% !important;
}

html.layout-navbar-fixed body.dashboard-user-site .layout-wrapper.layout-without-menu .layout-navbar.dashboard-landing-navbar:not(.navbar-active),
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar:not(.navbar-active),
html.layout-navbar-fixed body.dashboard-user-site .layout-wrapper.layout-without-menu .layout-navbar.dashboard-landing-navbar.navbar-active,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active {
  position: fixed !important;
  top: 0 !important;
  inset-inline: 0 !important;
  inline-size: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  transform: translateZ(0);
}

html.layout-navbar-fixed body.dashboard-user-site .layout-wrapper.layout-without-menu .layout-navbar.dashboard-landing-navbar:not(.navbar-active),
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar:not(.navbar-active) {
  z-index: 9000 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  isolation: isolate;
  overflow: visible;
}

html.layout-navbar-fixed body.dashboard-user-site .layout-wrapper.layout-without-menu .layout-navbar.dashboard-landing-navbar.navbar-active,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active {
  z-index: 9000 !important;
  background: #0b0e13 !important;
  background-color: #0b0e13 !important;
  background-image: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none;
  isolation: isolate;
  overflow: hidden;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active > .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-block: 0.55rem;
  padding-inline: 1rem !important;
  min-height: 4.35rem;
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  background: #0b0e13 !important;
  background-color: #0b0e13 !important;
}

@media (min-width: 768px) {
  body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active > .container {
    padding-inline: 1.5rem !important;
  }
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-header-top {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-navbar {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  flex: 0 0 auto;
  order: 3;
  width: auto;
  max-width: none;
  padding-inline: 0 !important;
  gap: 0.45rem;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-nav-menu,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-menu-overlay,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .navbar-toggler {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-navbar > .navbar-nav.ms-auto {
  margin-inline-start: 0 !important;
  padding-inline-start: 0 !important;
  border-inline-start: none !important;
  gap: 0.45rem;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-navbar > .navbar-nav.ms-auto > .nav-item:has(.landing-music-toggle),
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-navbar > .navbar-nav.ms-auto > .nav-item:has(.dashboard-nav-theme-toggle) {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-user-welcome-bar {
  position: relative !important;
  flex: 1 1 auto;
  order: 1;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 3.2rem !important;
  min-width: 0;
  overflow: visible !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-user-welcome {
  position: absolute !important;
  top: 50% !important;
  right: 0.75rem !important;
  left: auto !important;
  inset-inline: auto !important;
  transform: translateY(-50%) !important;
  z-index: 6 !important;
  flex: 0 0 auto;
  max-width: min(38%, 22rem);
  margin: 0 !important;
  text-align: right !important;
  font-size: 0.72rem;
  line-height: 1.35;
  order: initial;
  color: #fff !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-notification,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-electric {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-user-welcome-actions {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 5;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  max-width: min(82vw, 52rem);
  margin: 0 !important;
  overflow: hidden !important;
  scrollbar-width: none;
  padding-top: 0;
  padding-right: 18px !important;
  gap: 0.95rem !important;
  column-gap: 0.95rem !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-user-welcome-actions::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-actions-hint {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item {
  min-width: 0;
  gap: 0.18rem;
  color: #fff !important;
}

/* Scrolled: hide icons, keep bold labels + counts */
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-btn {
  width: auto;
  height: auto;
  min-height: 0;
  font-size: 0;
  color: #fff !important;
  transform: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-btn > i,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-btn > img,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-vs-icon {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-count {
  position: static;
  inset: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  margin: 0;
  border-radius: 999px;
  background: #bc0e1c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-label {
  color: #fff !important;
  max-width: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 1;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item:hover .dashboard-welcome-icon-btn,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item:focus .dashboard-welcome-icon-btn {
  color: #fff !important;
  opacity: 1;
  transform: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item:hover .dashboard-welcome-icon-label,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item:focus .dashboard-welcome-icon-label {
  opacity: 0.85;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-win,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-btn,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-label,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-withdraw,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-btn,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-label,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-loss,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-btn,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-label {
  color: #fff !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-count {
  background: #16a34a;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-count {
  background: #ca8a04;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-count {
  background: #dc2626;
}

@media (max-width: 991.98px) {
  body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active > .container {
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 0.45rem;
  }

  body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-user-welcome-bar {
    order: 1;
    width: 100%;
    flex: 1 1 100%;
  }

  body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-navbar {
    order: 2;
    width: 100%;
    justify-content: flex-end;
  }

  body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-user-welcome {
    max-width: none;
    width: auto;
  }
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar::before,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar .landing-navbar,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .landing-navbar {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
}

body.has-site-frame:not(.dashboard-user-site) nav.layout-navbar .landing-navbar,
body.has-site-frame:not(.dashboard-user-site) nav.layout-navbar.navbar-active .landing-navbar {
  background-color: rgba(0, 0, 0, 0.28) !important;
  border-color: #fdd313 !important;
}

body.dashboard-user-site .landing-header-top {
  margin-block: 0.35rem 0.25rem;
  padding-top: 0px;
  padding-block-start: 0;
}

body.dashboard-user-site .landing-logo-above {
  position: relative;
  z-index: 1 !important;
}

body.dashboard-user-site .landing-top-layer {
  top: 0;
  width: 645px;
  inline-size: 593px;
  height: 200px !important;
  block-size: 200px !important;
  max-height: 200px !important;
  max-block-size: 200px !important;
  object-fit: fill;
  z-index: 1 !important;
}

body.dashboard-user-site .landing-logo-above img,
body.dashboard-user-site nav.layout-navbar.navbar-active .landing-logo-above img {
  width: auto;
  max-width: min(46vw, 168px);
  height: 52px;
  object-fit: contain;
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar {
  margin-top: 82px;
  margin-block-start: 82px;
  gap: 0.5rem;
  flex-wrap: nowrap;
  align-items: center;
  border: none !important;
  background: none !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar .landing-nav-menu {
    max-inline-size: calc(100% - 14rem) !important;
    min-inline-size: 0;
    padding-inline-end: 0.35rem;
    overflow: hidden;
  }

  body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar .landing-nav-links {
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
  }

  body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar > .navbar-nav.ms-auto {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    flex-shrink: 0;
    margin-inline-start: auto !important;
    gap: 0.45rem;
    min-inline-size: 0;
    padding-inline-start: 0.65rem;
    border-inline-start: 1px solid rgba(102, 0, 0, 0.18);
  }
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar .landing-nav-links .nav-link {
  padding-inline: 0.32rem !important;
  font-size: 0.82rem;
  white-space: nowrap;
  color: #bc0e1c !important;
  font-weight: 900 !important;
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar .landing-nav-links .nav-link:hover,
body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar .landing-nav-links .nav-link.active {
  color: #bc0e1c !important;
  text-decoration: none;
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar .landing-nav-links .nav-link.active {
  text-decoration: underline !important;
  text-underline-offset: 0.35em;
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar > .navbar-nav.ms-auto .landing-music-toggle {
  color: #bc0e1c;
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar > .navbar-nav.ms-auto .landing-music-toggle__icon {
  color: #bc0e1c;
  opacity: 1;
}

body.dashboard-user-site .landing-nav-icon {
  color: #bc0e1c !important;
}

body.dashboard-user-site nav.layout-navbar .navbar.landing-navbar > .navbar-nav.ms-auto {
  border-inline-start-color: rgba(188, 14, 28, 0.35) !important;
}

body.dashboard-user-site .dashboard-nav-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bc0e1c !important;
  line-height: 1;
}

body.dashboard-user-site .dashboard-nav-theme-toggle:hover,
body.dashboard-user-site .dashboard-nav-theme-toggle:focus {
  color: #800020 !important;
}

body.dashboard-user-site .dashboard-nav-theme-menu {
  min-width: 9.5rem;
}

body.dashboard-user-site .dashboard-start-investigation-btn {
  --inv-neon: #bc0e1c;
  --inv-maroon: #800020;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 157px;
  min-height: 48px;
  padding: 10px 30px;
  color: #800020 !important;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  text-decoration: none !important;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.3s ease-out, text-shadow 0.3s ease-out;
  vertical-align: middle;
  overflow: visible;
}

body.dashboard-user-site .dashboard-start-investigation-btn__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--inv-neon);
  animation: dashboard-inv-svg-glow 2.4s ease-in-out infinite;
}

body.dashboard-user-site .dashboard-start-investigation-btn__svg path:last-child {
  fill: transparent;
  transition: fill 0.3s ease-out;
}

body.dashboard-user-site .dashboard-start-investigation-btn__label {
  position: relative;
  z-index: 1;
}

body.dashboard-user-site .dashboard-start-investigation-btn:hover,
body.dashboard-user-site .dashboard-start-investigation-btn:focus {
  color: #fff !important;
  text-shadow:
    0 0 8px var(--inv-neon),
    0 0 18px rgba(188, 14, 28, 0.9),
    0 0 28px rgba(128, 0, 32, 0.7);
}

body.dashboard-user-site .dashboard-start-investigation-btn:hover .dashboard-start-investigation-btn__svg path:last-child,
body.dashboard-user-site .dashboard-start-investigation-btn:focus .dashboard-start-investigation-btn__svg path:last-child {
  fill: currentColor;
}

@keyframes dashboard-inv-svg-glow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 4px rgba(188, 14, 28, 0.85))
      drop-shadow(0 0 10px rgba(128, 0, 32, 0.55));
  }
  50% {
    filter:
      drop-shadow(0 0 8px rgba(188, 14, 28, 1))
      drop-shadow(0 0 18px rgba(128, 0, 32, 0.8));
  }
}

body.dashboard-user-site .dashboard-start-investigation-btn::before,
body.dashboard-user-site .dashboard-start-investigation-btn::after {
  content: '';
  position: absolute;
  height: 2px;
  background: #ff4d5e;
  box-shadow:
    0 0 6px var(--inv-neon),
    0 0 12px var(--inv-maroon);
  pointer-events: none;
  z-index: 2;
}

body.dashboard-user-site .dashboard-start-investigation-btn::before {
  top: 0;
  right: 16%;
  animation: dashboard-inv-line-top 2.2s linear infinite;
}

body.dashboard-user-site .dashboard-start-investigation-btn::after {
  bottom: 0;
  left: 16%;
  animation: dashboard-inv-line-bottom 2.2s linear infinite;
}

@keyframes dashboard-inv-line-top {
  0% {
    width: 0;
    right: 16%;
    left: auto;
    opacity: 1;
  }
  45% {
    width: 68%;
    right: 16%;
    left: auto;
    opacity: 1;
  }
  55% {
    width: 68%;
    right: auto;
    left: 16%;
    opacity: 1;
  }
  100% {
    width: 0;
    right: auto;
    left: 16%;
    opacity: 0.7;
  }
}

@keyframes dashboard-inv-line-bottom {
  0% {
    width: 0;
    left: 16%;
    right: auto;
    opacity: 1;
  }
  45% {
    width: 68%;
    left: 16%;
    right: auto;
    opacity: 1;
  }
  55% {
    width: 68%;
    left: auto;
    right: 16%;
    opacity: 1;
  }
  100% {
    width: 0;
    left: auto;
    right: 16%;
    opacity: 0.7;
  }
}

@keyframes dashboard-inv-glow {
  0%,
  100% {
    box-shadow:
      0 0 5px var(--inv-maroon),
      0 0 10px var(--inv-neon),
      0 0 16px rgba(128, 0, 32, 0.45);
  }
  50% {
    box-shadow:
      0 0 8px var(--inv-neon),
      0 0 18px var(--inv-maroon),
      0 0 28px rgba(188, 14, 28, 0.7);
  }
}


body.dashboard-user-site .dashboard-user-welcome-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
  margin-bottom: 0.35rem;
  padding-inline: 1rem;
  width: 100%;
  max-width: 100%;
  min-height: 3.5rem;
  overflow: visible;
}

@media (min-width: 768px) {
  body.dashboard-user-site .dashboard-user-welcome-bar {
    padding-inline: 1.5rem;
  }
}

body.dashboard-user-site .dashboard-user-welcome {
  position: absolute !important;
  right: 0.75rem !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  inset-inline: auto !important;
  z-index: 6;
  flex: 0 0 auto;
  margin: 0 !important;
  max-width: min(42%, 26rem);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  color: #bc0e1c;
  text-align: right !important;
}

@media (min-width: 768px) {
  body.dashboard-user-site .dashboard-user-welcome {
    right: 1rem !important;
  }
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification-host {
  position: relative;
  z-index: 1;
  flex: 0 1 44rem;
  width: min(72vw, 44rem);
  max-width: min(72vw, 44rem);
  margin-inline: auto;
  min-height: 0;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric {
  --electric-border-color: #dd8448;
  --electric-light-color: #f0b27a;
  --electric-glow-color: rgba(221, 132, 72, 0.45);
  --color-neutral-900: #1a1210;
  position: relative;
  z-index: 1;
  flex: none;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

body.dashboard-user-site .electric-border-svg,
body.lobby-page-active .electric-border-svg,
body.mobile-home-page .electric-border-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__card {
  position: relative;
  padding: 2px;
  border-radius: 14px;
  background:
    linear-gradient(-30deg, var(--electric-glow-color), transparent, var(--electric-glow-color)),
    linear-gradient(to bottom, var(--color-neutral-900), var(--color-neutral-900));
  overflow: visible;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__border-outer {
  border: 2px solid rgba(221, 132, 72, 0.5);
  border-radius: 14px;
  padding-right: 4px;
  padding-bottom: 4px;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__main-card {
  position: absolute;
  top: -4px;
  left: -4px;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  border: 2px solid var(--electric-border-color);
  filter: url(#turbulent-displace);
  pointer-events: none;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__glow-1,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__glow-2 {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 0;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__glow-1 {
  border: 2px solid rgba(221, 132, 72, 0.6);
  filter: blur(1px);
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__glow-2 {
  border: 2px solid var(--electric-light-color);
  filter: blur(4px);
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__overlay-1,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__overlay-2 {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 1;
  mix-blend-mode: overlay;
  transform: scale(1.08);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(-30deg, #fff, transparent 30%, transparent 70%, #fff);
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__overlay-2 {
  opacity: 0.5;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric__bg-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(-30deg, var(--electric-light-color), transparent, var(--electric-border-color));
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: auto;
  min-height: 4.4rem;
  gap: 0.7rem 1rem;
  margin: 6px;
  padding: 0.7rem 1.1rem;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__bell {
  display: block;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  position: relative;
  left: 1.45rem;
  transform-origin: top center;
  animation: dashboard-welcome-bell-ring 1.35s ease-in-out infinite;
}

@keyframes dashboard-welcome-bell-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-12deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(6deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  70% {
    transform: rotate(2deg);
  }
  80% {
    transform: rotate(0deg);
  }
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  text-align: start;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  text-shadow: none;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__text {
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  max-width: 28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: none;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .btn {
  min-width: 3.6rem;
  font-weight: 800;
  border: 0;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .dashboard-welcome-notification__accept,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .btn-primary {
  background-color: #ff7a00 !important;
  border-color: #ff7a00 !important;
  color: #000 !important;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .dashboard-welcome-notification__accept:hover,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .btn-primary:hover,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .dashboard-welcome-notification__accept:focus,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .btn-primary:focus {
  background-color: #e86e00 !important;
  border-color: #e86e00 !important;
  color: #000 !important;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .dashboard-welcome-notification__reject,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .btn-label-secondary {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .dashboard-welcome-notification__reject:hover,
:is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__actions .btn-label-secondary:hover {
  background-color: #222 !important;
  border-color: #222 !important;
  color: #fff !important;
}

body.dashboard-user-site .dashboard-user-welcome-actions {
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  inset-inline: auto;
  z-index: 5;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: flex-end;
  max-width: min(56vw, 32rem);
  margin: 0;
  row-gap: 0;
  column-gap: 0.3rem;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  padding-right: 17px !important;
}

body.dashboard-user-site .dashboard-user-welcome-actions::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@media (min-width: 768px) {
  body.dashboard-user-site .dashboard-user-welcome-actions {
    left: 0.75rem;
    padding-right: 17px !important;
  }
}

body.dashboard-user-site .dashboard-welcome-actions-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin-inline-end: 0.05rem;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-welcome-actions-hint__text {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  white-space: nowrap;
  margin-bottom: 0.05rem;
  position: relative;
  top: 14px;
}

body.dashboard-user-site .dashboard-welcome-actions-hint__arrow {
  display: block;
  width: 2.6rem;
  height: auto;
  max-height: 2.4rem;
  object-fit: contain;
}

body.dashboard-user-site .dashboard-welcome-icon-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.12rem;
  min-width: 1.85rem;
  flex: 0 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #bc0e1c !important;
  text-decoration: none !important;
  cursor: pointer;
}

body.dashboard-user-site .dashboard-welcome-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit !important;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none !important;
  transition: color 0.15s ease, transform 0.15s ease;
}

/* FA handshake renders larger than bx icons ? normalize */
body.dashboard-user-site .dashboard-welcome-icon-item--friends .fa-handshake {
  font-size: 0.82em;
  transform: scale(0.88);
  display: inline-block;
  line-height: 1;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-welcome-icon-item--friends .fa-handshake {
  font-size: 0.78em;
  transform: scale(0.84);
}

body.dashboard-user-site .dashboard-welcome-icon-item:hover .dashboard-welcome-icon-btn,
body.dashboard-user-site .dashboard-welcome-icon-item:focus .dashboard-welcome-icon-btn {
  color: #800020 !important;
  transform: translateY(-1px);
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-win {
  color: #16a34a !important;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-label {
  color: #16a34a;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-count {
  background: #16a34a;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-win:hover .dashboard-welcome-icon-btn,
body.dashboard-user-site .dashboard-welcome-icon-item.is-win:focus .dashboard-welcome-icon-btn {
  color: #15803d !important;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-withdraw {
  color: #ca8a04 !important;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-label {
  color: #ca8a04;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-count {
  background: #ca8a04;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-withdraw:hover .dashboard-welcome-icon-btn,
body.dashboard-user-site .dashboard-welcome-icon-item.is-withdraw:focus .dashboard-welcome-icon-btn {
  color: #a16207 !important;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-loss {
  color: #dc2626 !important;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-label {
  color: #dc2626;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-count {
  background: #dc2626;
}

body.dashboard-user-site .dashboard-welcome-icon-item.is-loss:hover .dashboard-welcome-icon-btn,
body.dashboard-user-site .dashboard-welcome-icon-item.is-loss:focus .dashboard-welcome-icon-btn {
  color: #b91c1c !important;
}

body.dashboard-user-site .dashboard-welcome-icon-label {
  display: block;
  max-width: 2.35rem;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #bc0e1c;
  opacity: 0.9;
}

body.dashboard-user-site .dashboard-welcome-vs-icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

body.dashboard-user-site .dashboard-welcome-icon-count {
  position: absolute;
  top: -0.35rem;
  inset-inline-end: -0.45rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: #bc0e1c;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  body.dashboard-user-site .dashboard-user-welcome-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    min-height: 0;
    padding-inline: 1rem;
  }

  body.dashboard-user-site .dashboard-user-welcome,
  :is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification,
  body.dashboard-user-site .dashboard-user-welcome-actions {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    max-width: none;
    width: 100%;
    text-align: start;
  }

  :is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification,
  :is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-electric {
    margin-inline: 0;
    justify-content: space-between;
    width: 100%;
    max-width: none;
  }

  :is(body.dashboard-user-site, body.lobby-page-active, body.mobile-home-page) .dashboard-welcome-notification__text {
    max-width: none;
    white-space: normal;
  }

  body.dashboard-user-site .dashboard-user-welcome-actions {
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: none;
    margin: 0;
    overflow-x: auto;
  }
}


body.dashboard-user-site .dashboard-welcome-person {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: 0.35rem;
  vertical-align: middle;
}

body.dashboard-user-site .dashboard-welcome-inline-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  overflow: visible;
  border: 1px solid rgba(188, 14, 28, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  line-height: 0;
  appearance: none;
}

body.dashboard-user-site .dashboard-welcome-inline-avatar:focus-visible {
  outline: 2px solid rgba(188, 14, 28, 0.85);
  outline-offset: 2px;
}

body.dashboard-user-site .dashboard-welcome-inline-avatar__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

body.dashboard-user-site .dashboard-welcome-person-flag {
  position: absolute;
  right: -0.1rem;
  bottom: -0.05rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
}

body.dashboard-user-site .dashboard-welcome-person-flag .country-flag-group {
  display: inline-flex;
  line-height: 0;
}

body.dashboard-user-site .dashboard-welcome-person-flag .fi {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

body.dashboard-user-site .dashboard-logout-icon-btn {
  color: #000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

body.dashboard-user-site .dashboard-logout-icon-btn:hover,
body.dashboard-user-site .dashboard-logout-icon-btn:focus {
  color: #222 !important;
  opacity: 0.85;
}

body.dashboard-user-site .dashboard-logout-icon-img {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  filter: none;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-logout-icon-img {
  filter: brightness(0) invert(1);
}

body.dashboard-user-site .dashboard-logout-icon-btn:hover .dashboard-logout-icon-img,
body.dashboard-user-site .dashboard-logout-icon-btn:focus .dashboard-logout-icon-img {
  opacity: 0.85;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-logout-icon-btn:hover .dashboard-logout-icon-img,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-logout-icon-btn:focus .dashboard-logout-icon-img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

body.dashboard-user-site .landing-header-spacer {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
  flex-shrink: 0;
}

body.dashboard-user-site .content-wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100% !important;
  max-width: 100% !important;
  inline-size: 100% !important;
  min-inline-size: 100% !important;
  min-height: 0;
  flex-grow: 1;
  padding-block-start: 0;
  padding-block-end: 0;
  margin-block-end: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

body.dashboard-user-site .content-wrapper > .container-xxl,
body.dashboard-user-site .content-wrapper > .container-p-y,
body.dashboard-user-site .content-wrapper > .container-p-y:not([class^='pt-']):not([class*=' pt-']),
html.layout-navbar-fixed body.dashboard-user-site .content-wrapper > .container-p-y:not([class^='pt-']):not([class*=' pt-']) {
  flex: 1 0 auto;
  width: 100%;
  min-height: auto;
  position: relative;
  z-index: 1;
}

body.dashboard-user-site .content-wrapper > .container-p-y:not([class^='pt-']):not([class*=' pt-']),
html.layout-navbar-fixed body.dashboard-user-site .content-wrapper > .container-p-y:not([class^='pt-']):not([class*=' pt-']) {
  padding-block-start: 0.75rem !important;
}

/* backdrop is a flex sibling of the footer and creates empty space under it */
body.dashboard-user-site .content-backdrop {
  display: none !important;
}

body.dashboard-user-site .content-footer.landing-footer {
  margin-block-start: auto !important;
  margin-block-end: 0 !important;
  padding-block-end: 0 !important;
  background-color: #660000 !important;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

body.dashboard-user-site .content-footer.landing-footer .footer-bottom {
  margin: 0;
  padding-bottom: 1rem !important;
  background-color: #660000 !important;
}

body.dashboard-user-site .modal-backdrop {
  --bs-backdrop-zindex: 10050;
  z-index: 10050 !important;
}

body.dashboard-user-site .modal,
body.dashboard-user-site .modal.show {
  --bs-modal-zindex: 10060;
  z-index: 10060 !important;
}

/* demote header/layout while any modal is open (beats scroll-nav :has rules) */
body.dashboard-user-site.modal-open .layout-wrapper,
body.dashboard-user-site.modal-open .layout-wrapper.is-scroll-nav,
body.dashboard-user-site.modal-open:has(nav.dashboard-landing-navbar.navbar-active) .layout-wrapper {
  z-index: auto !important;
}

body.dashboard-user-site.modal-open nav.layout-navbar,
body.dashboard-user-site.modal-open nav.layout-navbar.dashboard-landing-navbar,
body.dashboard-user-site.modal-open nav.layout-navbar.dashboard-landing-navbar:not(.navbar-active),
body.dashboard-user-site.modal-open nav.layout-navbar.dashboard-landing-navbar.navbar-active,
html.layout-navbar-fixed body.dashboard-user-site.modal-open .layout-wrapper.layout-without-menu .layout-navbar.dashboard-landing-navbar:not(.navbar-active),
html.layout-navbar-fixed body.dashboard-user-site.modal-open .layout-wrapper.layout-without-menu .layout-navbar.dashboard-landing-navbar.navbar-active,
body.dashboard-user-site.modal-open .layout-page.window-scrolled .layout-navbar {
  z-index: 1040 !important;
}

body.dashboard-user-site.modal-open .dashboard-welcome-notification {
  z-index: auto;
}


body.dashboard-user-site .dashboard-fixed-line {
  position: fixed;
  top: -32px;
  z-index: 1070;
  inline-size: min(583px, 33vw);
  block-size: auto;
  max-block-size: 42vh;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

body.dashboard-user-site .dashboard-fixed-line--right {
  right: -21px;
  object-position: top right;
}

body.dashboard-user-site .dashboard-fixed-line--left {
  left: -132px;
  rotate: -42deg;
  inline-size: min(597px, 36vw) !important;
  object-position: top left;
}

@media (max-width: 991.98px) {
  body.dashboard-user-site .dashboard-fixed-line {
    inline-size: min(150px, 38vw);
    max-block-size: 28vh;
  }
}

body.dashboard-user-site .dashboard-promo-split {
  --dashboard-promo-height: clamp(180px, 22vw, 280px);
  align-items: stretch;
}

@media (min-width: 768px) {
  body.dashboard-user-site .dashboard-promo-split {
    display: none !important;
  }
}

body.dashboard-user-site .dashboard-promo-split__panel {
  height: var(--dashboard-promo-height);
  overflow: hidden;
  border: 1px solid rgba(188, 14, 28, 0.28);
  background: rgba(0, 0, 0, 0.35);
}

body.dashboard-user-site .dashboard-promo-split__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

body.dashboard-user-site .dashboard-promo-split__video {
  display: flex;
  flex-direction: column;
}

body.dashboard-user-site .dashboard-promo-split__video .dashboard-promo-split__media {
  background: #000;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

body.dashboard-user-site .dashboard-promo-split__caption {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: linear-gradient(90deg, rgba(188, 14, 28, 0.3), rgba(0, 0, 0, 0.9));
  border-top: 1px solid rgba(188, 14, 28, 0.4);
}

body.dashboard-user-site .dashboard-promo-split__caption-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

body.dashboard-user-site .dashboard-promo-split__caption-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

body.dashboard-user-site .dashboard-promo-split__link {
  display: block;
  transition: filter 0.2s ease;
}

body.dashboard-user-site .dashboard-promo-split__link:hover .dashboard-promo-split__media {
  filter: brightness(1.15);
}

body.dashboard-user-site .dashboard-promo-split__man {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none !important;
  border: none;
}

body.dashboard-user-site .dashboard-promo-split__man .dashboard-promo-split__media {
  object-fit: contain;
  object-position: bottom center;
  opacity: 0.5;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

@media (max-width: 767.98px) {
  body.dashboard-user-site .dashboard-promo-split {
    --dashboard-promo-height: 200px;
  }
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.15rem;
  overflow: hidden;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-block: 0.35rem 0.15rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__track {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  width: max-content;
  animation: dashboard-ranks-marquee 48s linear infinite;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider:hover .dashboard-ranks-slider__track {
  animation-play-state: paused;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  width: 5.75rem;
  text-decoration: none;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.35rem;
  height: 5.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgb(0 0 0);
  box-shadow: inset 0 0 0 1px rgba(188, 14, 28, 0.15);
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__item.is-current .dashboard-ranks-slider__frame {
  border-color: #bc0e1c;
  box-shadow:
    inset 0 0 0 1px rgba(188, 14, 28, 0.35),
    0 0 0 1px rgba(188, 14, 28, 0.45);
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #bc0e1c;
  font-size: 1.8rem;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__name {
  display: block;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

:is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__item.is-current .dashboard-ranks-slider__name {
  color: #000;
}

@keyframes dashboard-ranks-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(body.dashboard-user-site, body.has-site-frame) .dashboard-ranks-slider__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

body.dashboard-user-site .dashboard-challenges-feed__heading {
  color: #bc0e1c;
  font-weight: 900;
}

body.dashboard-user-site .dashboard-challenges-feed__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

body.dashboard-user-site .dashboard-challenge-card-shell {
  --inv-neon: #bc0e1c;
  --inv-maroon: #800020;
  --neon-line: #ff4d5e;
  --challenge-accent: var(--inv-neon);
  --challenge-accent-hover: #f5d90a;
  position: relative;
  width: 100%;
  aspect-ratio: 1116.562 / 163.37;
  overflow: visible;
  animation: none;
  filter: none;
  box-shadow: none;
}

body.dashboard-user-site .dashboard-challenge-card-shell.is-outcome-win {
  --inv-neon: #22c55e;
  --inv-maroon: #15803d;
  --neon-line: #4ade80;
  --challenge-accent: #45f882;
  --challenge-accent-hover: #86efac;
}

body.dashboard-user-site .dashboard-challenge-card-shell.is-outcome-withdraw {
  --inv-neon: #eab308;
  --inv-maroon: #ca8a04;
  --neon-line: #facc15;
  --challenge-accent: #f5d90a;
  --challenge-accent-hover: #fde047;
}

body.dashboard-user-site .dashboard-challenge-card-shell.is-outcome-loss {
  --inv-neon: #bc0e1c;
  --inv-maroon: #800020;
  --neon-line: #ff4d5e;
  --challenge-accent: #bc0e1c;
  --challenge-accent-hover: #f87171;
}

body.dashboard-user-site .dashboard-challenge-card__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

body.dashboard-user-site .dashboard-challenge-card__shape-fill {
  fill: #19222b;
}

body.dashboard-user-site .dashboard-challenge-card__shape-accent {
  fill: var(--challenge-accent);
  transition: fill 0.2s ease;
}

body.dashboard-user-site .dashboard-challenge-card-shell:hover .dashboard-challenge-card__shape-accent {
  fill: var(--challenge-accent-hover);
}

body.dashboard-user-site .dashboard-challenge-card__shape-stroke {
  fill: none;
  stroke: var(--neon-line);
  stroke-width: 4.25;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 14 86;
  animation: dashboard-challenge-stroke-run 2.4s linear infinite;
}

@keyframes dashboard-challenge-stroke-run {
  to {
    stroke-dashoffset: -100;
  }
}

body.dashboard-user-site .dashboard-challenge-card-shell::before,
body.dashboard-user-site .dashboard-challenge-card-shell::after {
  content: none;
  display: none;
}

body.dashboard-user-site .dashboard-challenge-card__notch {
  display: none !important;
}

body.dashboard-user-site .dashboard-challenge-card {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  clip-path: none;
  -webkit-mask-image: url('../challenge-card-shape.svg');
  mask-image: url('../challenge-card-shape.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  padding: 0.35rem 1.1rem 0.35rem 0.35rem;
  box-sizing: border-box;
  transition: color 0.25s ease;
}

body.dashboard-user-site .dashboard-challenge-card-shell:hover {
  animation: none;
  filter: none;
  box-shadow: none;
}

body.dashboard-user-site .dashboard-challenge-card-shell:hover .dashboard-challenge-card__notch {
  display: none !important;
}

body.dashboard-user-site .dashboard-challenge-card-shell:hover .dashboard-challenge-card {
  background: transparent;
}

body.dashboard-user-site .dashboard-challenge-card-shell:hover .dashboard-challenge-card__shape-stroke {
  stroke: var(--challenge-accent-hover);
}

body.dashboard-user-site .dashboard-challenge-card-shell:hover .dashboard-challenge-card__title {
  color: var(--challenge-accent-hover);
  text-shadow:
    0 0 8px color-mix(in srgb, var(--challenge-accent-hover) 55%, transparent),
    0 0 16px color-mix(in srgb, var(--challenge-accent-hover) 35%, transparent);
}

@keyframes dashboard-challenge-neon-glow-strong {
  0%,
  100% {
    filter:
      drop-shadow(0 0 6px color-mix(in srgb, var(--inv-neon) 75%, transparent))
      drop-shadow(0 0 14px color-mix(in srgb, var(--inv-maroon) 65%, transparent))
      drop-shadow(0 0 24px color-mix(in srgb, var(--inv-neon) 40%, transparent));
  }
  50% {
    filter:
      drop-shadow(0 0 10px color-mix(in srgb, var(--neon-line) 95%, transparent))
      drop-shadow(0 0 22px color-mix(in srgb, var(--inv-neon) 80%, transparent))
      drop-shadow(0 0 34px color-mix(in srgb, var(--inv-maroon) 55%, transparent));
  }
}

body.dashboard-user-site .dashboard-challenge-result-modal {
  background: #111;
  overflow: hidden;
}

body.dashboard-user-site .dashboard-challenge-result-modal .modal-header {
  background: #0b0e13;
  color: #fff;
}

body.dashboard-user-site .dashboard-challenge-result-modal .modal-title {
  color: #fff;
  font-weight: 800;
}

body.dashboard-user-site .dashboard-challenge-result-modal .btn-close {
  filter: invert(1);
}

.modal .btn-close::before {
  display: block;
  background-color: var(--bs-secondary-color);
  block-size: 1.6875rem;
  content: '';
  inline-size: 1.1875rem;
}

.modal .modal-header {
  padding: 0 !important;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
  position: relative;
  top: 12px;
  right: 23px;
}

@media (max-width: 575.98px) {
  .modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
    position: relative;
    top: 34px;
  }
}

.modal .modal-header .btn-close {
  position: absolute;
  inset-inline-end: -0.05rem !important;
  inset-block-start: 53.9375px !important;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.35rem;
  background-size: 1.15em;
  opacity: 1;
  z-index: 999999999999;
}

:dir(rtl) .modal .modal-header .btn-close {
  inset-inline-end: -0.05rem !important;
}

body.dashboard-user-site .dashboard-challenge-result-modal__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  object-fit: contain;
  background: #000;
}

body.dashboard-user-site .dashboard-challenge-result-modal__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 12rem;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #6b5a45;
  background: #f7f1e6;
}

body.dashboard-user-site .dashboard-challenge-result-modal__empty i {
  font-size: 2rem;
  color: #660000;
}

body.dashboard-user-site .dashboard-challenge-result-modal__empty p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-challenge-card__sides,
body.dashboard-user-site .dashboard-challenge-card__details,
body.dashboard-user-site .dashboard-challenge-card__cover {
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

body.dashboard-user-site .dashboard-challenge-card__sides {
  flex: 0 0 32%;
  width: 32%;
  max-width: 32%;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem 0.65rem 0.55rem;
  overflow: hidden;
  order: 3;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa {
  flex-wrap: nowrap;
  gap: 0.28rem;
  padding-inline: 0.55rem;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__side.is-solo {
  flex-direction: column;
  align-items: center;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__player {
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  min-width: 0;
  max-width: 3.7rem;
  text-align: center;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__player-avatar-wrap {
  width: 2.1rem;
  height: 2.1rem;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__player-flag .fi {
  width: 0.62rem;
  height: 0.62rem;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__player-name {
  max-width: 3.6rem;
  font-size: 0.58rem;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__player-rank {
  justify-content: center;
  font-size: 0.52rem;
}

body.dashboard-user-site .dashboard-challenge-card__sides.is-ffa .dashboard-challenge-card__vs-img {
  width: 2.75rem;
  height: 2.75rem;
}

body.dashboard-user-site .dashboard-challenge-card__details {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.25rem;
  border: none;
  text-align: center;
  overflow: hidden;
  order: 2;
}

body.dashboard-user-site .dashboard-challenge-card__details::before,
body.dashboard-user-site .dashboard-challenge-card__details::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1px;
  height: 58%;
  max-height: 7.5rem;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
  pointer-events: none;
}

body.dashboard-user-site .dashboard-challenge-card__details::before {
  display: none;
}

body.dashboard-user-site .dashboard-challenge-card__details::after {
  right: 0;
}

body.dashboard-user-site .dashboard-challenge-card__cover {
  position: relative;
  flex: 0 0 16.5%;
  width: 16.5%;
  max-width: 16.5%;
  justify-content: center;
  align-self: stretch;
  margin: 0.2rem 0.1rem 0.2rem 0.55rem;
  padding: 0;
  overflow: hidden;
  background: #111820;
  order: 1;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 16% 100%, 0 82%, 0 18%);
}

body.dashboard-user-site .dashboard-challenge-card__crime-badge {
  position: absolute;
  top: 0.45rem;
  left: 2.45rem;
  right: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: #660000;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

body.dashboard-user-site .dashboard-challenge-card__cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.dashboard-user-site .dashboard-challenge-card__cover-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 2rem;
  background: #1a1a1a;
}

body.dashboard-user-site .dashboard-challenge-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

body.dashboard-user-site .dashboard-challenge-card__meta i {
  margin-inline-end: 0.2rem;
  vertical-align: middle;
}

body.dashboard-user-site .dashboard-challenge-card__date-box {
  position: relative;
  top: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  flex: 0 0 auto;
  align-self: center;
  min-width: 7.2rem;
  padding: 0.4rem 0.55rem;
  order: 1;
  text-align: center;
  color: #fff;
}

body.dashboard-user-site .dashboard-challenge-card__date-day {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
}

body.dashboard-user-site .dashboard-challenge-card__date-month {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

body.dashboard-user-site .dashboard-challenge-card__date-year {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
}

body.dashboard-user-site .dashboard-challenge-card__date-time {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

body.dashboard-user-site .dashboard-challenge-card__title {
  margin: 0;
  max-width: 100%;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transition: color 0.2s ease;
}

body.dashboard-user-site .dashboard-challenge-card__subtitle {
  margin: 0;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

body.dashboard-user-site .dashboard-challenge-card__text {
  margin: 0;
  max-width: 34rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.dashboard-user-site .dashboard-challenge-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

body.dashboard-user-site .dashboard-challenge-card__outcome-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.7rem;
  border-radius: 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff;
}

body.dashboard-user-site .dashboard-challenge-card__outcome-badge.is-win {
  background: rgba(22, 163, 74, 0.22);
  border: 1px solid rgba(22, 163, 74, 0.7);
  color: #45f882;
}

body.dashboard-user-site .dashboard-challenge-card__outcome-badge.is-withdraw {
  background: rgba(202, 138, 4, 0.2);
  border: 1px solid rgba(202, 138, 4, 0.7);
  color: #facc15;
}

body.dashboard-user-site .dashboard-challenge-card__outcome-badge.is-loss {
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(220, 38, 38, 0.7);
  color: #f87171;
}

body.dashboard-user-site .dashboard-challenge-card__result-btn {
  align-self: center;
  margin-top: 0.2rem;
  min-width: 7.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.2rem;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.dashboard-user-site .dashboard-challenge-card__result-btn:hover,
body.dashboard-user-site .dashboard-challenge-card__result-btn:focus {
  border-color: #bc0e1c;
  background: rgba(188, 14, 28, 0.18);
  color: #fff;
}

body.dashboard-user-site .dashboard-challenge-card__vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  z-index: 1;
}

body.dashboard-user-site .dashboard-challenge-card__vs-img {
  position: relative;
  top: 17px;
  display: block;
  width: 4.95rem;
  height: 4.95rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body.dashboard-user-site .dashboard-challenge-card__side.is-solo {
  display: flex;
  align-items: center;
}

body.dashboard-user-site .dashboard-challenge-card__side.is-team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  flex: 1 1 0;
  width: 100%;
  max-width: calc(50% - 1.6rem);
  min-width: 0;
  min-height: 100%;
  padding: 0.35rem 0.3rem;
  border: none;
  border-radius: 0.25rem;
  background: none;
  box-sizing: border-box;
}

body.dashboard-user-site .dashboard-challenge-card__team-name {
  display: block;
  width: 100%;
  margin-bottom: 0.15rem;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.dashboard-user-site .dashboard-challenge-card__team-icon-wrap {
  position: relative;
  top: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-top: -1rem;
  margin-inline: auto;
  margin-bottom: 0.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #800020;
  line-height: 0;
  overflow: hidden;
}

body.dashboard-user-site .dashboard-challenge-card__team-icon {
  display: block;
  width: 74%;
  height: 74%;
  background-color: #800020;
  -webkit-mask-image: var(--team-icon);
  mask-image: var(--team-icon);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: luminance;
}

body.dashboard-user-site .dashboard-challenge-card__side.is-winner {
  border-color: rgba(188, 14, 28, 0.7);
  box-shadow: inset 0 0 0 1px rgba(188, 14, 28, 0.35);
}

body.dashboard-user-site .dashboard-challenge-card__side.is-team.is-winner {
  border: none;
  box-shadow: none;
}

/* Mirror the right-hand team: avatar on the right, name on its left */
body.dashboard-user-site .dashboard-challenge-card__sides > .dashboard-challenge-card__side.is-team:last-child .dashboard-challenge-card__player {
  flex-direction: row-reverse;
  position: relative;
  right: 7px;
}

body.dashboard-user-site .dashboard-challenge-card__sides > .dashboard-challenge-card__side.is-team:last-child .dashboard-challenge-card__player-meta {
  align-items: flex-end;
  text-align: right;
}

body.dashboard-user-site .dashboard-challenge-card__player {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  width: 100%;
}

body.dashboard-user-site .dashboard-challenge-card__player-avatar-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 50%;
}

body.dashboard-user-site .dashboard-challenge-card__player-avatar-btn:focus-visible {
  outline: 2px solid rgba(188, 14, 28, 0.85);
  outline-offset: 2px;
}

body.dashboard-user-site .dashboard-challenge-card__player-avatar-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  border-radius: 50%;
  overflow: visible;
  border: 1px solid rgba(188, 14, 28, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  background: #111;
}

body.dashboard-user-site .dashboard-challenge-card__player-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
  background: #111;
}

body.dashboard-user-site .dashboard-challenge-card__player-flag {
  position: absolute;
  right: -0.1rem;
  bottom: -0.05rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
}

body.dashboard-user-site .dashboard-challenge-card__player-flag .country-flag-group {
  display: inline-flex;
  line-height: 0;
}

body.dashboard-user-site .dashboard-challenge-card__player-flag .fi {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

body.dashboard-user-site .dashboard-challenge-card__player-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1 1 auto;
}

body.dashboard-user-site .dashboard-challenge-card__player-name {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

body.dashboard-user-site .dashboard-challenge-card__player-rank {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.62);
}

body.dashboard-user-site .dashboard-challenge-card__player-rank-img {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  body.dashboard-user-site .dashboard-challenge-card-shell {
    aspect-ratio: auto;
    min-height: 17rem;
  }

  body.dashboard-user-site .dashboard-challenge-card {
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-height: 0;
    max-height: none;
    padding: 0.85rem 1.2rem;
  }

  body.dashboard-user-site .dashboard-challenge-card__sides,
  body.dashboard-user-site .dashboard-challenge-card__details,
  body.dashboard-user-site .dashboard-challenge-card__cover {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    order: initial;
    margin: 0;
    clip-path: none;
  }

  body.dashboard-user-site .dashboard-challenge-card__cover {
    min-height: 7.5rem;
  }

  body.dashboard-user-site .dashboard-challenge-card__sides {
    flex-wrap: wrap;
    min-height: 9rem;
  }

  body.dashboard-user-site .dashboard-challenge-card__side.is-team {
    max-width: calc(50% - 1.4rem);
    min-height: 0;
  }

  body.dashboard-user-site .dashboard-challenge-card__details {
    border: none;
  }

  body.dashboard-user-site .dashboard-challenge-card__details::before,
  body.dashboard-user-site .dashboard-challenge-card__details::after {
    top: auto;
    left: 50%;
    right: auto;
    width: 58%;
    max-width: 14rem;
    height: 1px;
    max-height: none;
    transform: translateX(-50%);
  }

  body.dashboard-user-site .dashboard-challenge-card__details::before {
    top: 0;
    bottom: auto;
  }

  body.dashboard-user-site .dashboard-challenge-card__details::after {
    bottom: 0;
    top: auto;
  }

  body.dashboard-user-site .dashboard-challenge-card__cover-img,
  body.dashboard-user-site .dashboard-challenge-card__cover-fallback {
    min-height: 150px;
  }
}

/* -- Tournament / challenges page (MYKD style, RTL) -- */

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-btn {
  border: 1px solid #bc0e1c;
  border-radius: 0.25rem;
  background: rgba(188, 14, 28, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 1.1rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-btn:focus {
  border-color: #ff4d5e;
  background: rgba(188, 14, 28, 0.35);
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-filter__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.55rem 1.25rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-filter__btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-filter__btn:focus {
  border-color: #bc0e1c;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-filter__btn.is-active {
  border-color: #bc0e1c;
  background: rgba(188, 14, 28, 0.25);
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-feed {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell {
  --tournament-neon: #bc0e1c;
  --tournament-maroon: #800020;
  --tournament-line: #ff4d5e;
  --tournament-accent: var(--tournament-neon);
  position: relative;
  width: 100%;
  min-height: 9.5rem;
  aspect-ratio: 1116.562 / 163.37;
  overflow: visible;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-open {
  --tournament-neon: #eab308;
  --tournament-maroon: #ca8a04;
  --tournament-line: #facc15;
  --tournament-accent: #f5d90a;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-started {
  --tournament-neon: #22c55e;
  --tournament-maroon: #15803d;
  --tournament-line: #4ade80;
  --tournament-accent: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-finished,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-outcome-win {
  --tournament-neon: #22c55e;
  --tournament-maroon: #15803d;
  --tournament-line: #4ade80;
  --tournament-accent: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-pending {
  --tournament-neon: #3b82f6;
  --tournament-maroon: #1d4ed8;
  --tournament-line: #60a5fa;
  --tournament-accent: #60a5fa;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-sent {
  --tournament-neon: #eab308;
  --tournament-maroon: #ca8a04;
  --tournament-line: #facc15;
  --tournament-accent: #f5d90a;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-payment {
  --tournament-neon: #bc0e1c;
  --tournament-maroon: #800020;
  --tournament-line: #e11d2e;
  --tournament-accent: #ff4d5e;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__shape-fill {
  fill: #19222b;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__shape-accent {
  fill: var(--tournament-accent);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__shape-stroke {
  fill: none;
  stroke: var(--tournament-line);
  stroke-width: 4.25;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 14 86;
  animation: dashboard-challenge-stroke-run 2.4s linear infinite;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  padding: 1rem 2.6rem;
  color: #fff;
  box-sizing: border-box;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card--versus {
  align-items: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team--solo {
  flex: 0 0 auto;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team--right {
  flex-direction: row;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team--left {
  flex-direction: row-reverse;
  text-align: left;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team.is-winner .dashboard-tournament-card__logo-wrap {
  border-color: #45f882;
  box-shadow: 0 0 0 2px rgba(69, 248, 130, 0.35);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #800020;
  flex-shrink: 0;
  overflow: hidden;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__logo {
  display: block;
  width: 72%;
  height: 72%;
  background-color: #800020;
  -webkit-mask-image: var(--team-icon);
  mask-image: var(--team-icon);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-name {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-role {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.62);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__logo-wrap--question {
  overflow: hidden;
  background: none;
  border: none;
  box-shadow: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__question-img {
  display: block;
  width: 74%;
  height: 74%;
  object-fit: contain;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.3;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-result.is-win {
  color: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-result.is-loss {
  color: #f87171;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-name-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-count {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team-count .bx {
  font-size: 0.95rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__online {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__online-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #45f882;
  box-shadow: 0 0 6px rgba(69, 248, 130, 0.8);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__prize {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 30rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__prize-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(188, 14, 28, 0.2);
  color: #f5d90a;
  font-size: 1.6rem;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__prize-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__prize-note {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__date-box {
  position: relative;
  right: 64px;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  flex: 0 0 auto;
  min-width: 8.5rem;
  text-align: center;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__date-day {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__date-month {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__date-time {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__action {
  flex: 0 0 auto;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__accept-btn {
  appearance: none;
  border: 2px solid #bc0e1c;
  border-radius: 0.25rem;
  background: rgba(188, 14, 28, 0.22);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__accept-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__accept-btn:focus {
  background: rgba(188, 14, 28, 0.38);
  border-color: #ff4d5e;
}

.dashboard-tournament-card__play-form {
    display: contents;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__play-btn {
  position: absolute;
  left: 0.85rem;
  bottom: 0.65rem;
  z-index: 5;
  appearance: none;
  border: 2px solid #3b82f6;
  border-radius: 0.25rem;
  background: rgba(59, 130, 246, 0.28);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__play-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__play-btn:focus {
  background: rgba(59, 130, 246, 0.48);
  border-color: #93c5fd;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__play-btn--cancel {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.92);
  color: #19222b;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__play-btn--cancel:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__play-btn--cancel:focus {
  background: #fff;
  border-color: #fff;
  color: #111;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__challengers-btn {
  position: absolute;
  right: 1.85rem;
  bottom: 0.65rem;
  z-index: 5;
  appearance: none;
  border: 2px solid #fff;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.92);
  color: #19222b;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__challengers-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__challengers-btn:focus {
  background: #fff;
  border-color: #fff;
  color: #111;
}

body.dashboard-user-site .challenge-challengers-modal .modal-content {
  border-radius: 1rem;
  overflow: hidden;
}

body.dashboard-user-site .challenge-challengers-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.dashboard-user-site .challenge-challengers-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.85rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

body.dashboard-user-site .challenge-challengers-item:hover {
  border-color: rgba(188, 14, 28, 0.45);
}

body.dashboard-user-site .challenge-challengers-item.is-selected {
  border-color: #bc0e1c;
  background: rgba(188, 14, 28, 0.06);
  box-shadow: 0 0 0 0.15rem rgba(188, 14, 28, 0.12);
}

body.dashboard-user-site .challenge-challengers-item__logo {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #800020;
  background-color: #fff;
  background-image: var(--team-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 68%;
}

body.dashboard-user-site .challenge-challengers-item__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}

body.dashboard-user-site .challenge-challengers-item__name {
  color: #111;
  font-size: 1.02rem;
  font-weight: 800;
}

body.dashboard-user-site .challenge-challengers-item__count {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

body.dashboard-user-site .challenge-challengers-item__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: transparent;
  flex-shrink: 0;
}

body.dashboard-user-site .challenge-challengers-item.is-selected .challenge-challengers-item__check {
  background: #bc0e1c;
  border-color: #bc0e1c;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  padding-inline: 0.75rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__challenge-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__center-date {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__center-date-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  text-transform: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__center-date--inline {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__center-date--inline .dashboard-tournament-card__center-date-label {
  font-size: inherit;
  color: inherit;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__result-time {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__result-line {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

body.dashboard-user-site .swal2-container {
  z-index: 2147483647 !important;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__gift-btn--corner {
  position: absolute;
  top: 6px !important;
  left: -47px;
  z-index: 2;
  margin: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__terms-btn--corner {
  position: absolute;
  top: 6px !important;
  right: 7px;
  left: auto;
  z-index: 2;
  margin: 0;
  rotate: 0deg;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__terms-btn {
  border-radius: 6px !important;
  appearance: none;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  width: 5.9rem;
  height: 1.6rem;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: #660000 !important;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__terms-btn-text {
  color: #fff;
  font-size: 0.70rem;
  font-weight: 800;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__terms-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__terms-btn:focus {
  background: #9a3412;
  transform: translateY(-2px);
}

.dashboard-tournament-details__terms-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.dashboard-tournament-details__terms-list {
  padding-inline-start: 1.15rem;
  margin: 0;
  line-height: 1.85;
  color: inherit;
}

.dashboard-tournament-details__terms-list li + li {
  margin-top: 0.35rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__gift-btn {
  border-radius: 0 !important;
  rotate: -44deg;
  appearance: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  width: 9.6rem;
  height: 3.6rem;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: #3b82f6;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__gift-btn-text {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__gift-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__gift-btn:focus {
  background: #2563eb;
  transform: translateY(-2px);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-started .dashboard-tournament-card__gift-btn,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-finished .dashboard-tournament-card__gift-btn {
  background: #16a34a;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-open .dashboard-tournament-card__gift-btn {
  background: #f5d90a;
  color: #19222b;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-open .dashboard-tournament-card__gift-btn .dashboard-tournament-card__gift-btn-text {
  color: #19222b;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-open .dashboard-tournament-card__gift-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-open .dashboard-tournament-card__gift-btn:focus {
  background: #eab308;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-started .dashboard-tournament-card__gift-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-started .dashboard-tournament-card__gift-btn:focus,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-finished .dashboard-tournament-card__gift-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-finished .dashboard-tournament-card__gift-btn:focus {
  background: #15803d;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge.is-started {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.65);
  color: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge.is-finished {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.65);
  color: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge.is-pending {
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.65);
  color: #93c5fd;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge.is-open {
  background: rgba(234, 179, 8, 0.18);
  border: 1px solid rgba(234, 179, 8, 0.65);
  color: #f5d90a;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge.is-sent {
  background: rgba(234, 179, 8, 0.18);
  border: 1px solid rgba(234, 179, 8, 0.65);
  color: #f5d90a;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-sent .dashboard-tournament-card__gift-btn {
  background: #f5d90a;
  color: #19222b;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-sent .dashboard-tournament-card__gift-btn .dashboard-tournament-card__gift-btn-text {
  color: #19222b;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-sent .dashboard-tournament-card__gift-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-sent .dashboard-tournament-card__gift-btn:focus {
  background: #eab308;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__status-badge.is-payment {
  background: rgba(188, 14, 28, 0.22);
  border: 1px solid rgba(188, 14, 28, 0.75);
  color: #ff6b7a;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-payment .dashboard-tournament-card__gift-btn {
  background: #bc0e1c;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-payment .dashboard-tournament-card__gift-btn .dashboard-tournament-card__gift-btn-text {
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-payment .dashboard-tournament-card__gift-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-status-payment .dashboard-tournament-card__gift-btn:focus {
  background: #800020;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-row .dashboard-tournament-card__countdown {
  margin-top: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 3rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-value {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  margin-top: -0.55rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-ready {
  font-size: 1.1rem;
  font-weight: 800;
  color: #45f882;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-ready-form {
  display: inline-flex;
  margin: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-ready-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #45f882;
  border-radius: 0.35rem;
  background: rgba(69, 248, 130, 0.18);
  color: #45f882;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-ready-btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__countdown-ready-btn:focus {
  background: rgba(69, 248, 130, 0.32);
  border-color: #7dffab;
  color: #7dffab;
  text-decoration: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-hidden {
  display: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column.is-hidden {
  display: none;
}

body.dashboard-user-site .dashboard-challenge-card-shell.is-hidden {
  display: none;
}

/* -- 3-column challenges layout -- */

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column__title {
  margin: 0;
  text-align: center;
  color: #bc0e1c;
  font-size: 1.15rem;
  font-weight: 900;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Compact cards inside columns */
@property --tournament-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card-shell {
  aspect-ratio: auto;
  min-height: 15.5rem;
  display: flex;
  padding: 4px;
  clip-path: polygon(
    2rem 0,
    100% 0,
    100% calc(100% - 2rem),
    calc(100% - 2rem) 100%,
    0 100%,
    0 2rem
  );
  background:
    conic-gradient(
      from var(--tournament-angle),
      transparent 0 55%,
      var(--tournament-line) 80%,
      transparent 100%
    ),
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
  animation: dashboard-tournament-border-spin 2.4s linear infinite;
}

/* Must win over the column shell `display: flex` rule above */
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card-shell.is-hidden,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell.is-hidden {
  display: none;
}

@keyframes dashboard-tournament-border-spin {
  to {
    --tournament-angle: 360deg;
  }
}

/* The wide SVG shape distorts on tall cards ? swap it for a CSS shape */
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__shape {
  display: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: auto;
  width: 100%;
  padding: 1.3rem 1rem 1.15rem;
  text-align: center;
  background: #19222b;
  clip-path: polygon(
    2rem 0,
    100% 0,
    100% calc(100% - 2rem),
    calc(100% - 2rem) 100%,
    0 100%,
    0 2rem
  );
}


:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card--versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    'right vs left'
    'center center center';
  gap: 0.85rem 0.5rem;
  align-items: start;
  align-content: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__vs {
  grid-area: vs;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__vs-img {
  display: block;
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team--right {
  grid-area: right;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team--left {
  grid-area: left;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__center {
  grid-area: center;
  padding-inline: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team--right,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team--left {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: center;
  min-width: 0;
}

/* Left team markup is (meta, logo) ? reverse so the logo sits above the name */
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team--left {
  flex-direction: column-reverse;
  justify-content: flex-end;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team--solo {
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team-meta {
  align-items: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__logo-wrap {
  width: 2.9rem;
  height: 2.9rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team-name {
  font-size: 0.85rem;
  white-space: normal;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__team-role {
  font-size: 0.7rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__challenge-title {
  font-size: 1.15rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__center-date {
  font-size: 0.78rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__result-time {
  font-size: 0.76rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__result-line {
  font-size: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__status-badge {
  font-size: 0.74rem;
  padding: 0.3rem 0.75rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__prize {
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  max-width: none;
  text-align: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__prize-icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.25rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__prize-title {
  font-size: 0.92rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__prize-note {
  font-size: 0.7rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__date-box {
  position: static;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__date-day {
  font-size: 1.8rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__date-month {
  font-size: 0.95rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__date-time {
  font-size: 0.76rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__accept-btn {
  font-size: 0.85rem;
  padding: 0.55rem 1.15rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__countdown-value {
  font-size: 1.05rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__countdown-item {
  min-width: 2.4rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__countdown-sep {
  font-size: 1.15rem;
  margin-top: -0.45rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-column .dashboard-tournament-card__countdown-label {
  font-size: 0.6rem;
}

@media (max-width: 1199.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card-shell {
    aspect-ratio: auto;
    min-height: 0;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card {
    position: relative;
    inset: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    min-height: 0;
    padding: 1rem 1.1rem;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card--versus {
    gap: 1rem;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team--left,
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team--right {
    justify-content: center;
    text-align: center;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__team--left {
    flex-direction: row;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__prize {
    max-width: none;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-card__date-box {
    top: 0;
  }
}

/* -- All challenges page (title + filter tabs + grid) -- */

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-title {
  position: relative;
  margin: 0;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #000;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-title::after {
  content: '';
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-top: 0.4rem;
  background: #bc0e1c;
  border-radius: 2px;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.9rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-tabs__btn {
  appearance: none;
  border: none;
  background: none;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #000;
  cursor: pointer;
  transition: color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-tabs__btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-tabs__btn:focus {
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-tabs__btn.is-active {
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

body.dashboard-user-site .dashboard-prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

body.dashboard-user-site .dashboard-prize-card {
  display: flex;
  flex-direction: column;
  background: #19222b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: #fff;
}

body.dashboard-user-site .dashboard-prize-card.is-hidden {
  display: none !important;
}

body.dashboard-user-site .dashboard-prize-card__media {
  position: relative;
  aspect-ratio: 1.15 / 1;
  background: #0f141a;
  overflow: hidden;
}

body.dashboard-user-site .dashboard-prize-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.dashboard-user-site .dashboard-prize-card__type {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

body.dashboard-user-site .dashboard-prize-card__type.is-issue {
  background: rgba(59, 130, 246, 0.92);
  color: #fff;
}

body.dashboard-user-site .dashboard-prize-card__type.is-product {
  background: rgba(34, 197, 94, 0.92);
  color: #fff;
}

body.dashboard-user-site .dashboard-prize-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.05rem 1.15rem;
  background: #fff;
  color: #111;
}

body.dashboard-user-site .dashboard-prize-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

body.dashboard-user-site .dashboard-prize-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

body.dashboard-user-site .dashboard-prize-card__meta li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #111;
}

body.dashboard-user-site .dashboard-prize-card__meta-label {
  color: #6b7280;
  font-weight: 600;
}

body.dashboard-user-site .dashboard-prize-card__status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

body.dashboard-user-site .dashboard-prize-card__status.is-unused {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

body.dashboard-user-site .dashboard-prize-card__status.is-used {
  background: rgba(107, 114, 128, 0.16);
  color: #4b5563;
}

body.dashboard-user-site .dashboard-prize-card__status.is-obtained {
  background: rgba(188, 14, 28, 0.12);
  color: #bc0e1c;
}

@media (max-width: 767.98px) {
  body.dashboard-user-site .dashboard-prizes-grid {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  }
}

/* -- Profile section tabs (???? / ???????? / ??????? / ?????) -- */

body.dashboard-user-site .dashboard-profile-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.dashboard-user-site .dashboard-detectives-guild-heading,
body.dashboard-user-site .dashboard-detectives-guild-heading h4,
body.dashboard-user-site .dashboard-detectives-guild-heading h5,
body.dashboard-user-site .dashboard-detectives-guild-heading p,
body.dashboard-user-site h5.dashboard-detectives-guild-heading {
  color: #000 !important;
}

body.dashboard-user-site .dashboard-profile-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 2.55rem;
  height: auto;
  min-height: 2.55rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(188, 14, 28, 0.45);
  border-radius: 0.35rem;
  background: rgba(188, 14, 28, 0.08);
  color: #111;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.dashboard-user-site .dashboard-profile-tabs__btn i {
  display: none;
  line-height: 1;
  pointer-events: none;
}

body.dashboard-user-site .dashboard-profile-tabs__label {
  line-height: 1.2;
}

body.dashboard-user-site .dashboard-profile-tabs__btn:hover,
body.dashboard-user-site .dashboard-profile-tabs__btn:focus {
  border-color: #bc0e1c;
  background: rgba(188, 14, 28, 0.22);
  color: #111;
}

body.dashboard-user-site .dashboard-profile-tabs__btn.is-active {
  border-color: #bc0e1c;
  background: #bc0e1c;
  color: #fff;
}

body.dashboard-user-site.is-profile-tab-loading,
body.dashboard-user-site.is-profile-tab-loading .dashboard-profile-tabs__btn {
  cursor: progress;
}

body.dashboard-user-site.is-profile-tab-loading .content-wrapper > .container-xxl {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

@media (max-width: 575.98px) {
  body.dashboard-user-site .dashboard-profile-tabs__btn {
    width: 2.55rem;
    min-width: 2.55rem;
    height: 2.55rem;
    min-height: 2.55rem;
    padding: 0;
    font-size: 1rem;
  }

  body.dashboard-user-site .dashboard-profile-tabs__btn i {
    display: inline-flex;
  }

  body.dashboard-user-site .dashboard-profile-tabs__label {
    display: none;
  }
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.25rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 0.5rem;
  border: 1px solid rgba(188, 14, 28, 0.45);
  border-radius: 0.25rem;
  background: rgba(188, 14, 28, 0.08);
  color: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__btn:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__btn:focus {
  border-color: #bc0e1c;
  background: rgba(188, 14, 28, 0.22);
  color: inherit;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__btn.is-active {
  border-color: #bc0e1c;
  background: #bc0e1c;
  color: #fff;
  pointer-events: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__btn--arrow {
  font-size: 1.35rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-pagination__dots {
  display: inline-flex;
  align-items: end;
  min-width: 1.4rem;
  justify-content: center;
  font-weight: 800;
  color: #8f98a3;
}

@media (max-width: 1199.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-grid {
    grid-template-columns: 1fr;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-all-title {
    font-size: 2rem;
  }
}

/* -- Internal scroll below fixed header (TeamHost style) -- */

body.dashboard-user-site {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.dashboard-user-site .layout-content-navbar .layout-page {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

body.dashboard-user-site .content-wrapper {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: #bc0e1c transparent;
}

body.dashboard-user-site .content-wrapper::-webkit-scrollbar {
  width: 9px;
}

body.dashboard-user-site .content-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

body.dashboard-user-site .content-wrapper::-webkit-scrollbar-thumb {
  background: #bc0e1c;
  border-radius: 10px;
}

body.dashboard-user-site .content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #ff4d5e;
}

/* -- Header actions in navbar (replacing nav links) -- */

body.dashboard-user-site .dashboard-header-actions {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

body.dashboard-user-site .dashboard-header-actions .dashboard-user-welcome-actions {
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  max-width: 100%;
}

/* -- Hamburger button (MYKD style) -- */

body.dashboard-user-site .dashboard-hamburger-btn {
  appearance: none;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.4rem 0.45rem;
  cursor: pointer;
}

body.dashboard-user-site .dashboard-hamburger-btn__line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: #111;
  transition: width 0.28s ease, background 0.2s ease;
}

body.dashboard-user-site .dashboard-hamburger-btn__line--top,
body.dashboard-user-site .dashboard-hamburger-btn__line--bottom {
  width: 60%;
}

body.dashboard-user-site .dashboard-hamburger-btn:hover .dashboard-hamburger-btn__line,
body.dashboard-user-site .dashboard-hamburger-btn:focus-visible .dashboard-hamburger-btn__line,
body.dashboard-user-site .dashboard-hamburger-btn.is-open .dashboard-hamburger-btn__line {
  width: 100%;
  background: #bc0e1c;
}

body.dashboard-user-site .dashboard-header-corner {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

body.dashboard-user-site .dashboard-header-corner__main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.detective-guild-card-modal__stats {
  position: relative;
  top: -125px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  z-index: 2;
  overflow: visible;
}

.detective-guild-card-modal__stats .dashboard-welcome-icon-item,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-win,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-loss,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-withdraw,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-win,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-loss,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-withdraw {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 3.1rem;
  color: #fff !important;
  text-decoration: none !important;
}

.detective-guild-card-modal__stats .dashboard-welcome-icon-btn,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item:hover .dashboard-welcome-icon-btn,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item:focus .dashboard-welcome-icon-btn,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item i,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item .dashboard-welcome-icon-btn,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item:hover .dashboard-welcome-icon-btn,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item:focus .dashboard-welcome-icon-btn,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item i {
  position: static;
  color: #fff !important;
  width: auto;
  height: auto;
  font-size: 0.95rem;
  line-height: 1;
}

.detective-guild-card-modal__stats .dashboard-welcome-vs-icon,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-vs-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.detective-guild-card-modal__stats .dashboard-welcome-icon-count,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-count,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-count,
.detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-count,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-count,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-win .dashboard-welcome-icon-count,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-loss .dashboard-welcome-icon-count,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-item.is-withdraw .dashboard-welcome-icon-count {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  display: block;
  min-width: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-align: center;
}

.detective-guild-card-modal__stats .dashboard-welcome-icon-label,
body.dashboard-user-site .detective-guild-card-modal__stats .dashboard-welcome-icon-label {
  color: #fff !important;
  opacity: 0.92;
  max-width: none;
  width: auto;
  min-width: 3.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

body.dashboard-user-site .dashboard-header-corner__name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}

body.dashboard-user-site .dashboard-header-corner__avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

body.dashboard-user-site .dashboard-header-corner__user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

body.dashboard-user-site .dashboard-header-corner__card,
body.dashboard-user-site .dashboard-header-corner__card-icon {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bc0e1c;
  cursor: pointer;
  transition: color 0.15s ease;
}

body.dashboard-user-site .dashboard-header-corner__card {
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
  top: 9px;
}

body.dashboard-user-site .dashboard-header-corner__card-icon {
  font-size: 1.15rem;
  line-height: 1;
}

body.dashboard-user-site .dashboard-header-corner__card:hover,
body.dashboard-user-site .dashboard-header-corner__card-icon:hover {
  color: #800020;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-header-corner__card,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-header-corner__card-icon {
  color: #ff4d5e;
}

body.dashboard-user-site .dashboard-header-corner--left {
  right: auto;
  /* Stay clear of the centered red blood header as the viewport shrinks */
  left: clamp(0.65rem, calc(50% - 31.5rem), 19.25rem);
  top: 1.1rem;
  z-index: 40;
}

@media (max-width: 1199.98px) {
  body.dashboard-user-site .dashboard-header-corner--left {
    left: 0.75rem;
  }

  body.dashboard-user-site .landing-top-layer {
    inline-size: min(460px, 58vw) !important;
    width: min(460px, 58vw) !important;
  }

  body.dashboard-user-site .dashboard-start-investigation-btn {
    min-width: 138px;
    min-height: 42px;
    padding: 8px 20px;
    font-size: 0.86rem;
  }
}

@media (max-width: 767.98px) {
  body.dashboard-user-site .dashboard-header-corner--left {
    left: 0.5rem;
    top: 0.75rem;
    max-width: calc(50% - 3.5rem);
  }

  body.dashboard-user-site .dashboard-header-corner--left .navbar-nav {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  body.dashboard-user-site .landing-top-layer {
    inline-size: min(320px, 64vw) !important;
    width: min(320px, 64vw) !important;
    height: 150px !important;
    block-size: 150px !important;
    max-height: 150px !important;
    max-block-size: 150px !important;
  }

  body.dashboard-user-site .dashboard-start-investigation-btn {
    min-width: 118px;
    min-height: 38px;
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

body.dashboard-user-site .dashboard-header-corner--left .navbar-nav {
  list-style: none;
}

body.dashboard-user-site .dashboard-corner-bell {
  color: #bc0e1c !important;
  font-size: 1.3rem;
  line-height: 1;
}

body.dashboard-user-site .dashboard-corner-bell:hover {
  color: #800020 !important;
}

body.dashboard-user-site .dashboard-corner-bell .dashboard-welcome-icon-count {
  top: -0.15rem;
  inset-inline-end: -0.05rem;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-header-corner {
  position: static;
  order: 0;
  align-self: center;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  margin-inline-end: 0.25rem;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-header-corner--left {
  order: 4;
  margin-inline-end: 0;
  margin-inline-start: 0.25rem;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-header-corner--left .nav-item:has(.landing-music-toggle) {
  display: none !important;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-header-corner__name {
  color: #fff;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-hamburger-btn__line {
  background: #fff;
}

body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-hamburger-btn:hover .dashboard-hamburger-btn__line,
body.dashboard-user-site nav.layout-navbar.dashboard-landing-navbar.navbar-active .dashboard-hamburger-btn.is-open .dashboard-hamburger-btn__line {
  background: #ff4d5e;
}

/* -- Side menu (offcanvas from the right) -- */

body.dashboard-user-site .dashboard-side-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: rgba(4, 6, 10, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.dashboard-user-site .dashboard-side-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.dashboard-user-site .dashboard-side-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483647;
  width: min(21rem, 88vw);
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem;
  background: #0b0e13;
  box-shadow: -14px 0 44px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

body.dashboard-user-site .dashboard-side-menu.is-open {
  transform: translateX(0);
}

body.dashboard-user-site .dashboard-side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  gap: 0.75rem;
}

body.dashboard-user-site .dashboard-side-menu__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

body.dashboard-user-site .dashboard-side-menu__logo img {
  width: auto;
  max-width: 9.5rem;
  height: 2.65rem;
  object-fit: contain;
}

body.dashboard-user-site .dashboard-side-menu__close {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.2s ease;
}

body.dashboard-user-site .dashboard-side-menu__close:hover {
  border-color: #bc0e1c;
  background: rgba(188, 14, 28, 0.3);
  transform: rotate(90deg);
}

body.dashboard-user-site .dashboard-side-menu__welcome {
  margin: 1rem 0 0.25rem;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: center;
}

body.dashboard-user-site .dashboard-side-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0.85rem 0 0;
  padding: 0;
}

body.dashboard-user-site .dashboard-side-menu__links .nav-link {
  display: block;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #e7e9ee !important;
  font-size: 1.02rem;
  font-weight: 700;
  transition: color 0.15s ease, padding-right 0.2s ease;
}

body.dashboard-user-site .dashboard-side-menu__links .nav-link:hover,
body.dashboard-user-site .dashboard-side-menu__links .nav-link.active {
  color: #ff4d5e !important;
  padding-right: 0.7rem;
}

body.dashboard-user-site .dashboard-side-menu__logout {
  margin-top: auto;
  padding-top: 1.25rem;
}

body.dashboard-user-site .dashboard-side-menu__logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(188, 14, 28, 0.55);
  border-radius: 0.3rem;
  background: rgba(188, 14, 28, 0.16);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

body.dashboard-user-site .dashboard-side-menu__logout-btn:hover {
  border-color: #ff4d5e;
  background: rgba(188, 14, 28, 0.42);
}

body.dashboard-user-site .dashboard-side-menu__logout-btn img {
  filter: brightness(0) invert(1);
}

body.dashboard-user-site .dashboard-purchase-card .card-body {
  background-color: #fff;
}

body.dashboard-user-site .dashboard-purchase-card .card-title {
  font-weight: 800;
  color: #111;
}

body.dashboard-user-site .dashboard-purchase-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
}

body.dashboard-user-site .dashboard-purchase-card__meta li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
  line-height: 1.35;
}

body.dashboard-user-site .dashboard-purchase-card__meta-label {
  color: #6b7280;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-purchase-card__meta-value {
  color: #111;
  font-weight: 800;
  text-align: left;
}

body.dashboard-user-site .dashboard-purchase-card .landing-issue-action-bar {
  margin-top: auto;
}

/* -- Teams page (?????) -- */

body.dashboard-user-site .dashboard-teams-page {
  --team-accent: #bc0e1c;
  --team-radius: 1.1rem;
}

body.dashboard-user-site .dashboard-team-form-card,
body.dashboard-user-site .dashboard-team-card {
  max-width: 36rem;
  margin-inline: auto;
  border: 1px solid rgba(188, 14, 28, 0.16);
  border-radius: 1.35rem;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
  background: white !important;
  overflow: hidden;
  position: relative;
}

body.dashboard-user-site .dashboard-teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.25rem;
  align-items: start;
}

body.dashboard-user-site .dashboard-teams-grid .dashboard-team-card {
  max-width: none;
  margin-inline: 0;
  width: 100%;
}

body.dashboard-user-site .dashboard-team-card__actions {
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  z-index: 1;
}

body.dashboard-user-site .dashboard-team-form-card .card-body {
  padding: 2rem 1.75rem 2.15rem;
}

body.dashboard-user-site .dashboard-team-form {
  text-align: center;
}

body.dashboard-user-site .dashboard-team-form .form-label {
  display: block;
  width: 100%;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #1c1c1c;
  text-align: center;
}

body.dashboard-user-site .dashboard-team-form .form-text,
body.dashboard-user-site .dashboard-team-form .invalid-feedback {
  text-align: center;
}

body.dashboard-user-site .dashboard-team-form .form-control {
  min-height: 3.2rem;
  border-radius: 0.95rem;
  border-color: rgba(17, 17, 17, 0.14);
  font-size: 1.05rem;
  text-align: center;
}

body.dashboard-user-site .dashboard-team-form textarea.form-control {
  min-height: 7rem;
  text-align: right;
  resize: vertical;
}

body.dashboard-user-site .dashboard-team-form .form-control:focus {
  border-color: rgba(188, 14, 28, 0.55);
  box-shadow: 0 0 0 0.22rem rgba(188, 14, 28, 0.12);
}

body.dashboard-user-site .dashboard-team-form__logo-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 18rem);
  height: 14rem;
  margin: 0 auto 0.65rem;
  border: 2px dashed rgba(188, 14, 28, 0.45);
  border-radius: 1.15rem;
  background: rgba(188, 14, 28, 0.04);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

body.dashboard-user-site .dashboard-team-form__logo-trigger:hover {
  border-color: var(--team-accent);
  box-shadow: 0 0 0 4px rgba(188, 14, 28, 0.12);
  transform: scale(1.02);
}

body.dashboard-user-site .dashboard-team-form__logo-preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

body.dashboard-user-site .dashboard-team-form__logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem;
  color: #bc0e1c;
  font-size: 0.88rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-team-form__logo-placeholder i {
  font-size: 1.85rem;
}

body.dashboard-user-site .dashboard-team-form__members-hint {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--team-accent);
}

body.dashboard-user-site .dashboard-team-form__empty-friends {
  padding: 1.25rem 1rem;
  border: 1px dashed rgba(188, 14, 28, 0.28);
  border-radius: var(--team-radius);
  background: rgba(188, 14, 28, 0.04);
}

body.dashboard-user-site .dashboard-team-form__friend-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 16rem;
  overflow: auto;
  padding: 0.35rem;
  text-align: right;
}

body.dashboard-user-site .dashboard-team-form__friend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.9rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

body.dashboard-user-site .dashboard-team-form__friend:hover:not(.is-disabled):not(.is-locked) {
  border-color: rgba(188, 14, 28, 0.45);
}

body.dashboard-user-site .dashboard-team-form__friend.is-selected {
  border-color: rgba(188, 14, 28, 0.65);
  background: rgba(188, 14, 28, 0.06);
}

body.dashboard-user-site .dashboard-team-form__friend.is-disabled,
body.dashboard-user-site .dashboard-team-form__friend.is-locked {
  opacity: 0.55;
  cursor: not-allowed;
}

body.dashboard-user-site .dashboard-team-form__friend.is-filtered-out {
  display: none;
}

body.dashboard-user-site .dashboard-team-form__friend-check {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #bc0e1c;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-team-form__friend-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(188, 14, 28, 0.25);
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-team-form__friend-name {
  flex: 1;
  font-weight: 700;
  color: #1c1c1c;
  text-align: right;
}

body.dashboard-user-site .dashboard-team-form__friend-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: #6b7280;
  white-space: nowrap;
}

body.dashboard-user-site .dashboard-team-form__submit {
  min-height: 3.15rem;
  border-radius: 0.95rem;
  font-size: 1.08rem;
  font-weight: 800;
}

body.dashboard-user-site .dashboard-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  background: white !important;
}

body.dashboard-user-site .dashboard-team-card__logo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.15rem;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 3px solid rgba(188, 14, 28, 0.35);
}

body.dashboard-user-site .dashboard-team-card__logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.15rem;
  background: rgba(188, 14, 28, 0.08);
  color: #bc0e1c;
  font-size: 2.5rem;
}

body.dashboard-user-site .dashboard-team-card__name {
  margin: 1rem 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111;
}

body.dashboard-user-site .dashboard-team-card__created {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #6b7280;
}

body.dashboard-user-site .dashboard-team-card__bio {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.7;
}

body.dashboard-user-site .dashboard-team-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
  margin: 0 0 1.15rem;
}

body.dashboard-user-site .dashboard-team-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.55rem 0.35rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.75rem;
  background: #fff;
}

body.dashboard-user-site .dashboard-team-card__stat-value {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  color: #111;
}

body.dashboard-user-site .dashboard-team-card__stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #6b7280;
}

body.dashboard-user-site .dashboard-team-card__stat.is-win .dashboard-team-card__stat-value {
  color: #15803d;
}

body.dashboard-user-site .dashboard-team-card__stat.is-loss .dashboard-team-card__stat-value {
  color: #bc0e1c;
}

body.dashboard-user-site .dashboard-team-card__stat.is-withdraw .dashboard-team-card__stat-value {
  color: #b45309;
}

body.dashboard-user-site .dashboard-team-card__stat.is-tournament .dashboard-team-card__stat-value {
  color: #1d4ed8;
}

body.dashboard-user-site .dashboard-team-card.is-pending-join {
  border-color: rgba(180, 83, 9, 0.35);
  border-style: dashed;
}

body.dashboard-user-site .dashboard-team-card__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 900;
}

body.dashboard-user-site .dashboard-team-card__pending-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

body.dashboard-user-site .dashboard-team-card__members-title {
  margin: 0.35rem 0 0.75rem;
  font-weight: 800;
  color: #bc0e1c;
}

body.dashboard-user-site .dashboard-team-card__members-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: 100%;
  margin: 0.35rem 0 0.75rem;
}

body.dashboard-user-site .dashboard-team-card__members-head .dashboard-team-card__members-title {
  margin: 0;
}

body.dashboard-user-site .dashboard-team-card__add-member-btn {
  font-weight: 800;
  border-radius: 0.65rem;
  border-color: rgba(188, 14, 28, 0.45);
  color: #bc0e1c;
  white-space: nowrap;
}

body.dashboard-user-site .dashboard-team-card__add-member-btn:hover {
  background: #bc0e1c;
  border-color: #bc0e1c;
  color: #fff;
}

body.dashboard-user-site .dashboard-team-card__footer-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

body.dashboard-user-site .dashboard-team-card__dissolve-btn,
body.dashboard-user-site .dashboard-team-card__leave-btn {
  font-weight: 800;
  border-radius: 0.65rem;
}

body.dashboard-user-site .dashboard-team-card__members {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.dashboard-user-site .dashboard-team-card__member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.85rem;
  background: #fff;
  text-align: right;
}

body.dashboard-user-site .dashboard-team-card__member.is-pending {
  border-style: dashed;
  background: #fafafa;
}

body.dashboard-user-site .dashboard-team-card__member-avatar {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(188, 14, 28, 0.2);
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-team-card__member-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

body.dashboard-user-site .dashboard-team-card__member-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}

body.dashboard-user-site .dashboard-team-card__member-name {
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}

body.dashboard-user-site .dashboard-team-card__member-flag .fi,
body.dashboard-user-site .dashboard-team-card__member-flag .fis {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}

body.dashboard-user-site .dashboard-team-card__member-level {
  font-size: 0.86rem;
  font-weight: 700;
  color: #6b7280;
  line-height: 1.3;
}

body.dashboard-user-site .dashboard-team-card__member-role {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: #bc0e1c;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}

body.dashboard-user-site .dashboard-team-card__transfer-form {
  flex-shrink: 0;
  margin-inline-start: auto;
}

body.dashboard-user-site .dashboard-team-card__transfer-btn {
  white-space: nowrap;
  font-weight: 800;
  border-radius: 0.65rem;
  border-color: rgba(188, 14, 28, 0.45);
  color: #bc0e1c;
}

body.dashboard-user-site .dashboard-team-card__transfer-btn:hover {
  background: #bc0e1c;
  border-color: #bc0e1c;
  color: #fff;
}

body.dashboard-user-site .dashboard-team-card__member-pending {
  font-size: 0.75rem;
  font-weight: 800;
  color: #b45309;
  background: rgba(245, 158, 11, 0.16);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}

body.dashboard-user-site .dashboard-team-invites__title {
  margin-bottom: 0.85rem;
  font-weight: 900;
  color: #111;
  text-align: center;
}

body.dashboard-user-site .dashboard-team-invites__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 36rem;
  margin-inline: auto;
}

body.dashboard-user-site .dashboard-team-invite-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(188, 14, 28, 0.16);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

body.dashboard-user-site .dashboard-team-invite-card__logo,
body.dashboard-user-site .dashboard-team-invite-card__logo-fallback {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-team-invite-card__logo {
  object-fit: cover;
  border: 2px solid rgba(188, 14, 28, 0.25);
}

body.dashboard-user-site .dashboard-team-invite-card__logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(188, 14, 28, 0.08);
  color: #bc0e1c;
  font-size: 1.4rem;
}

body.dashboard-user-site .dashboard-team-invite-card__body {
  flex: 1;
  min-width: 0;
  text-align: right;
}

body.dashboard-user-site .dashboard-team-invite-card__name {
  margin: 0 0 0.2rem;
  font-weight: 900;
  color: #111;
}

body.dashboard-user-site .dashboard-team-invite-card__from {
  font-size: 0.9rem;
  color: #4b5563;
}

body.dashboard-user-site .dashboard-team-invite-card__flag {
  display: inline-flex;
  vertical-align: middle;
  margin-inline: 0.25rem;
}

body.dashboard-user-site .dashboard-team-invite-card__rank {
  display: inline-block;
  margin-inline-start: 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #bc0e1c;
}

body.dashboard-user-site .dashboard-team-invite-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-team-form__friend-flag {
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-team-form__friend-flag .fi,
body.dashboard-user-site .dashboard-team-form__friend-flag .fis {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.2rem;
}

@media (max-width: 575.98px) {
  body.dashboard-user-site .dashboard-team-form-card .card-body {
    padding: 1.35rem 1.1rem 1.5rem;
  }

  body.dashboard-user-site .dashboard-team-invite-card {
    flex-wrap: wrap;
  }

  body.dashboard-user-site .dashboard-team-invite-card__actions {
    flex-direction: row;
    width: 100%;
  }

  body.dashboard-user-site .dashboard-team-invite-card__actions .btn {
    flex: 1;
  }
}

/* -- Challenge create modal -- */

body.dashboard-user-site .challenge-create-modal .modal-title {
  font-weight: 900;
  margin: 0;
}

body.dashboard-user-site .challenge-create-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.dashboard-user-site .challenge-create-modal__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

body.dashboard-user-site .challenge-create-modal__actions .btn {
  font-weight: 800;
  white-space: nowrap;
}

/* Form wraps header+body — restore Bootstrap scrollable modal flex behavior */
body.dashboard-user-site #challengeCreateModal .modal-dialog {
  max-height: calc(100dvh - 1rem);
  margin: 0.5rem auto;
}

body.dashboard-user-site #challengeCreateModal .modal-content.challenge-create-modal {
  max-height: calc(100dvh - 1rem);
  overflow: hidden;
}

body.dashboard-user-site #challengeCreateModal .challenge-create-form {
  display: flex;
  flex-direction: column;
  max-height: inherit;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

body.dashboard-user-site #challengeCreateModal .challenge-create-form .modal-header {
  flex-shrink: 0;
}

body.dashboard-user-site #challengeCreateModal .challenge-create-form .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

body.dashboard-user-site .challenge-create-form .form-label {
  font-weight: 800;
  color: #1c1c1c;
}

body.dashboard-user-site .challenge-create-prize-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

body.dashboard-user-site .challenge-create-prize-type__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

body.dashboard-user-site .challenge-create-prize-type__option:has(input:checked) {
  border-color: rgba(188, 14, 28, 0.55);
  background: rgba(188, 14, 28, 0.06);
  color: #bc0e1c;
}

body.dashboard-user-site #challenge-create-prize-id {
  min-height: 9.5rem;
}

/* -- Tournaments page -- */

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-teams__heading {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 900;
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournaments-list__heading {
  margin: 0;
  color: #111;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-teams__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(188, 14, 28, 0.16);
  border-radius: 1.15rem;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  padding: 0 0 1rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.75rem 0.9rem;
  padding-inline-start: 10.5rem;
  background: #1b222c;
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card.is-place-2 .dashboard-top-team-card__ribbon {
  background: #1b222c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card.is-place-3 .dashboard-top-team-card__ribbon {
  background: #1b222c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__place-badge {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.95rem;
  padding-inline-end: 1.55rem;
  /* ???? ? ?????? ????? */
  background: linear-gradient(135deg, #ffe9a0 0%, #f0c94d 42%, #c9971a 100%);
  color: #3b2a05;
  box-shadow: 0 8px 18px rgba(201, 151, 26, 0.4);
  /* ???? ?????? ?? ????? ???????? ? ????? ?? ??? ?????? ??? ?????? */
  clip-path: polygon(0 0, calc(100% - 1.15rem) 0, 100% 100%, 0 100%);
}

html[dir="rtl"] :is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__place-badge,
:is(body.dashboard-user-site, body.has-site-frame.website-teams-active)[dir="rtl"] .dashboard-top-team-card__place-badge {
  clip-path: polygon(1.15rem 0, 100% 0, 100% 100%, 0 100%);
  padding-inline-end: 0.95rem;
  padding-inline-start: 1.55rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card.is-place-2 .dashboard-top-team-card__place-badge {
  /* ??? ? ?????? ?????? */
  background: linear-gradient(135deg, #f4f6f8 0%, #c9d0d8 45%, #8e98a4 100%);
  color: #1f2933;
  box-shadow: 0 8px 18px rgba(142, 152, 164, 0.4);
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card.is-place-3 .dashboard-top-team-card__place-badge {
  /* ?????? ? ?????? ?????? */
  background: linear-gradient(135deg, #e6b089 0%, #cd7f32 48%, #8a4f1d 100%);
  color: #2a1608;
  box-shadow: 0 8px 18px rgba(205, 127, 50, 0.4);
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__place-icon {
  font-size: 1rem;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__place-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__place-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.2rem;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__stats {
  display: flex;
  gap: 0.7rem;
  margin-inline-start: auto;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  font-size: 0.72rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__stats strong {
  font-size: 0.95rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 0.75rem;
  text-align: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__logo {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 2px solid rgba(188, 14, 28, 0.25);
  margin-bottom: 0.55rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__name {
  margin: 0;
  font-weight: 900;
  color: #111;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__members {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.7rem;
  background: #fafafa;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__member-user {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__member-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  object-fit: cover;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__member-name {
  font-size: 0.86rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__member-level {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  margin-inline-start: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-team-card__member-level-icon {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row {
  display: grid;
  grid-template-columns: 7rem minmax(10rem, 1.2fr) minmax(13rem, 1.35fr) auto auto;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.05rem;
  min-width: 0;
  border-inline-start: 1px solid rgba(17, 17, 17, 0.12);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col:first-child,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--media {
  border-inline-start: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--media {
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  text-decoration: none;
  background: rgba(188, 14, 28, 0.04);
  overflow: hidden;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__icon {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 5.5rem;
  object-fit: cover;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__title {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  line-height: 1.25;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--time {
  align-items: center;
  text-align: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown {
  justify-content: center;
  transform: scale(0.9);
  transform-origin: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-value {
  color: #111;
  font-size: 1.25rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-label {
  color: #6b7280;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-sep {
  color: #9ca3af;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-item {
  min-width: 2.4rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__countdown-ended {
  font-size: 0.92rem;
  font-weight: 800;
  color: #6b7280;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__registration-deadline {
  font-size: 0.75rem;
  font-weight: 800;
  color: #bc0e1c;
  text-align: center;
  line-height: 1.35;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--action,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--status {
  align-items: center;
  text-align: center;
  min-width: 9rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__details-btn {
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #15803d;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__status-badge i {
  font-size: 0.55rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__status-badge.is-open {
  border-color: transparent;
  background: transparent;
  color: #15803d;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__status-badge.is-running {
  border-color: transparent;
  background: transparent;
  color: #b45309;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__status-badge.is-finished {
  border-color: transparent;
  background: transparent;
  color: #6b7280;
}
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  padding: 0;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner img {
  width: 100%;
  max-height: 16rem;
  object-fit: fill;
  display: block;
  padding: 0;
  margin: 0;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1.5rem;
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  pointer-events: none;
  z-index: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner-status {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner-status i {
  font-size: 0.55rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner-status.is-open {
  background: rgba(22, 163, 74, 0.92);
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner-status.is-running {
  background: rgba(217, 119, 6, 0.92);
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__banner-status.is-finished {
  background: rgba(75, 85, 99, 0.92);
  color: #fff;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__join-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__countdown {
  align-items: flex-start;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) 1fr;
  gap: 1.15rem;
  align-items: start;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__panel,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__main,
body.dashboard-user-site.has-site-frame .dashboard-tournament-details__panel,
body.dashboard-user-site.has-site-frame .dashboard-tournament-details__main {
  background: #fff !important;
  background-color: #fff !important;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__panel-title,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__block h6 {
  margin: 0 0 0.75rem;
  font-weight: 900;
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team-logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  object-fit: cover;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team {
  justify-content: flex-start;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-main,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team-name {
  color: #111;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team-count {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-points {
  flex-shrink: 0;
  color: #bc0e1c;
  font-size: 1rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-side {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-cup {
  font-size: 1.25rem;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-cup.is-gold {
  color: #d4af37;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.45));
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-cup.is-silver {
  color: #9aa3b2;
  filter: drop-shadow(0 1px 2px rgba(154, 163, 178, 0.45));
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__result-cup.is-bronze {
  color: #cd7f32;
  filter: drop-shadow(0 1px 2px rgba(205, 127, 50, 0.45));
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-details__icon {
  order: 0;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-details__countdown {
  order: 0;
  align-items: center;
  text-align: center;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-row__countdown {
  transform: none;
  gap: 0.2rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-value {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-label {
  font-size: 0.78rem;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-sep {
  font-size: 1.45rem;
  font-weight: 800;
  padding-bottom: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-row__countdown .dashboard-tournament-card__countdown-item {
  min-width: 3rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__media .dashboard-tournament-row__registration-deadline {
  font-size: 0.88rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__icon {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 2px solid rgba(188, 14, 28, 0.2);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__status {
  display: inline-flex;
  margin-bottom: 0;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__status.is-open {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__status.is-running {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__status.is-finished {
  background: rgba(107, 114, 128, 0.16);
  color: #4b5563;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__title {
  margin: 0 0 0.35rem;
  font-weight: 900;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__datetime {
  color: #6b7280;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-info-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1rem;
  min-height: 6.5rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-info-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-info-card__icon {
  font-size: 2.35rem;
  color: #bc0e1c;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
  text-align: start;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-info-card__label {
  color: #111;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-info-card__value {
  color: #bc0e1c;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__info {
    grid-template-columns: 1fr;
  }
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #111;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__video-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 100%;
  color: #d1d5db;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 991.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-teams__grid,
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__grid {
    grid-template-columns: 1fr;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row {
    grid-template-columns: 1fr;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col {
    border-inline-start: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col:first-child,
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--media {
    border-top: 0;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__col--action .btn,
  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-row__status-badge {
    width: 100%;
  }
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-top-teams__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px dashed rgba(17, 17, 17, 0.14);
  border-radius: 1rem;
}

/* -- Teams ranking page -- */

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__heading {
  margin: 0 0 1rem;
  color: #111;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.8rem;
  background: #fff;
  border: 1px solid rgba(188, 14, 28, 0.14);
  border-radius: 0.95rem;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__place {
  align-self: flex-start;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(188, 14, 28, 0.1);
  color: #bc0e1c;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__identity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__logo {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.55rem;
  object-fit: cover;
  border: 1px solid rgba(188, 14, 28, 0.18);
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__name {
  margin: 0;
  color: #111;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__members-count {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.35rem 0.2rem;
  border-radius: 0.55rem;
  background: #f8fafc;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats strong {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats span {
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats .is-win strong {
  color: #0f766e;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats .is-loss strong {
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__stats .is-withdraw strong {
  color: #c2410c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__members {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.3rem 0.35rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.55rem;
  background: #fafafa;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__member-user {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__member-avatar {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__member-name {
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__member-level {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-inline-start: auto;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__member-level-icon {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-ranked-team-card__members-empty,
:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__empty {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  font-weight: 700;
}

:is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__empty {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px dashed rgba(17, 17, 17, 0.14);
  border-radius: 1rem;
}

@media (max-width: 1199.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  :is(body.dashboard-user-site, body.has-site-frame.website-teams-active) .dashboard-teams-ranking__grid {
    grid-template-columns: 1fr;
  }
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-tabs__btn.is-active {
  border-bottom: 2px solid #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-details__team {
  display: flex;
  align-items: center;
}

/* -- Tournament prizes + my tournaments cover cards -- */

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prizes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.85rem;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(188, 14, 28, 0.16);
  border-radius: 0.9rem;
  background: #fafafa;
  text-align: right;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__trigger:hover,
:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__trigger:focus {
  border-color: rgba(188, 14, 28, 0.45);
  box-shadow: 0 8px 18px rgba(188, 14, 28, 0.08);
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__image {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  border-radius: 0.65rem;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__place {
  font-size: 0.78rem;
  font-weight: 800;
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize.is-place-2 .dashboard-tournament-prize__place {
  color: #b45309;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize.is-place-3 .dashboard-tournament-prize__place {
  color: #4b5563;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__name {
  font-size: 0.95rem;
  color: #111;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__details {
  font-size: 0.78rem;
  color: #6b7280;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-prize__icon {
  color: #bc0e1c;
  font-size: 1.25rem;
}

body.dashboard-user-site .dashboard-my-tournament-card.is-hidden {
  display: none !important;
}

body.dashboard-user-site .dashboard-my-tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.15rem;
}

body.dashboard-user-site .dashboard-my-tournament-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1.1rem;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

body.dashboard-user-site .dashboard-my-tournament-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

body.dashboard-user-site .dashboard-my-tournament-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.dashboard-user-site .dashboard-my-tournament-card__status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
}

body.dashboard-user-site .dashboard-my-tournament-card__status.is-open { color: #15803d; }
body.dashboard-user-site .dashboard-my-tournament-card__status.is-running { color: #b45309; }
body.dashboard-user-site .dashboard-my-tournament-card__status.is-finished { color: #4b5563; }

body.dashboard-user-site .dashboard-my-tournament-card__cover .dashboard-tournament-card__gift-btn--corner {
  z-index: 3;
}

body.dashboard-user-site .dashboard-my-tournament-card__body {
  padding: 1rem 1.05rem 1.15rem;
}

body.dashboard-user-site .dashboard-my-tournament-card__title {
  margin: 0 0 0.4rem;
  font-weight: 900;
  font-size: 1.05rem;
}

body.dashboard-user-site .dashboard-my-tournament-card__title a {
  color: #111;
  text-decoration: none;
}

body.dashboard-user-site .dashboard-my-tournament-card__meta,
body.dashboard-user-site .dashboard-my-tournament-card__prizes-hint {
  color: #6b7280;
  font-size: 0.88rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-my-tournament-card__prizes-hint {
  margin-top: 0.35rem;
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: right;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.85rem;
  background: #fafafa;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__image {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 0.65rem;
  flex-shrink: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__place {
  font-size: 0.78rem;
  font-weight: 800;
  color: #bc0e1c;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__name {
  font-size: 1rem;
  color: #111;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__details {
  font-size: 0.82rem;
  color: #6b7280;
}

:is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active) .dashboard-tournament-gifts-popup__note {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: #6b7280;
}

/* -- Statistics page -- */

body.dashboard-user-site .dashboard-statistics-section {
  padding: 1.15rem;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

body.dashboard-user-site .dashboard-statistics-section__heading {
  margin: 0 0 1rem;
  color: #bc0e1c;
  font-size: 1.15rem;
  font-weight: 900;
}

body.dashboard-user-site .dashboard-statistics-section__hint {
  margin-top: 0.85rem;
  color: #6b7280;
  font-size: 0.88rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-statistics-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

body.dashboard-user-site .dashboard-statistics-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 5.5rem;
  padding: 0.9rem 0.5rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.85rem;
  background: #fafafa;
}

body.dashboard-user-site .dashboard-statistics-card__value {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  color: #111;
}

body.dashboard-user-site .dashboard-statistics-card__label {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

body.dashboard-user-site .dashboard-statistics-card.is-win .dashboard-statistics-card__value {
  color: #0f766e;
}

body.dashboard-user-site .dashboard-statistics-card.is-loss .dashboard-statistics-card__value {
  color: #bc0e1c;
}

body.dashboard-user-site .dashboard-statistics-card.is-withdraw .dashboard-statistics-card__value {
  color: #c2410c;
}

body.dashboard-user-site .dashboard-statistics-card.is-crime .dashboard-statistics-card__value {
  color: #1d4ed8;
}

body.dashboard-user-site .dashboard-statistics-team-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

body.dashboard-user-site .dashboard-statistics-team-head__logo {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.7rem;
  object-fit: cover;
  border: 1px solid rgba(188, 14, 28, 0.18);
}

body.dashboard-user-site .dashboard-statistics-team-head__name {
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
}

body.dashboard-user-site .dashboard-statistics-team-head__meta {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-statistics-empty {
  padding: 1rem;
  border: 1px dashed rgba(17, 17, 17, 0.14);
  border-radius: 0.85rem;
  background: #fafafa;
  color: #6b7280;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-statistics-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.dashboard-user-site .dashboard-statistics-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.85rem;
  background: #fafafa;
}

body.dashboard-user-site .dashboard-statistics-timeline__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(188, 14, 28, 0.1);
  color: #bc0e1c;
  font-size: 1.15rem;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-statistics-timeline__item.is-joined .dashboard-statistics-timeline__icon {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

body.dashboard-user-site .dashboard-statistics-timeline__item.is-left .dashboard-statistics-timeline__icon {
  background: rgba(194, 65, 12, 0.12);
  color: #c2410c;
}

body.dashboard-user-site .dashboard-statistics-timeline__item.is-leadership_transferred .dashboard-statistics-timeline__icon {
  background: rgba(202, 138, 4, 0.15);
  color: #a16207;
}

body.dashboard-user-site .dashboard-statistics-timeline__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.dashboard-user-site .dashboard-statistics-timeline__main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

body.dashboard-user-site .dashboard-statistics-timeline__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-statistics-timeline__message {
  color: #111;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

body.dashboard-user-site .dashboard-statistics-timeline__time {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  body.dashboard-user-site .dashboard-statistics-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.dashboard-user-site .dashboard-statistics-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body.dashboard-user-site .dashboard-statistics-member {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.85rem;
  background: #fafafa;
}

body.dashboard-user-site .dashboard-statistics-member__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

body.dashboard-user-site .dashboard-statistics-member__avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

body.dashboard-user-site .dashboard-statistics-member__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

body.dashboard-user-site .dashboard-statistics-member__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #111;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

body.dashboard-user-site .dashboard-statistics-member__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(188, 14, 28, 0.1);
  color: #bc0e1c;
  font-size: 0.7rem;
  font-weight: 800;
}

body.dashboard-user-site .dashboard-statistics-member__joined {
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-statistics-member__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

body.dashboard-user-site .dashboard-statistics-member__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.45rem 0.25rem;
  border-radius: 0.6rem;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

body.dashboard-user-site .dashboard-statistics-member__stats strong {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

body.dashboard-user-site .dashboard-statistics-member__stats span {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
}

body.dashboard-user-site .dashboard-statistics-member__stats .is-win strong {
  color: #0f766e;
}

body.dashboard-user-site .dashboard-statistics-member__stats .is-loss strong {
  color: #bc0e1c;
}

body.dashboard-user-site .dashboard-statistics-member__stats .is-withdraw strong {
  color: #c2410c;
}

@media (max-width: 767.98px) {
  body.dashboard-user-site .dashboard-statistics-members {
    grid-template-columns: 1fr;
  }
}

body.dashboard-user-site .dashboard-notification-delete-btn {
  width: 2.75rem !important;
  min-width: 2.75rem !important;
  height: 2.75rem !important;
  padding: 0 !important;
  border-radius: 0.7rem;
  font-size: 1.35rem;
  line-height: 1;
}

body.dashboard-user-site .dashboard-notification-delete-btn .bx {
  font-size: 1.4rem;
  line-height: 1;
}

/* Mobile game chat FAB — phone only */
.dashboard-mobile-game-chat-fab {
  display: none;
}

/* Dashboard purchases — mobile-only shell (matches mobile app identity) */
.dashboard-mobile-purchases {
  display: none;
}

@media (min-width: 576px) {
  .dashboard-mobile-lobby.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
  }

  .dashboard-mobile-challenge-lobby.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
    max-width: 1140px;
    margin-inline: auto;
    padding: 1.5rem 1rem 2rem;
  }

  .dashboard-mobile-challenge-lobby .dashboard-mobile-purchases__bg,
  .dashboard-mobile-challenge-lobby .dashboard-mobile-purchases__gif,
  .dashboard-mobile-challenge-lobby .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-challenge-lobby .dashboard-mobile-music-toggle,
  .dashboard-mobile-challenge-lobby .dashboard-mobile-purchases__back {
    display: none !important;
  }

  .dashboard-mobile-challenge-lobby .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }

  .dashboard-mobile-challenge-lobby .dashboard-mobile-purchases__heading {
    margin-top: 0;
    text-align: start;
  }

  .dashboard-mobile-challenge-lobby__crime {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
  }

  .dashboard-mobile-challenge-lobby__crime-thumb {
    width: 4rem;
    height: 4rem;
    border-radius: 0.55rem;
    object-fit: cover;
    flex-shrink: 0;
  }

  .dashboard-mobile-challenge-lobby__crime-thumb--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8e2d8;
    color: #666;
    font-size: 1.45rem;
  }

  .dashboard-mobile-challenge-lobby__crime-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
  }

  .dashboard-mobile-challenge-lobby__crime-title {
    color: #111;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .dashboard-mobile-lobby .dashboard-mobile-purchases__bg,
  .dashboard-mobile-lobby .dashboard-mobile-purchases__gif,
  .dashboard-mobile-lobby .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-lobby .dashboard-mobile-music-toggle,
  .dashboard-mobile-lobby .dashboard-mobile-lobby__chrome,
  .dashboard-mobile-lobby .dashboard-mobile-game__chrome,
  .dashboard-mobile-lobby .dashboard-mobile-game__report,
  .dashboard-mobile-lobby .dashboard-mobile-game__withdraw,
  .dashboard-mobile-lobby .dashboard-mobile-lobby__crime,
  .dashboard-mobile-lobby .dashboard-mobile-lobby__step,
  .dashboard-mobile-lobby .dashboard-mobile-purchases__heading,
  .dashboard-mobile-lobby .dashboard-mobile-game-chat-fab,
  #gameChatModal.dashboard-mobile-game-chat-modal {
    display: none !important;
  }

  body.lobby-page-active .dashboard-lobby-notification-host,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-notification-host {
    position: fixed;
    top: 4.75rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 1050;
    width: min(calc(100% - 2rem), 44rem);
    max-width: 44rem;
    margin: 0;
    flex: none;
    pointer-events: none;
    display: block !important;
  }

  body.lobby-page-active .dashboard-lobby-notification-host .dashboard-welcome-electric,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-notification-host .dashboard-welcome-electric {
    pointer-events: auto;
  }

  .dashboard-mobile-lobby .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }

  .dashboard-mobile-solving.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
  }

  .dashboard-mobile-solving .dashboard-mobile-purchases__bg,
  .dashboard-mobile-solving .dashboard-mobile-purchases__gif,
  .dashboard-mobile-solving .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-solving .dashboard-mobile-music-toggle,
  .dashboard-mobile-solving .dashboard-mobile-game__chrome,
  .dashboard-mobile-solving .dashboard-mobile-game__report,
  .dashboard-mobile-solving .dashboard-mobile-game__withdraw,
  .dashboard-mobile-solving .dashboard-mobile-solving__corners,
  .dashboard-mobile-solving .dashboard-mobile-solving__corner,
  .dashboard-mobile-solving .dashboard-mobile-purchases__heading,
  .dashboard-mobile-solving .dashboard-mobile-solving__meta,
  .dashboard-mobile-solving .dashboard-mobile-solving__toolbar,
  .dashboard-mobile-solving .dashboard-mobile-investigation__scoreboard,
  .dashboard-mobile-solving .dashboard-mobile-solving__chat {
    display: none !important;
  }

  .dashboard-mobile-solving .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }

  .dashboard-mobile-recap.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
  }

  .dashboard-mobile-recap .dashboard-mobile-purchases__bg,
  .dashboard-mobile-recap .dashboard-mobile-purchases__gif,
  .dashboard-mobile-recap .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-recap .dashboard-mobile-music-toggle,
  .dashboard-mobile-recap .dashboard-mobile-game__chrome,
  .dashboard-mobile-recap .dashboard-mobile-game__report,
  .dashboard-mobile-recap .dashboard-mobile-game__withdraw,
  .dashboard-mobile-recap .dashboard-mobile-purchases__heading,
  .dashboard-mobile-recap .dashboard-mobile-solving__toolbar,
  .dashboard-mobile-recap .dashboard-mobile-solving__corners,
  .dashboard-mobile-recap .dashboard-mobile-solving__corner,
  .dashboard-mobile-recap .dashboard-mobile-investigation__scoreboard,
  .dashboard-mobile-recap .dashboard-mobile-recap__chat {
    display: none !important;
  }

  .dashboard-mobile-recap .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }

  .dashboard-mobile-culprits.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
  }

  .dashboard-mobile-culprits .dashboard-mobile-purchases__bg,
  .dashboard-mobile-culprits .dashboard-mobile-purchases__gif,
  .dashboard-mobile-culprits .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-culprits .dashboard-mobile-music-toggle,
  .dashboard-mobile-culprits .dashboard-mobile-game__chrome,
  .dashboard-mobile-culprits .dashboard-mobile-game__report,
  .dashboard-mobile-culprits .dashboard-mobile-game__withdraw,
  .dashboard-mobile-culprits .dashboard-mobile-purchases__heading,
  .dashboard-mobile-culprits .dashboard-mobile-solving__toolbar,
  .dashboard-mobile-culprits .dashboard-mobile-investigation__scoreboard,
  .dashboard-mobile-culprits .dashboard-mobile-culprits__chat {
    display: none !important;
  }

  .dashboard-mobile-culprits .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }

  .dashboard-mobile-finished.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
  }

  .dashboard-mobile-finished .dashboard-mobile-purchases__bg,
  .dashboard-mobile-finished .dashboard-mobile-purchases__gif,
  .dashboard-mobile-finished .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-finished .dashboard-mobile-music-toggle,
  .dashboard-mobile-finished .dashboard-mobile-game__chrome,
  .dashboard-mobile-finished .dashboard-mobile-game__report,
  .dashboard-mobile-finished .dashboard-mobile-game__withdraw,
  .dashboard-mobile-finished .dashboard-mobile-purchases__heading,
  .dashboard-mobile-finished .dashboard-mobile-finished__meta,
  .dashboard-mobile-finished .dashboard-mobile-solving__toolbar,
  .dashboard-mobile-finished .dashboard-mobile-finished__chat {
    display: none !important;
  }

  .dashboard-mobile-finished .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }

  .dashboard-mobile-solution.dashboard-mobile-purchases {
    display: block !important;
    position: static;
    inset: auto;
    overflow: visible;
    z-index: auto;
  }

  .dashboard-mobile-solution .dashboard-mobile-purchases__bg,
  .dashboard-mobile-solution .dashboard-mobile-purchases__gif,
  .dashboard-mobile-solution .dashboard-mobile-purchases__chrome,
  .dashboard-mobile-solution .dashboard-mobile-music-toggle,
  .dashboard-mobile-solution .dashboard-mobile-purchases__heading {
    display: none !important;
  }

  .dashboard-mobile-solution .dashboard-mobile-purchases__content {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
    padding: 0;
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  body.dashboard-user-site:has(.dashboard-mobile-purchases),
  body.has-site-frame:has(.dashboard-mobile-purchases),
  body:has(.dashboard-mobile-lobby) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-solving) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-recap) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-culprits) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-finished) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-solution) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-lobby) > .game-navbar {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-lobby) > main.container-xxl > .alert {
    position: fixed;
    top: 102px;
    left: 16px;
    right: 16px;
    z-index: 115;
    margin: 0;
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases) .site-bg-video,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .landing-top-layer,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-fixed-line,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) nav.layout-navbar,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .landing-header-spacer,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .content-footer,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-purchases-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-friends-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-my-challenges-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-my-tournaments-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-tournament-show-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-prizes-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-investigation-file-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-crimes-file-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-game-play-desktop,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-teams-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .landing-top-layer,
  body.has-site-frame:has(.dashboard-mobile-purchases) nav.layout-navbar,
  body.has-site-frame:has(.dashboard-mobile-purchases) .landing-header-spacer,
  body.has-site-frame:has(.dashboard-mobile-purchases) .landing-footer,
  body.has-site-frame:has(.dashboard-mobile-purchases) .products-page-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .product-show-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .issue-show-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .information-page-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .issues-page-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .contact-page-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .info-subpage-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .detectives-guild-page-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .website-challenges-page-desktop,
  body.has-site-frame:has(.dashboard-mobile-purchases) .website-teams-page-desktop {
    display: none !important;
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases) .layout-page,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .content-wrapper,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .container-xxl,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .container-p-y,
  body.has-site-frame:has(.dashboard-mobile-purchases) .site-main,
  body.has-site-frame:has(.dashboard-mobile-purchases) .section-py {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    background: transparent !important;
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases) .dashboard-mobile-purchases,
  body.has-site-frame:has(.dashboard-mobile-purchases) .dashboard-mobile-purchases,
  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby.dashboard-mobile-purchases,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving.dashboard-mobile-purchases,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap.dashboard-mobile-purchases,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits.dashboard-mobile-purchases,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished.dashboard-mobile-purchases,
  body:has(.dashboard-mobile-solution) .dashboard-mobile-solution.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-lobby).modal-open .dashboard-mobile-lobby {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-lobby) .modal,
  body:has(.dashboard-mobile-lobby) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-lobby) #gameChatModal {
    z-index: 1210 !important;
  }

  body:has(.dashboard-mobile-lobby).modal-open .modal-backdrop {
    z-index: 1200 !important;
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases).modal-open .dashboard-mobile-purchases {
    pointer-events: none;
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases) .modal,
  body.dashboard-user-site:has(.dashboard-mobile-purchases) .modal-backdrop {
    pointer-events: auto;
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases) #challengeCreateModal .modal-dialog {
    max-height: calc(100dvh - 0.75rem);
    margin: 0.35rem auto;
    width: calc(100% - 0.75rem);
  }

  body.dashboard-user-site:has(.dashboard-mobile-purchases) #challengeCreateModal .modal-content.challenge-create-modal {
    max-height: calc(100dvh - 0.75rem);
  }

  .dashboard-mobile-purchases__bg,
  .dashboard-mobile-purchases__gif {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
  }

  .dashboard-mobile-purchases__gif {
    z-index: 1;
  }

  .dashboard-mobile-purchases__chrome {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 102px;
    z-index: 120;
    pointer-events: none;
  }

  .dashboard-mobile-purchases__hang {
    position: absolute;
    top: 0;
    left: 28px;
    height: 115px;
    width: auto;
    object-fit: contain;
  }

  .dashboard-mobile-purchases__top {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .dashboard-mobile-purchases__logo-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dashboard-mobile-purchases__logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  body:has(.dashboard-mobile-lobby).modal-open .dashboard-mobile-music-toggle,
  body:has(.dashboard-mobile-investigation).modal-open .dashboard-mobile-music-toggle,
  body:has(.dashboard-mobile-solving).modal-open .dashboard-mobile-music-toggle,
  body:has(.dashboard-mobile-recap).modal-open .dashboard-mobile-music-toggle,
  body:has(.dashboard-mobile-culprits).modal-open .dashboard-mobile-music-toggle,
  body:has(.dashboard-mobile-finished).modal-open .dashboard-mobile-music-toggle,
  body:has(.dashboard-mobile-solution).modal-open .dashboard-mobile-music-toggle,
  body.dashboard-user-site:has(.dashboard-mobile-purchases).modal-open .dashboard-mobile-music-toggle {
    pointer-events: auto;
  }

  .dashboard-mobile-music-toggle {
    position: fixed;
    top: 28px;
    left: 14px;
    z-index: 1400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 29px;
    padding: 4px;
    border: none;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    line-height: 0;
    pointer-events: auto;
  }

  .dashboard-mobile-music-toggle__icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .dashboard-mobile-music-toggle .landing-music-toggle__muted-mark {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    z-index: 2;
  }

  .dashboard-mobile-music-toggle .landing-music-toggle__muted-mark::after {
    background-color: #fff;
    block-size: 2.5px;
    inline-size: 130%;
  }

  .dashboard-mobile-music-toggle.is-muted {
    opacity: 1;
  }

  .dashboard-mobile-music-toggle.is-muted .dashboard-mobile-music-toggle__icon {
    opacity: 0.45;
  }

  .dashboard-mobile-purchases__back {
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 121;
    border: none;
    background: none;
    padding: 0;
    line-height: 0;
  }

  .dashboard-mobile-purchases__back img {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .dashboard-mobile-purchases__content {
    position: absolute;
    top: 102px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 16px 40px;
    direction: rtl;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #bc0e1c transparent;
  }

  .dashboard-mobile-purchases__content::-webkit-scrollbar {
    width: 8px;
  }

  .dashboard-mobile-purchases__content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
  }

  .dashboard-mobile-purchases__content::-webkit-scrollbar-thumb {
    background: #bc0e1c;
    border-radius: 10px;
  }

  .dashboard-mobile-purchases__heading {
    position: relative;
    margin-top: 51px;
    text-align: center;
    margin-bottom: 1rem;
  }

  .dashboard-mobile-purchases__title {
    margin: 0 0 0.35rem;
    color: #7c0000;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .dashboard-mobile-purchases__subtitle {
    margin: 0;
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .dashboard-mobile-challenge-lobby__crime {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  .dashboard-mobile-challenge-lobby__crime-thumb {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.55rem;
    object-fit: cover;
    flex-shrink: 0;
  }

  .dashboard-mobile-challenge-lobby__crime-thumb--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8e2d8;
    color: #666;
    font-size: 1.35rem;
  }

  .dashboard-mobile-challenge-lobby__crime-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
  }

  .dashboard-mobile-challenge-lobby__crime-title {
    color: #111;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .dashboard-mobile-challenge-lobby .challenge-lobby-team-card,
  .dashboard-mobile-challenge-lobby .challenge-lobby-start-card {
    border-radius: 0.85rem;
    overflow: hidden;
  }

  .dashboard-mobile-challenge-lobby .challenge-lobby-team-card .card-header,
  .dashboard-mobile-challenge-lobby .challenge-lobby-start-card .card-body {
    background: #fff;
  }

  .dashboard-mobile-challenge-lobby .table {
    font-size: 0.82rem;
  }

  .dashboard-mobile-purchases__grid.row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0;
  }

  .dashboard-mobile-purchases__grid.row > [class*="col-"] {
    width: 100%;
    max-width: none;
    padding: 0;
    flex: none;
  }

  .dashboard-mobile-purchases__grid .landing-card-frame.dashboard-purchase-card {
    position: relative;
    border: 1px solid rgba(124, 0, 0, 0.18) !important;
    border-radius: 0.75rem;
    background-color: #fff !important;
    background-image: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
    padding: 0.55rem 0.5rem 0.45rem;
    overflow: hidden;
  }

  .dashboard-mobile-purchases__grid .landing-card-frame.dashboard-purchase-card::before {
    content: none !important;
    display: none !important;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card > * {
    position: relative;
    z-index: 1;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card .landing-crime-type-badge,
  .dashboard-mobile-purchases__grid .dashboard-purchase-card .landing-product-badge {
    z-index: 4;
    top: 0.35rem;
    inset-inline-start: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 4.25rem;
    min-width: 4.25rem;
    max-width: 4.25rem;
    height: 1.35rem;
    min-height: 1.35rem;
    inline-size: 4.25rem;
    block-size: 1.35rem;
    padding: 0;
    border-radius: 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card .landing-issue-media {
    background: #e8e2d8;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card .card-body {
    padding: 0.55rem 0.35rem 0.25rem;
    background-color: #fff;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card .card-title {
    color: #111;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    min-height: 2.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card__meta li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    gap: 0.35rem;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card__meta-label {
    color: #6b7280;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card__meta-value {
    color: #111;
    text-align: left;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card .landing-issue-action-bar {
    position: relative;
    z-index: 4;
  }

  .dashboard-mobile-purchases__grid .dashboard-purchase-card .landing-issue-action-bar__details {
    min-block-size: 2.15rem;
    font-size: 0.72rem;
  }

  .dashboard-mobile-friends__grid .detective-card-frame {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .dashboard-mobile-friends__list {
    direction: rtl;
  }

  .friend-mobile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    height: 100%;
    padding: 0.35rem 0.15rem 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
  }

  .friend-mobile-card__avatar-wrap {
    position: relative;
    width: 4.6rem;
    height: 4.6rem;
    overflow: visible;
  }

  .friend-mobile-card__avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(124, 0, 0, 0.55);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    object-fit: cover;
  }

  .friend-mobile-card__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(124, 0, 0, 0.55);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    color: #7c0000;
    font-size: 1.8rem;
  }

  .friend-mobile-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    min-width: 0;
  }

  .friend-mobile-card__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .friend-mobile-card__identity-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .friend-mobile-card__name {
    margin: 0;
    color: #111;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.25;
    max-width: 5.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .friend-mobile-card__flag {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
  }

  .friend-mobile-card__flag--overlay {
    position: absolute;
    left: -0.15rem;
    bottom: -0.1rem;
    z-index: 2;
    padding: 0.14rem;
    border-radius: 999px;
    background: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .friend-mobile-card__flag .country-flag--square,
  .friend-mobile-card__flag .fi {
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 2px;
  }

  .friend-mobile-card__unfriend-form {
    position: absolute;
    top: 0;
    right: 0.15rem;
    z-index: 3;
    margin: 0;
  }

  .friend-mobile-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    min-height: 1.85rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: 'Almarai', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }

  .friend-mobile-card__btn--card {
    width: auto;
    min-width: 4.6rem;
    flex-shrink: 0;
    background: #7c0000;
    color: #fff;
  }

  .friend-mobile-card__btn--unfriend {
    position: relative;
    right: 18px;
    width: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(188, 14, 28, 0.35);
    color: #bc0e1c;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }

  .friend-mobile-card__btn--unfriend .bx {
    font-size: 21px;
  }

  .friend-mobile-card-modal__dialog {
    max-width: min(22rem, calc(100vw - 1.5rem));
    margin: 1rem auto;
  }

  .friend-mobile-card-modal__content {
    background: #2f2f2f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    overflow: hidden;
  }

  .friend-mobile-card-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.15rem 1rem 0.5rem !important;
    position: relative;
    z-index: 2;
  }

  .friend-mobile-card-modal .modal-title {
    position: static;
    top: auto;
    right: auto;
    inset: auto;
    margin: 0;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .friend-mobile-card-modal .modal-header .btn-close {
    top: 9px !important;
    position: absolute !important;
    inset: auto !important;
    inset-block-start: 2.1rem !important;
    inset-inline-end: 0.9rem !important;
    flex: 0 0 auto;
    margin: 0 !important;
    width: 1.35rem;
    height: 1.35rem;
    z-index: 5;
  }

  .friend-mobile-card-modal .modal-header .modal-title {
    padding-inline-end: 2rem;
  }

  .friend-mobile-card-modal__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1rem;
    direction: rtl;
  }

  .friend-mobile-card-modal__stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 0.35rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .friend-mobile-card-modal__stat-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 700;
  }

  .friend-mobile-card-modal__stat-value {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
  }

  .friend-mobile-card-modal__unfriend {
    margin: 0;
  }

  .friend-mobile-card-modal .detective-card-frame {
    max-width: 100%;
    margin-inline: auto;
  }

  .dashboard-mobile-products__grid .landing-card-frame {
    border-radius: 1rem;
    overflow: hidden;
  }

  .dashboard-mobile-products__grid .landing-product-badge {
    z-index: 2;
  }

  .mobile-products-slider {
    margin-top: 0.25rem;
  }

  .mobile-products-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .mobile-products-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  .mobile-products-slider__track {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.15rem 0.25rem 0.5rem;
    width: max-content;
    min-width: 100%;
  }

  .mobile-products-slider__item {
    flex: 0 0 calc((100vw - 32px - 0.65rem) / 2);
    width: calc((100vw - 32px - 0.65rem) / 2);
    max-width: 11.5rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .mobile-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .mobile-product-card__media-wrap {
    position: relative;
  }

  .mobile-product-card__media {
    display: block;
    aspect-ratio: 1 / 1;
    background: #f3f3f3;
    overflow: hidden;
  }

  .mobile-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mobile-product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #9ca3af;
    font-size: 2rem;
  }

  .mobile-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
    padding: 0.55rem 0.6rem 0.65rem;
  }

  .mobile-product-card__title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
    min-height: 1.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mobile-product-card__title a {
    color: #111;
    text-decoration: none;
  }

  .mobile-product-card__prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem 0.4rem;
  }

  .mobile-product-card__price {
    font-weight: 800;
    line-height: 1.1;
  }

  .mobile-product-card__price--old {
    color: #9ca3af;
    font-size: 0.62rem;
    text-decoration: line-through;
  }

  .mobile-product-card__price--new {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #111;
    font-size: 0.78rem;
  }

  .mobile-product-card__currency {
    width: 0.75rem;
    height: 0.75rem;
  }

  .mobile-product-card__details {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.4rem 0.5rem;
    border-radius: 0.45rem;
    background: #660000;
    color: #fff !important;
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
  }

  .dashboard-mobile-purchases .product-category-slider {
    display: block;
    margin: 0 0 1.25rem;
    direction: rtl;
  }

  .dashboard-mobile-purchases .product-category-slider__title {
    margin: 0 0 0.85rem;
    padding-inline: 0.25rem;
    color: #111;
    font-family: 'Almarai', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: right;
  }

  .dashboard-mobile-purchases .product-category-slider__viewport {
    overflow: hidden;
    width: 100%;
    padding-block: 0.25rem 0.5rem;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .dashboard-mobile-purchases .product-category-slider__track {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    width: max-content;
    animation: product-category-marquee 36s linear infinite;
  }

  .dashboard-mobile-purchases .product-category-slider:hover .product-category-slider__track,
  .dashboard-mobile-purchases .product-category-slider:focus-within .product-category-slider__track {
    animation-play-state: paused;
  }

  .dashboard-mobile-purchases .product-category-slider__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex: 0 0 auto;
    width: 5.2rem;
    text-decoration: none;
  }

  .dashboard-mobile-purchases .product-category-slider__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.85rem;
    height: 4.85rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f3f3f3 100%);
    border: 1px solid rgba(124, 0, 0, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }

  .dashboard-mobile-purchases .product-category-slider__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dashboard-mobile-purchases .product-category-slider__name {
    display: block;
    width: 100%;
    color: #333;
    font-family: 'Almarai', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }

  @keyframes product-category-marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .dashboard-mobile-purchases .product-category-slider__track {
      animation: none;
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
    }
  }

  .dashboard-mobile-purchases__pagination .pagination {
    justify-content: center;
    margin-bottom: 0;
  }

  .dashboard-mobile-challenge-section__title {
    margin: 0 0 0.85rem;
    color: #111;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .dashboard-mobile-challenge-section__hint {
    margin: 0 0 1rem;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .dashboard-mobile-challenge-card {
    border: 1px solid rgba(124, 0, 0, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  }

  .dashboard-mobile-challenge-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
  }

  .dashboard-mobile-challenge-card__status {
    color: #660000;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .dashboard-mobile-challenge-card__team {
    margin: 0 0 0.85rem;
    color: #111;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .dashboard-mobile-challenge-card__meta {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1rem;
  }

  .dashboard-mobile-challenge-card__meta div {
    display: grid;
    gap: 0.15rem;
  }

  .dashboard-mobile-challenge-card__meta dt {
    margin: 0;
    color: #666;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .dashboard-mobile-challenge-card__meta dd {
    margin: 0;
    color: #111;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .dashboard-mobile-challenge-card__actions:empty {
    display: none;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active):has(.dashboard-mobile-purchases) .dashboard-tournament-tabs {
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active):has(.dashboard-mobile-purchases) .dashboard-tournament-tabs::-webkit-scrollbar {
    display: none;
  }

  :is(body.dashboard-user-site, body.has-site-frame.website-challenges-active, body.has-site-frame.website-tournaments-active, body.has-site-frame.website-landing-active):has(.dashboard-mobile-purchases) .dashboard-tournament-tabs__btn {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
  }

  .dashboard-mobile-my-challenges__tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .dashboard-mobile-my-challenges__tabs .dashboard-tournament-tabs__btn {
    flex: 0 0 auto;
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }

  .dashboard-mobile-my-challenges .dashboard-tournament-all-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dashboard-mobile-my-challenges .dashboard-tournament-card-shell {
    width: 100%;
    max-width: 100%;
  }

  .dashboard-mobile-my-tournaments__actions .btn {
    font-family: 'AraAsmaa', sans-serif;
    font-weight: 700;
  }

  .dashboard-mobile-my-tournaments__tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .dashboard-mobile-my-tournaments__tabs .dashboard-tournament-tabs__btn {
    flex: 0 0 auto;
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }

  .dashboard-mobile-my-tournaments__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dashboard-mobile-tournament-show .dashboard-mobile-purchases__title {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .dashboard-mobile-tournament-show__status {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(124, 0, 0, 0.1);
    color: #7c0000;
  }

  .dashboard-mobile-tournament-show__status.is-open {
    background: rgba(40, 167, 69, 0.16);
    color: #146c2e;
  }

  .dashboard-mobile-tournament-show__status.is-running {
    background: rgba(13, 110, 253, 0.14);
    color: #0a58ca;
  }

  .dashboard-mobile-tournament-show__status.is-finished {
    background: rgba(108, 117, 125, 0.16);
    color: #495057;
  }

  .dashboard-mobile-tournament-show .card,
  .dashboard-mobile-tournament-show .card-body {
    background: #fff !important;
    background-color: #fff !important;
    border-color: rgba(17, 17, 17, 0.12) !important;
    color: #111 !important;
  }

  .dashboard-mobile-tournament-show .card {
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  }

  .dashboard-mobile-tournament-show .card h2,
  .dashboard-mobile-tournament-show .card h6,
  .dashboard-mobile-tournament-show .card p,
  .dashboard-mobile-tournament-show .card strong,
  .dashboard-mobile-tournament-show .card span,
  .dashboard-mobile-tournament-show .card li,
  .dashboard-mobile-tournament-show__stats,
  .dashboard-mobile-tournament-show__stats span,
  .dashboard-mobile-tournament-show__team,
  .dashboard-mobile-tournament-show__team strong,
  .dashboard-mobile-tournament-show__prize,
  .dashboard-mobile-tournament-show__prize span {
    color: #111 !important;
  }

  .dashboard-mobile-tournament-show .card .text-body-secondary,
  .dashboard-mobile-tournament-show .card .small {
    color: #4b5563 !important;
  }

  .dashboard-mobile-tournament-show__hero-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .dashboard-mobile-tournament-show__icon {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: cover;
    border-radius: 0.85rem;
    flex: 0 0 auto;
    border: 1px solid rgba(17, 17, 17, 0.12);
  }

  .dashboard-mobile-tournament-show__hero-meta {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    gap: 0.65rem;
  }

  .dashboard-mobile-tournament-show__stats {
    display: grid;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #111;
  }

  .dashboard-mobile-tournament-show__countdown .dashboard-tournament-card__countdown {
    justify-content: center;
    flex-wrap: wrap;
  }

  .dashboard-mobile-tournament-show__deadline {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    color: #4b5563 !important;
    text-align: center;
  }

  .dashboard-mobile-tournament-show__list {
    display: grid;
    gap: 0.65rem;
  }

  .dashboard-mobile-tournament-show__team {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #111;
  }

  .dashboard-mobile-tournament-show__team-logo {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 auto;
  }

  .dashboard-mobile-tournament-show__prizes {
    display: grid;
    gap: 0.65rem;
  }

  .dashboard-mobile-tournament-show__prize {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #f8f5f2 !important;
    color: #111 !important;
    text-align: start;
  }

  .dashboard-mobile-tournament-show__prize img {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: cover;
    border-radius: 0.55rem;
    flex: 0 0 auto;
  }

  .dashboard-mobile-tournament-show .dashboard-tournament-details__terms {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff !important;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 1rem;
    color: #111 !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  }

  .dashboard-mobile-tournament-show .dashboard-tournament-details__terms h6,
  .dashboard-mobile-tournament-show .dashboard-tournament-details__terms-list,
  .dashboard-mobile-tournament-show .dashboard-tournament-details__terms-list li {
    color: #111 !important;
  }

  .dashboard-mobile-my-tournaments .dashboard-my-tournament-card {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .dashboard-mobile-my-tournaments .dashboard-my-tournament-card__title {
    font-size: 1rem;
  }

  .dashboard-mobile-my-tournaments .dashboard-my-tournament-card__body {
    background: #fff;
  }

  .dashboard-mobile-my-tournaments .dashboard-my-tournament-card__body .btn {
    width: 100%;
  }

  .dashboard-mobile-prizes .dashboard-tournament-tabs.dashboard-mobile-prizes__tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .dashboard-mobile-prizes .dashboard-tournament-tabs.dashboard-mobile-prizes__tabs .dashboard-tournament-tabs__btn {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
  }

  .dashboard-mobile-prizes__grid,
  body.dashboard-user-site .dashboard-mobile-prizes__grid.dashboard-prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem;
  }

  .dashboard-mobile-prizes .dashboard-prize-card {
    border-radius: 0.85rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    min-width: 0;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__media {
    aspect-ratio: 1 / 1;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__name {
    font-size: 0.78rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__body {
    gap: 0.45rem;
    padding: 0.55rem 0.55rem 0.65rem;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__meta {
    gap: 0.3rem;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__meta li {
    font-size: 0.68rem;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__type {
    top: 0.35rem;
    inset-inline-start: 0.35rem;
    font-size: 0.62rem;
    padding: 0.15rem 0.4rem;
  }

  .dashboard-mobile-prizes .dashboard-prize-card__status {
    font-size: 0.62rem;
    padding: 0.12rem 0.35rem;
  }

  .dashboard-mobile-investigation-file__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .dashboard-mobile-crimes-file__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-crimes-file__step-number {
    width: 1.8rem;
    height: 3.2rem;
    object-fit: contain;
    flex-shrink: 0;
  }

  .dashboard-mobile-crimes-file__step-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    line-height: 1.35;
  }

  .dashboard-mobile-crimes-file__step-label {
    color: #7c0000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .dashboard-mobile-crimes-file__step-action {
    color: #111;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .dashboard-mobile-crimes-file__filters {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
  }

  .dashboard-mobile-crimes-file__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .dashboard-mobile-game-play__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-game-play__step-number {
    width: 1.8rem;
    height: 3.2rem;
    object-fit: contain;
    flex-shrink: 0;
  }

  .dashboard-mobile-game-play__step-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    line-height: 1.35;
  }

  .dashboard-mobile-game-play__step-label {
    color: #7c0000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .dashboard-mobile-game-play__step-action {
    color: #111;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .dashboard-mobile-game-play__card {
    margin-bottom: 0.5rem;
  }

  .dashboard-mobile-game-play__card .mobile-product-show-card__body {
    padding-top: 0.75rem;
  }

  .dashboard-mobile-game-play__hero {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.85rem 0;
  }

  .dashboard-mobile-game-play__hero-media {
    position: relative;
    flex: 0 0 5.5rem;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.08);
  }

  .dashboard-mobile-game-play__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .dashboard-mobile-game-play__hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c0000;
    font-size: 1.6rem;
  }

  .dashboard-mobile-game-play__hero-meta {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .dashboard-mobile-game-play__hero-title {
    margin: 0;
    color: #7c0000;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
  }

  .dashboard-mobile-game-play__crime-badge {
    position: absolute;
    top: 0.3rem;
    inset-inline-start: 0.3rem;
    z-index: 2;
    max-width: calc(100% - 0.5rem);
    padding: 0.12rem 0.35rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-mobile-game-play__details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.15rem;
  }

  .dashboard-mobile-game-play__details-title {
    margin: 0;
    color: #7c0000;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .dashboard-mobile-game-play__details-typewriter {
    color: #333;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.65;
    white-space: pre-wrap;
    min-height: 1.5em;
  }

  .dashboard-mobile-game-play__details-preview {
    color: #333;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.65;
  }

  .dashboard-mobile-game-play__details-full {
    display: none;
    color: #333;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.65;
  }

  .dashboard-mobile-game-play__details-full.is-visible,
  .dashboard-mobile-game-play__details.is-open .dashboard-mobile-game-play__details-full {
    display: block;
  }

  .dashboard-mobile-game-play__details.is-open .dashboard-mobile-game-play__details-preview {
    display: none;
  }

  .dashboard-mobile-game-play__details-toggle {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    margin-top: 0.1rem;
    border: 0;
    border-radius: 999px;
    background: rgba(124, 0, 0, 0.08);
    color: #7c0000;
    padding: 0;
  }

  .dashboard-mobile-game-play__details-toggle i {
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .dashboard-mobile-game-play__details.is-open .dashboard-mobile-game-play__details-toggle i {
    transform: rotate(180deg);
  }

  .dashboard-mobile-game-play__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .dashboard-mobile-game-play__stats span {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(124, 0, 0, 0.08);
    color: #7c0000;
    font-size: 0.7rem;
    font-weight: 800;
  }

  .dashboard-mobile-game-play__hint {
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-step-desktop {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-page.issue-show-page {
    background: transparent;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-layout {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-layout > .dashboard-lobby-start-wrap {
    order: 99;
    width: 100%;
    margin: 0.25rem 0 0;
  }

  /* Game chrome: report (right) + withdraw (left); all crime mobile shells */
  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__chrome,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__chrome,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__chrome,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__chrome,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__chrome,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__chrome,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__chrome {
    display: contents;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__report,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__report,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__report,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__report,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__report,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__report,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__report {
    position: fixed;
    top: 70px;
    right: 16px;
    left: auto;
    z-index: 121;
    margin: 0;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    background-color: #660000;
    border: 1.5px solid #fff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__report:focus,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__report:focus,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__report:focus,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__report:focus,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__report:focus,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__report:focus,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__report:hover,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__report:focus {
    background-color: #4d0000;
    border-color: #fff;
    color: #fff;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__withdraw,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__withdraw,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__withdraw,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__withdraw,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__withdraw,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__withdraw,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__withdraw {
    position: fixed;
    top: 70px;
    left: 16px;
    right: auto;
    z-index: 121;
    margin: 0;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__withdraw .game-withdraw-btn,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__withdraw .game-withdraw-btn,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__withdraw .game-withdraw-btn,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__withdraw .game-withdraw-btn,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__withdraw .game-withdraw-btn,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__withdraw .game-withdraw-btn,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__withdraw .game-withdraw-btn {
    margin: 0;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    background-color: #660000;
    border: 1.5px solid #fff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__withdraw .game-withdraw-btn:hover,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__withdraw .game-withdraw-btn:focus {
    background-color: #4d0000;
    border-color: #fff;
    color: #fff;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled,
  body:has(.dashboard-mobile-game-play) .dashboard-mobile-game__withdraw .game-withdraw-btn:disabled {
    opacity: 0.65;
  }

  /* Lobby chrome legacy alias removed — shared game chrome above */
  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__chrome {
    display: contents;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.35rem;
    min-width: 3.35rem;
    height: 3.35rem;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #7c0000;
    text-align: center;
    line-height: 1;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer-track {
    fill: none;
    stroke: rgba(124, 0, 0, 0.14);
    stroke-width: 2.6;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer-progress {
    fill: none;
    stroke: #7c0000;
    stroke-width: 2.6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s linear, stroke 0.2s ease;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer.is-urgent .dashboard-mobile-lobby__timer-progress {
    stroke: #bc0e1c;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer.is-expired .dashboard-mobile-lobby__timer-progress {
    stroke: #8a0a14;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer-core {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer .lobby-header-timer__value {
    display: block;
    width: auto;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    color: #7c0000;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    transform: none;
    line-height: 1;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer.is-urgent .lobby-header-timer__value {
    color: #bc0e1c;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-lobby__timer.is-expired .lobby-header-timer__value {
    color: #8a0a14;
  }

  /* Crime card — same shell as step 3; image right, timer left */
  .dashboard-mobile-lobby__crime {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-lobby__crime-thumb {
    width: 1.8rem;
    height: 3.2rem;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0.35rem;
    background: #1a1a1a;
  }

  .dashboard-mobile-lobby__crime-thumb--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
  }

  .dashboard-mobile-lobby__crime-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
    flex: 1;
    line-height: 1.35;
  }

  .dashboard-mobile-lobby__crime-title {
    color: #7c0000;
    font-size: 0.9rem;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-mobile-lobby__crime-date {
    color: #111;
    font-size: 0.8rem;
    font-weight: 700;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media__frame,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media .landing-crime-date {
    display: none !important;
  }

  /* Same step card pattern as crimes-file / play (numbers 1 & 2) */
  .dashboard-mobile-lobby__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-lobby__step-number {
    width: 1.8rem;
    height: 3.2rem;
    object-fit: contain;
    flex-shrink: 0;
  }

  .dashboard-mobile-lobby__step-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    line-height: 1.35;
  }

  .dashboard-mobile-lobby__step-label {
    color: #7c0000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .dashboard-mobile-lobby__step-action {
    color: #111;
    font-size: 0.8rem;
    font-weight: 700;
  }

  /* Lobby mobile — realtime notifications */
  body.lobby-page-active .dashboard-lobby-notification-host,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-notification-host {
    position: fixed;
    top: calc(102px + 0.35rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 140;
    width: calc(100% - 2rem);
    max-width: 24rem;
    margin: 0;
    flex: none;
    pointer-events: none;
    display: block !important;
  }

  body.lobby-page-active .dashboard-lobby-notification-host .dashboard-welcome-notification,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-notification-host .dashboard-welcome-notification {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem 0.75rem;
  }

  body.lobby-page-active .dashboard-lobby-notification-host .dashboard-welcome-notification__bell,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-notification-host .dashboard-welcome-notification__bell {
    left: 0;
  }

  body.lobby-page-active .dashboard-lobby-notification-host .dashboard-welcome-notification__text,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-notification-host .dashboard-welcome-notification__text {
    max-width: none;
    white-space: normal;
  }

  body.lobby-page-active .game-invite-stack,
  body:has(.dashboard-mobile-lobby) .game-invite-stack,
  body:has(.dashboard-mobile-purchases) .game-invite-stack {
    top: calc(102px + 0.35rem);
    z-index: 2147483640;
    width: calc(100% - 1.25rem);
    max-width: 22rem;
  }

  body.lobby-page-active .swal2-container,
  body:has(.dashboard-mobile-lobby) .swal2-container {
    z-index: 2147483647 !important;
  }

  /* Mobile home — realtime notifications */
  body.mobile-home-page .dashboard-mobile-notification-host {
    position: fixed;
    top: calc(102px + 0.35rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 2147483644;
    width: calc(100% - 2rem);
    max-width: 24rem;
    margin: 0;
    flex: none;
    pointer-events: none;
    display: block !important;
  }

  body.mobile-home-page .dashboard-mobile-notification-host .dashboard-welcome-electric {
    pointer-events: auto;
  }

  body.mobile-home-page .dashboard-mobile-notification-host .dashboard-welcome-notification {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem 0.75rem;
  }

  body.mobile-home-page .dashboard-mobile-notification-host .dashboard-welcome-notification__bell {
    width: 1.75rem;
    height: 1.75rem;
  }

  body.mobile-home-page .dashboard-mobile-notification-host .dashboard-welcome-notification__text {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  body.mobile-home-page .swal2-container {
    z-index: 2147483647 !important;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-chat {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media__frame {
    max-height: none;
    border-radius: 0.85rem;
    border: 0;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media__frame,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media__frame .issue-show__media,
  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media__frame .ratio {
    height: 12.5rem;
    max-height: 12.5rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media__overlay .issue-show__title {
    font-size: 1.05rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media .landing-crime-date {
    gap: 0.35rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-media .landing-crime-date__item {
    padding: 0.35rem 0.5rem;
    border-radius: 0.65rem;
    font-size: 0.7rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-host-name {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) .lobby-invite-picker__roster {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(124, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-investigators h6 {
    font-size: 0.9rem;
    margin-bottom: 0.55rem !important;
  }

  body:has(.dashboard-mobile-lobby) .lobby-team-member {
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(124, 0, 0, 0.04);
    border-color: rgba(124, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-lobby) .lobby-team-member__name {
    font-size: 0.82rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-start-wrap {
    width: 100%;
    align-self: stretch;
    margin: 0.85rem 0 0;
    order: 99;
    position: relative;
    z-index: 2;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-start-btn {
    min-height: 2.75rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
  }

  body:has(.dashboard-mobile-lobby) .lobby-start-hint {
    color: #000 !important;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.55rem 0.75rem;
    border-radius: 0.7rem;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  body:has(.dashboard-mobile-lobby) .lobby-teams-hint {
    color: #7a5a00 !important;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.5rem 0.7rem;
    border-radius: 0.7rem;
    background: rgba(255, 248, 220, 0.96);
    border: 1px solid rgba(153, 102, 0, 0.2);
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-wait-banner {
    border-radius: 0.75rem;
    font-size: 0.78rem;
    padding: 0.75rem 0.85rem;
  }

  body:has(.dashboard-mobile-lobby) .lobby-invite-picker {
    border-radius: 0.85rem;
    padding: 0.85rem;
    border-color: rgba(124, 0, 0, 0.14);
    background: rgba(255, 253, 248, 0.96);
  }

  body:has(.dashboard-mobile-lobby) #lobby-teams-panel {
    order: 50;
  }

  body:has(.dashboard-mobile-lobby) .lobby-invite-picker__header h6 {
    font-size: 0.9rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-invite-btn {
    border-radius: 0.7rem;
    font-size: 0.78rem;
    padding: 0.45rem 0.7rem;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-chat {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab:not([hidden]) {
    position: fixed;
    bottom: 3.15rem;
    left: 1rem;
    z-index: 160;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    cursor: pointer;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab-icon,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab-icon,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab-icon,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab-icon,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab-icon,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.15rem;
    height: 5.15rem;
    padding: 0;
    border: 1.5px solid #fff;
    border-radius: 50%;
    background: #660000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    box-sizing: border-box;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab i,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab i,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab i,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab i,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab i,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab i {
    position: relative;
    z-index: 1;
    margin: 0;
    transform: translateY(-0.65rem);
    flex: 0 0 auto;
    font-size: 1.7rem;
    line-height: 1;
    color: #fff;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab-label,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab-label,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab-label,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab-label,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab-label,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab-label {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
    overflow: visible;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab-label-text,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab-label-text,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab-label-text,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab-label-text,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab-label-text,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab-label-text {
    fill: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.25px;
    font-family: 'Almarai', 'Cairo', Tahoma, sans-serif;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab-unread,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab-unread,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab-unread,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab-unread,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab-unread,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab-unread {
    position: absolute;
    top: 0.35rem;
    right: 0.4rem;
    z-index: 3;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 2px #660000;
  }

  #gameChatModal.dashboard-mobile-game-chat-modal .modal-dialog {
    margin: 0.65rem;
    max-width: none;
  }

  #gameChatModal.dashboard-mobile-game-chat-modal .modal-content {
    height: calc(100dvh - 1.3rem);
    max-height: calc(100dvh - 1.3rem);
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #gameChatModal.dashboard-mobile-game-chat-modal .modal-header {
    flex-shrink: 0;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(102, 0, 0, 0.12);
    background: #660000;
    color: #fff;
  }

  #gameChatModal.dashboard-mobile-game-chat-modal .modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
    position: relative;
    top: 34px;
    font-size: 1rem;
    font-weight: 800;
  }

  #gameChatModal.dashboard-mobile-game-chat-modal .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.9;
  }

  #gameChatModal.dashboard-mobile-game-chat-modal .modal-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
    height: 100%;
    overflow: hidden;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-root--docked,
  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-root--game-modal {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    background-color: transparent;
    background-image: none;
    z-index: auto;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-panel-header {
    display: none !important;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-messages-shell,
  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-root--docked.has-messages .team-chat-messages-shell,
  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-root--docked.is-expanded .team-chat-messages-shell {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: none !important;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-messages,
  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-root--docked.is-expanded .team-chat-messages {
    max-height: none !important;
    height: 100%;
    overflow-y: auto;
    padding: 0.85rem 0.9rem 0.5rem;
    background: transparent !important;
    border: 0;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-top-fade {
    display: none;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-bar {
    position: relative;
    flex-shrink: 0;
    padding: 0.75rem 0.9rem 1rem;
    background: rgba(255, 253, 248, 0.92);
    border-top: 1px solid rgba(102, 0, 0, 0.1);
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-bar-trigger {
    display: none !important;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-form,
  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-root--docked.is-expanded .team-chat-form {
    display: flex !important;
  }

  #gameChatModal .dashboard-mobile-game-chat-modal-slot .team-chat-input {
    width: 100%;
    min-height: 2.75rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
  }

  body:has(.dashboard-mobile-lobby) #lobby-teams-panel {
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-lobby-invite-accept-card {
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.96);
  }

  /* Investigation mobile shell */
  body:has(.dashboard-mobile-investigation) {
    background-color: #1a1a1a !important;
  }

  body:has(.dashboard-mobile-investigation) > .game-navbar,
  body:has(.dashboard-mobile-investigation) > .players-scoreboard,
  body:has(.dashboard-mobile-investigation) .dashboard-investigation-desktop-bar,
  body:has(.dashboard-mobile-investigation) .dashboard-investigation-desktop {
    display: none !important;
  }

  body:has(.dashboard-mobile-investigation) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-investigation) > main.container-xxl > .alert {
    position: fixed;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 24rem;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-investigation).modal-open .dashboard-mobile-investigation {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-investigation) .modal,
  body:has(.dashboard-mobile-investigation) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-investigation) .modal-backdrop {
    z-index: 1200 !important;
  }

  body:has(.dashboard-mobile-investigation) .modal,
  body:has(.dashboard-mobile-investigation) #gameChatModal {
    z-index: 1210 !important;
  }

  body:has(.dashboard-mobile-investigation).investigation-chat-tall main.container-xxl,
  body:has(.dashboard-mobile-investigation).investigation-chat-tall .players-scoreboard .container-xxl,
  body:has(.dashboard-mobile-investigation).investigation-chat-tall .game-timer-bar .container-xxl {
    padding-left: 0 !important;
  }

  /* Hide the fixed desktop chat until JS docks it into the mobile modal */
  body:has(.dashboard-mobile-investigation) > #team-chat-root,
  body:has(.dashboard-mobile-lobby) > #team-chat-root,
  body:has(.dashboard-mobile-solving) > #team-chat-root,
  body:has(.dashboard-mobile-recap) > #team-chat-root,
  body:has(.dashboard-mobile-culprits) > #team-chat-root,
  body:has(.dashboard-mobile-finished) > #team-chat-root {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    left: -9999px !important;
    bottom: auto !important;
    top: auto !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    display: none !important;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat {
    display: none !important;
  }

  body:has(.dashboard-mobile-lobby) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-solving) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-recap) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-game-chat-fab:not([hidden]),
  body:has(.dashboard-mobile-finished) .dashboard-mobile-game-chat-fab:not([hidden]) {
    z-index: 1200;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-title {
    margin: 0 0 0.55rem;
    color: #660000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot {
    height: 18rem;
    min-height: 18rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column !important;
    z-index: auto !important;
    pointer-events: auto;
    font-size: 0.875rem;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-messages-shell,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked.has-messages .team-chat-messages-shell,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages-shell {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-messages,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-top-fade {
    display: none !important;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-bar {
    border: 0;
    border-top: 1px solid rgba(200, 170, 110, 0.55);
    box-shadow: none;
    flex-shrink: 0;
    background: rgba(255, 253, 248, 0.94);
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-bar-trigger {
    display: none !important;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-form,
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked.is-expanded .team-chat-form {
    display: flex !important;
    padding: 0.5rem 0.65rem 0.6rem;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__chat-slot .team-chat-root--docked .team-chat-input {
    font-size: 0.88rem;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-investigation__list {
    padding-bottom: 0.35rem;
  }

  .dashboard-mobile-investigation__toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    padding: 0.75rem;
    border-radius: 0.85rem;
    background: rgba(102, 0, 0, 0.92);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  }

  .dashboard-mobile-investigation__timer-wrap {
    text-align: center;
  }

  .dashboard-mobile-investigation__timer-label {
    font-size: 0.72rem;
    opacity: 0.9;
    margin-bottom: 0.15rem;
  }

  .dashboard-mobile-investigation__timer-value {
    font-size: 1.65rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
  }

  .dashboard-mobile-investigation__ready-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .dashboard-mobile-investigation__ready-status {
    font-size: 0.74rem;
    line-height: 1.4;
    text-align: center;
    opacity: 0.95;
  }

  .dashboard-mobile-investigation__ready-btn {
    background: #ead7ac !important;
    border-color: #ead7ac !important;
    color: #660000 !important;
    font-weight: 800;
    width: 100%;
  }

  .dashboard-mobile-investigation__ready-btn:disabled {
    opacity: 0.55;
  }

  .dashboard-mobile-investigation__nav {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 0.75rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .dashboard-mobile-investigation__nav-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(102, 0, 0, 0.18);
    color: #660000;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }

  .dashboard-mobile-investigation__nav-link.is-active {
    background: #660000;
    border-color: #660000;
    color: #fff;
    box-shadow: 0 0 0 2px rgba(234, 215, 172, 0.45);
  }

  .dashboard-mobile-investigation__scoreboard {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
  }

  .dashboard-mobile-investigation__player {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 0.68rem;
    font-weight: 700;
    color: #222;
  }

  .dashboard-mobile-investigation__player.is-me {
    border-color: rgba(102, 0, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(102, 0, 0, 0.12);
  }

  .dashboard-mobile-investigation__player-avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .dashboard-mobile-investigation__player-avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ead7ac;
    color: #660000;
  }

  .dashboard-mobile-investigation__player-name {
    max-width: 6.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-mobile-investigation__player-badge {
    font-size: 0.62rem;
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
    font-weight: 800;
  }

  .dashboard-mobile-investigation__player-badge.is-success {
    background: rgba(40, 167, 69, 0.15);
    color: #1f7a34;
  }

  .dashboard-mobile-investigation__player-badge.is-pending {
    background: rgba(255, 193, 7, 0.18);
    color: #8a6500;
  }

  .dashboard-mobile-investigation__player-badge.is-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #a71d2a;
  }

  .dashboard-mobile-investigation__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dashboard-mobile-investigation__card,
  .dashboard-mobile-investigation__person-card,
  .dashboard-mobile-investigation__detail-card .dashboard-mobile-investigation__card {
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
  }

  .dashboard-mobile-investigation__card {
    padding: 0.85rem;
  }

  .dashboard-mobile-investigation__card-title {
    margin: 0 0 0.65rem;
    color: #660000;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.35;
  }

  .dashboard-mobile-investigation__details,
  .dashboard-mobile-investigation__intro,
  .dashboard-mobile-investigation__rich-text {
    color: #222;
    font-size: 0.82rem;
    line-height: 1.75;
    white-space: pre-wrap;
  }

  .dashboard-mobile-investigation__rich-text img,
  .dashboard-mobile-investigation__video-wrap video,
  .dashboard-mobile-investigation__card video,
  .dashboard-mobile-investigation__card img {
    max-width: 100%;
    height: auto;
    border-radius: 0.55rem;
  }

  .dashboard-mobile-investigation__video-wrap {
    border-radius: 0.55rem;
    overflow: hidden;
    background: #111;
  }

  .dashboard-mobile-investigation__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dashboard-mobile-investigation__person-card {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    align-items: stretch;
  }

  .dashboard-mobile-investigation__person-media {
    flex: 0 0 5.5rem;
    min-height: 5.5rem;
    border-radius: 0.55rem;
    overflow: hidden;
    background: #1a120c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.75rem;
  }

  .dashboard-mobile-investigation__person-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .dashboard-mobile-investigation__person-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
  }

  .dashboard-mobile-investigation__person-name {
    margin: 0;
    color: #660000;
    font-size: 0.92rem;
    font-weight: 900;
  }

  .dashboard-mobile-investigation__person-action {
    align-self: flex-start;
    background: #660000 !important;
    border-color: #660000 !important;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.45rem 0.75rem;
  }

  .dashboard-mobile-investigation__empty-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: #666;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .dashboard-mobile-investigation__empty {
    margin: 0;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 1rem;
  }

  .dashboard-mobile-investigation__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.55rem;
    background: #660000;
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    width: fit-content;
  }

  .dashboard-mobile-investigation__detail-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dashboard-mobile-investigation__detail-photo {
    border-radius: 0.95rem;
    overflow: hidden;
    background: #1a120c;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .dashboard-mobile-investigation__detail-photo img {
    width: 100%;
    max-height: 14rem;
    object-fit: contain;
    display: block;
    background: #111;
  }

  .dashboard-mobile-investigation__detail-photo-empty {
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 2.5rem;
  }

  .dashboard-mobile-investigation__detail-name {
    margin: 0;
    padding: 0.7rem 0.85rem;
    text-align: center;
    color: #660000;
    font-size: 0.9rem;
    font-weight: 900;
    background: rgba(234, 215, 172, 0.35);
  }

  /* Solving page — mobile shell */
  body:has(.dashboard-mobile-solving) > .game-navbar,
  body:has(.dashboard-mobile-solving) > .players-scoreboard,
  body:has(.dashboard-mobile-solving) > .solving-meta-bar {
    display: none !important;
  }

  body:has(.dashboard-mobile-solving) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-solving) > main.container-xxl > .alert {
    position: fixed;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 24rem;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-purchases__content {
    padding-top: 1.75rem;
  }

  body:has(.dashboard-mobile-solving).modal-open .dashboard-mobile-solving {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-solving) .modal,
  body:has(.dashboard-mobile-solving) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-solving) .modal-backdrop {
    z-index: 1200 !important;
  }

  body:has(.dashboard-mobile-solving) .modal,
  body:has(.dashboard-mobile-solving) #gameChatModal {
    z-index: 1210 !important;
  }

  body:has(.dashboard-mobile-solving).investigation-chat-tall main.container-xxl,
  body:has(.dashboard-mobile-solving).investigation-chat-tall .players-scoreboard .container-xxl,
  body:has(.dashboard-mobile-solving).investigation-chat-tall .solving-meta-bar .container-xxl {
    padding-left: 0 !important;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat {
    margin-top: 0.85rem;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-title {
    margin: 0 0 0.55rem;
    color: #660000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot {
    height: 18rem;
    min-height: 18rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column !important;
    z-index: auto !important;
    pointer-events: auto;
    font-size: 0.875rem;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-messages-shell,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked.has-messages .team-chat-messages-shell,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages-shell {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-messages,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-top-fade {
    display: none !important;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-bar {
    border: 0;
    border-top: 1px solid rgba(200, 170, 110, 0.55);
    box-shadow: none;
    flex-shrink: 0;
    background: rgba(255, 253, 248, 0.94);
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-bar-trigger {
    display: none !important;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-form,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked.is-expanded .team-chat-form {
    display: flex !important;
    padding: 0.5rem 0.65rem 0.6rem;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__chat-slot .team-chat-root--docked .team-chat-input {
    font-size: 0.88rem;
  }

  .dashboard-mobile-solving__meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.95rem;
    background: rgba(234, 215, 172, 0.96);
    border: 1px solid rgba(102, 0, 0, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-solving__meta-titles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
  }

  .dashboard-mobile-solving__round {
    display: inline-flex;
    align-items: center;
    background: #660000;
    color: #fff !important;
    font-weight: 900;
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.35rem;
    line-height: 1.35;
  }

  .dashboard-mobile-solving__question {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #660000 !important;
    border: 1px solid rgba(102, 0, 0, 0.28);
    font-weight: 900;
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.35rem;
    line-height: 1.35;
  }

  /* Names/teams — default fixed (legacy); pages below override to in-flow */
  .dashboard-mobile-solving__corners {
    display: contents;
  }

  .dashboard-mobile-solving__corner {
    position: fixed;
    top: 108px;
    z-index: 121;
    width: min(42vw, 7.75rem);
    max-width: 7.75rem;
    pointer-events: none;
  }

  .dashboard-mobile-solving__corner.is-report {
    right: 12px;
    left: auto;
  }

  .dashboard-mobile-solving__corner.is-withdraw {
    left: 12px;
    right: auto;
  }

  /* Investigation + Solving + Recap: teams scroll with content, above crime title */
  body:has(.dashboard-mobile-investigation) .dashboard-mobile-solving__corners,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__corners,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-solving__corners {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    width: 100%;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-solving__corners.is-ffa,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__corners.is-ffa,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-solving__corners.is-ffa {
    justify-content: stretch;
    gap: 0.4rem;
  }

  .dashboard-mobile-solving__ffa {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
  }

  .dashboard-mobile-solving__team.is-ffa-player {
    flex: 1 1 0;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0.35rem 0.22rem;
  }

  .dashboard-mobile-solving__team.is-ffa-player .dashboard-mobile-solving__team-players {
    width: 100%;
  }

  .dashboard-mobile-solving__team.is-ffa-player .dashboard-mobile-solving__team-name {
    font-size: 0.55rem;
    max-width: 100%;
  }

  .dashboard-mobile-solving__team.is-ffa-player .dashboard-mobile-solving__team-badge {
    font-size: 0.48rem;
    padding: 0.06rem 0.22rem;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-solving__corner,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__corner,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-solving__corner {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    width: auto;
    max-width: none;
    flex: 1 1 0;
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-investigation) .dashboard-mobile-solving__team,
  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__team,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-solving__team {
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .dashboard-mobile-solving__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    min-width: 0;
    padding: 0.4rem 0.35rem;
    border-radius: 0.75rem;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
  }

  .dashboard-mobile-solving__team.is-red {
    border-color: rgba(188, 14, 28, 0.28);
    background: rgba(255, 245, 245, 0.96);
  }

  .dashboard-mobile-solving__team.is-blue {
    border-color: rgba(30, 90, 140, 0.28);
    background: rgba(240, 247, 252, 0.96);
  }

  .dashboard-mobile-solving__team.is-solo {
    border-color: rgba(102, 0, 0, 0.14);
    background: rgba(255, 253, 248, 0.96);
  }

  .dashboard-mobile-solving__team-icon {
    width: 1.55rem;
    height: 1.55rem;
    background-color: #660000;
    -webkit-mask: var(--team-icon) center / contain no-repeat;
    mask: var(--team-icon) center / contain no-repeat;
  }

  .dashboard-mobile-solving__team.is-blue .dashboard-mobile-solving__team-icon {
    background-color: #1e5a8c;
  }

  .dashboard-mobile-solving__team.is-red .dashboard-mobile-solving__team-icon {
    background-color: #bc0e1c;
  }

  .dashboard-mobile-solving__team-label {
    font-size: 0.62rem;
    font-weight: 900;
    color: #660000;
    text-align: center;
    line-height: 1.2;
  }

  .dashboard-mobile-solving__team.is-blue .dashboard-mobile-solving__team-label {
    color: #1e5a8c;
  }

  .dashboard-mobile-solving__team.is-red .dashboard-mobile-solving__team-label {
    color: #bc0e1c;
  }

  .dashboard-mobile-solving__team-players {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    width: 100%;
  }

  .dashboard-mobile-solving__team-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
    text-align: center;
  }

  .dashboard-mobile-solving__team-player.is-me .dashboard-mobile-solving__team-avatar {
    box-shadow: 0 0 0 2px #ead7ac, 0 0 0 3px #660000;
  }

  .dashboard-mobile-solving__team-player.has-withdrawn {
    opacity: 0.55;
  }

  .dashboard-mobile-solving__team-avatar {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    object-fit: cover;
  }

  .dashboard-mobile-solving__team-avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ead7ac;
    color: #660000;
    font-size: 0.8rem;
  }

  .dashboard-mobile-solving__team-name {
    font-size: 0.6rem;
    font-weight: 800;
    color: #222;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-mobile-solving__team-badge {
    font-size: 0.52rem;
    font-weight: 800;
    padding: 0.08rem 0.28rem;
    border-radius: 999px;
    line-height: 1.1;
  }

  .dashboard-mobile-solving__team-badge.is-success {
    background: rgba(25, 135, 84, 0.15);
    color: #146c43;
  }

  .dashboard-mobile-solving__team-badge.is-danger {
    background: rgba(188, 14, 28, 0.15);
    color: #bc0e1c;
  }

  .dashboard-mobile-solving__team-badge.is-pending {
    background: rgba(102, 0, 0, 0.08);
    color: #660000;
  }

  .dashboard-mobile-solving__timer-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    flex-shrink: 0;
    margin: 0.15rem auto 0;
  }

  .dashboard-mobile-solving__timer-ring--solo {
    width: 6.25rem;
    height: 6.25rem;
  }

  .dashboard-mobile-solving__timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .dashboard-mobile-solving__timer-track {
    fill: none;
    stroke: rgba(102, 0, 0, 0.15);
    stroke-width: 2.4;
  }

  .dashboard-mobile-solving__timer-progress {
    fill: none;
    stroke: #660000;
    stroke-width: 2.4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s linear, stroke 0.2s ease;
  }

  .dashboard-mobile-solving__timer-progress.is-urgent {
    stroke: #bc0e1c;
  }

  .dashboard-mobile-solving__timer-progress.is-expired {
    stroke: #8a0a14;
  }

  .dashboard-mobile-solving__timer-core {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
  }

  .dashboard-mobile-solving__meta-timer-label {
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1;
    margin-bottom: 0.12rem;
  }

  .dashboard-mobile-solving__meta-timer-value {
    font-size: 1.15rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    color: #660000;
    line-height: 1;
  }

  .dashboard-mobile-solving__timer-ring--solo .dashboard-mobile-solving__meta-timer-value {
    font-size: 1.35rem;
  }

  .dashboard-mobile-solving__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__panel .card {
    margin-bottom: 0 !important;
    border-radius: 0.95rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
  }

  body:has(.dashboard-mobile-solving) .dashboard-mobile-solving__panel .card-body {
    padding: 0.95rem;
  }

  body:has(.dashboard-mobile-solving) #solving-question-text {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.85rem !important;
  }

  body:has(.dashboard-mobile-solving) #solving-answers-list .col-md-6 {
    width: 100%;
  }

  body:has(.dashboard-mobile-solving) #solving-answers-list .solving-answer-option {
    font-size: 0.88rem;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  body:has(.dashboard-mobile-solving) #solving-answers-list .solving-answer-option.is-captain-pick,
  body:has(.dashboard-mobile-solving) #solving-answers-list .btn.btn-primary.solving-answer-option.is-captain-pick,
  body:has(.dashboard-mobile-solving) #solving-answers-list .solving-answer-option.is-selected.is-captain-pick {
    color: #220000 !important;
    background-color: rgba(255, 193, 7, 0.22) !important;
    border-color: #ffc107 !important;
  }

  body:has(.dashboard-mobile-solving) #solving-answers-list .solving-answer-option.is-selected:not(.is-captain-pick) {
    color: #fff !important;
    background-color: #660000 !important;
    border-color: #660000 !important;
  }

  /* Round recap — mobile shell */
  body:has(.dashboard-mobile-recap) > .game-navbar,
  body:has(.dashboard-mobile-recap) > .players-scoreboard {
    display: none !important;
  }

  body:has(.dashboard-mobile-recap) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-recap) > main.container-xxl > .alert {
    position: fixed;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 24rem;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-recap).modal-open .dashboard-mobile-recap {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-recap) .modal,
  body:has(.dashboard-mobile-recap) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-recap) .modal-backdrop {
    z-index: 1200 !important;
  }

  body:has(.dashboard-mobile-recap) .modal,
  body:has(.dashboard-mobile-recap) #gameChatModal {
    z-index: 1210 !important;
  }

  body:has(.dashboard-mobile-recap).investigation-chat-tall main.container-xxl,
  body:has(.dashboard-mobile-recap).investigation-chat-tall .players-scoreboard .container-xxl {
    padding-left: 0 !important;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat {
    margin-top: 0.85rem;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-title {
    margin: 0 0 0.55rem;
    color: #660000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot {
    height: 18rem;
    min-height: 18rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column !important;
    z-index: auto !important;
    pointer-events: auto;
    font-size: 0.875rem;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-messages-shell,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked.has-messages .team-chat-messages-shell,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages-shell {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-messages,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-top-fade {
    display: none !important;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-bar {
    border: 0;
    border-top: 1px solid rgba(200, 170, 110, 0.55);
    box-shadow: none;
    flex-shrink: 0;
    background: rgba(255, 253, 248, 0.94);
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-bar-trigger {
    display: none !important;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-form,
  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked.is-expanded .team-chat-form {
    display: flex !important;
    padding: 0.5rem 0.65rem 0.6rem;
  }

  body:has(.dashboard-mobile-recap) .dashboard-mobile-recap__chat-slot .team-chat-root--docked .team-chat-input {
    font-size: 0.88rem;
  }

  .dashboard-mobile-recap__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
  }

  body:has(.dashboard-mobile-recap) .recap-timer-bar {
    margin-bottom: 0.85rem;
    padding: 0.75rem;
    border-radius: 0.85rem;
    background: rgba(234, 215, 172, 0.96);
    border: 1px solid rgba(102, 0, 0, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  body:has(.dashboard-mobile-recap) .recap-timer-bar__label {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  body:has(.dashboard-mobile-recap) .recap-timer-bar__value {
    font-size: 1.55rem;
  }

  body:has(.dashboard-mobile-recap) .recap-round-title {
    font-size: 1rem;
    margin-bottom: 0.35rem !important;
  }

  body:has(.dashboard-mobile-recap) .recap-round-subtitle {
    font-size: 0.82rem;
    margin-bottom: 0.85rem !important;
    color: #000 !important;
  }

  body:has(.dashboard-mobile-recap) .recap-team-card,
  body:has(.dashboard-mobile-recap) .recap-players-desktop {
    border-radius: 0.95rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
  }

  body:has(.dashboard-mobile-recap) .recap-players-desktop {
    display: none !important;
  }

  body:has(.dashboard-mobile-recap) .recap-players-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
  }

  .dashboard-mobile-recap__player-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-recap__player-card .recap-player {
    flex: 1;
    min-width: 0;
  }

  .dashboard-mobile-recap__player-score {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(102, 0, 0, 0.1);
    color: #660000;
    font-size: 0.95rem;
    font-weight: 900;
  }

  body:has(.dashboard-mobile-recap) .recap-continue-btn {
    width: 100%;
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    background-color: #660000 !important;
    border-color: #660000 !important;
  }

  body:has(.dashboard-mobile-recap) #recap-waiting-host {
    color: #000;
    font-size: 0.82rem;
    margin-bottom: 0;
  }

  /* Culprits page — mobile shell */
  body:has(.dashboard-mobile-culprits) > .game-navbar,
  body:has(.dashboard-mobile-culprits) > .players-scoreboard {
    display: none !important;
  }

  body:has(.dashboard-mobile-culprits) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-culprits) > main.container-xxl > .alert {
    position: fixed;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 24rem;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-culprits).modal-open .dashboard-mobile-culprits {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-culprits) .modal,
  body:has(.dashboard-mobile-culprits) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-culprits) .modal-backdrop {
    z-index: 1200 !important;
  }

  body:has(.dashboard-mobile-culprits) .modal,
  body:has(.dashboard-mobile-culprits) #gameChatModal {
    z-index: 1210 !important;
  }

  body:has(.dashboard-mobile-culprits).investigation-chat-tall main.container-xxl,
  body:has(.dashboard-mobile-culprits).investigation-chat-tall .players-scoreboard .container-xxl {
    padding-left: 0 !important;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat {
    margin-top: 0.85rem;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-title {
    margin: 0 0 0.55rem;
    color: #660000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot {
    height: 18rem;
    min-height: 18rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column !important;
    z-index: auto !important;
    pointer-events: auto;
    font-size: 0.875rem;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-messages-shell,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked.has-messages .team-chat-messages-shell,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages-shell {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-messages,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-top-fade {
    display: none !important;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-bar {
    border: 0;
    border-top: 1px solid rgba(200, 170, 110, 0.55);
    box-shadow: none;
    flex-shrink: 0;
    background: rgba(255, 253, 248, 0.94);
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-bar-trigger {
    display: none !important;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-form,
  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked.is-expanded .team-chat-form {
    display: flex !important;
    padding: 0.5rem 0.65rem 0.6rem;
  }

  body:has(.dashboard-mobile-culprits) .dashboard-mobile-culprits__chat-slot .team-chat-root--docked .team-chat-input {
    font-size: 0.88rem;
  }

  .dashboard-mobile-culprits__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
  }

  body:has(.dashboard-mobile-culprits) .culprits-page-title {
    font-size: 1rem;
    margin-bottom: 0.35rem !important;
  }

  body:has(.dashboard-mobile-culprits) .culprits-page-subtitle {
    color: #000;
    font-size: 0.82rem;
    margin-bottom: 0.85rem !important;
  }

  body:has(.dashboard-mobile-culprits) #culprit-cards {
    margin-bottom: 0.85rem !important;
  }

  body:has(.dashboard-mobile-culprits) .culprit-card {
    padding: 0.75rem 0.55rem;
    border-radius: 0.85rem;
    border-color: rgba(102, 0, 0, 0.22);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  body:has(.dashboard-mobile-culprits) .culprit-card .culprit-avatar,
  body:has(.dashboard-mobile-culprits) .culprit-card .culprit-placeholder {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 0.55rem;
  }

  body:has(.dashboard-mobile-culprits) .culprit-card .fw-semibold {
    font-size: 0.82rem;
    line-height: 1.35;
    color: #220000;
  }

  body:has(.dashboard-mobile-culprits) .culprit-card .badge {
    font-size: 0.68rem;
  }

  body:has(.dashboard-mobile-culprits) .culprits-submit-btn,
  body:has(.dashboard-mobile-culprits) #btn-submit-culprits {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    background-color: #660000 !important;
    border-color: #660000 !important;
  }

  body:has(.dashboard-mobile-culprits) #culprit-team-actions:not(.d-none) {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  body:has(.dashboard-mobile-culprits) #culprit-submitted-waiting {
    font-size: 0.82rem;
    border-radius: 0.75rem;
  }

  /* Finished page — mobile shell */
  body:has(.dashboard-mobile-finished) > .game-navbar {
    display: none !important;
  }

  body:has(.dashboard-mobile-finished) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-finished) > main.container-xxl > .alert {
    position: fixed;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 24rem;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-finished).modal-open .dashboard-mobile-finished {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-finished) .modal,
  body:has(.dashboard-mobile-finished) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-finished) .modal-backdrop {
    z-index: 1200 !important;
  }

  body:has(.dashboard-mobile-finished) .modal,
  body:has(.dashboard-mobile-finished) #gameChatModal {
    z-index: 1210 !important;
  }

  body:has(.dashboard-mobile-finished).investigation-chat-tall main.container-xxl {
    padding-left: 0 !important;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat {
    margin-top: 0.85rem;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-title {
    margin: 0 0 0.55rem;
    color: #660000;
    font-size: 0.9rem;
    font-weight: 900;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot {
    height: 18rem;
    min-height: 18rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column !important;
    z-index: auto !important;
    pointer-events: auto;
    font-size: 0.875rem;
    background-color: #f7f1e4;
    background-image: url('/assets/backgound-chat.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-messages-shell,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked.has-messages .team-chat-messages-shell,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages-shell {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-messages,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked.is-expanded .team-chat-messages {
    max-height: none !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-top-fade {
    display: none !important;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-bar {
    border: 0;
    border-top: 1px solid rgba(200, 170, 110, 0.55);
    box-shadow: none;
    flex-shrink: 0;
    background: rgba(255, 253, 248, 0.94);
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-bar-trigger {
    display: none !important;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-form,
  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked.is-expanded .team-chat-form {
    display: flex !important;
    padding: 0.5rem 0.65rem 0.6rem;
  }

  body:has(.dashboard-mobile-finished) .dashboard-mobile-finished__chat-slot .team-chat-root--docked .team-chat-input {
    font-size: 0.88rem;
  }

  .dashboard-mobile-finished__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
  }

  .dashboard-mobile-finished__meta {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.85rem;
    background: rgba(234, 215, 172, 0.96);
    border: 1px solid rgba(102, 0, 0, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .dashboard-mobile-finished__meta-timer.finished-header-timer {
    justify-content: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    color: inherit;
    text-align: center;
  }

  .dashboard-mobile-finished__meta-timer-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 0.2rem;
  }

  .dashboard-mobile-finished__meta-timer-value {
    display: block;
    font-size: 1.55rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    color: #660000;
    line-height: 1.1;
  }

  body:has(.dashboard-mobile-finished) .finished-page__title--desktop {
    display: none !important;
  }

  body:has(.dashboard-mobile-finished) .finished-page__datetime {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
    color: #4a3b2a;
  }

  body:has(.dashboard-mobile-finished) .finished-layout {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  body:has(.dashboard-mobile-finished) .finished-case {
    border-radius: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  }

  body:has(.dashboard-mobile-finished) .finished-case__media {
    aspect-ratio: 16 / 11;
  }

  body:has(.dashboard-mobile-finished) .finished-case__logo {
    width: min(42%, 6.5rem);
  }

  body:has(.dashboard-mobile-finished) .finished-case__title-ar {
    font-size: 0.95rem;
  }

  body:has(.dashboard-mobile-finished) .finished-case__title-en {
    font-size: 0.75rem;
  }

  body:has(.dashboard-mobile-finished) .finished-investigators {
    gap: 0.65rem;
  }

  body:has(.dashboard-mobile-finished) .finished-teams {
    gap: 0.55rem;
  }

  body:has(.dashboard-mobile-finished) .finished-players-grid {
    gap: 0.55rem;
  }

  body:has(.dashboard-mobile-finished) .finished-player-card {
    padding: 0.65rem 0.5rem;
    border-radius: 0.85rem;
    gap: 0.45rem;
  }

  body:has(.dashboard-mobile-finished) .finished-players-grid[data-count="3"] .finished-player-card:last-child {
    max-width: none;
    grid-column: 1 / -1;
  }

  body:has(.dashboard-mobile-finished) .finished-team-card {
    padding: 0.7rem 0.55rem;
    border-radius: 0.85rem;
    gap: 0.55rem;
  }

  body:has(.dashboard-mobile-finished) .finished-team-card__label {
    font-size: 0.78rem;
  }

  body:has(.dashboard-mobile-finished) .finished-team-card__icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  body:has(.dashboard-mobile-finished) .finished-team-card .finished-investigator {
    padding: 0.55rem 0.5rem;
    border-radius: 0.7rem;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  body:has(.dashboard-mobile-finished) .finished-investigator {
    padding: 0.75rem 0.85rem;
    border-radius: 0.85rem;
    gap: 0.65rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  body:has(.dashboard-mobile-finished) .finished-investigator__avatar,
  body:has(.dashboard-mobile-finished) .finished-investigator__avatar-fallback {
    width: 42px;
    height: 42px;
  }

  body:has(.dashboard-mobile-finished) .finished-investigator__name {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
  }

  body:has(.dashboard-mobile-finished) .finished-outcome {
    font-size: 0.78rem;
    padding: 0.3rem 0.65rem;
  }

  body:has(.dashboard-mobile-finished) .finished-solution-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  body:has(.dashboard-mobile-finished) .finished-actions {
    margin-top: 0.85rem;
  }

  body:has(.dashboard-mobile-finished) .finished-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background-color: #660000 !important;
    border-color: #660000 !important;
  }

  body:has(.dashboard-mobile-finished) #finished-confetti {
    z-index: 150;
  }

  /* Finished solution (TV) — mobile shell */
  body:has(.dashboard-mobile-solution) > .game-navbar {
    display: none !important;
  }

  body:has(.dashboard-mobile-solution) > main.container-xxl {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    background: transparent !important;
  }

  body:has(.dashboard-mobile-solution) > main.container-xxl > .alert {
    position: fixed;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 24rem;
  }

  body:has(.dashboard-mobile-solution) .dashboard-mobile-solution.dashboard-mobile-purchases {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
    font-family: 'Almarai', sans-serif;
  }

  body:has(.dashboard-mobile-solution).modal-open .dashboard-mobile-solution {
    pointer-events: none;
  }

  body:has(.dashboard-mobile-solution) .modal,
  body:has(.dashboard-mobile-solution) .modal-backdrop {
    pointer-events: auto;
  }

  body:has(.dashboard-mobile-solution) .modal-backdrop {
    z-index: 1200 !important;
  }

  body:has(.dashboard-mobile-solution) .modal {
    z-index: 1210 !important;
  }

  .dashboard-mobile-solution__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
  }

  body:has(.dashboard-mobile-solution) .solution-tv-page {
    min-height: 0;
    padding: 0.25rem 0 0.75rem;
    align-items: flex-start;
  }

  body:has(.dashboard-mobile-solution) .solution-tv {
    width: 100%;
    max-width: 26rem;
    top: 0;
    margin-inline: auto;
  }

  body:has(.dashboard-mobile-solution) .solution-tv__screen {
    left: 10.8%;
    right: 30.5%;
    top: 13.8%;
    bottom: 29.5%;
    border-radius: 1rem;
  }

  body:has(.dashboard-mobile-solution) .solution-tv__credits-track {
    font-size: clamp(0.72rem, 3.4vw, 0.9rem);
    line-height: 1.7;
    left: 8%;
    right: 8%;
  }

  body:has(.dashboard-mobile-solution) .solution-tv__culprits {
    width: min(78%, 200px);
    height: min(72%, 220px);
  }

  .crimes-file-mobile-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .crimes-file-mobile-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #111;
    overflow: hidden;
  }

  .crimes-file-mobile-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .crimes-file-mobile-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.55);
    font-size: 2rem;
  }

  .crimes-file-mobile-card__badge {
    position: absolute;
    top: 0.45rem;
    inset-inline-start: 0.45rem;
    z-index: 2;
    padding: 0.18rem 0.42rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .crimes-file-mobile-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.72rem 0.72rem 0.55rem;
  }

  .crimes-file-mobile-card__title {
    margin: 0;
    color: #111;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .crimes-file-mobile-card__date {
    margin: 0;
    color: #6b7280;
    font-size: 0.68rem;
    font-weight: 700;
  }

  .crimes-file-mobile-card__gift {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: center;
    margin: 0;
    color: #6b7280;
    font-size: 0.64rem;
    font-weight: 700;
  }

  .crimes-file-mobile-card__notice {
    display: flex;
    gap: 0.3rem;
    align-items: flex-start;
    margin: 0;
    padding: 0.45rem 0.5rem;
    border-radius: 0.7rem;
    background: rgba(124, 0, 0, 0.06);
    color: #7c0000;
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .crimes-file-mobile-card__notice a {
    color: inherit;
    text-decoration: underline;
  }

  .crimes-file-mobile-card__footer {
    margin-top: auto;
    padding: 0 0.72rem 0.72rem;
  }

  .crimes-file-mobile-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2rem;
    padding: 0.52rem 0.7rem;
    border-radius: 999px;
    background: #7c0000;
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .crimes-file-mobile-card__action.is-disabled {
    background: rgba(17, 17, 17, 0.12);
    color: #6b7280;
  }

  .investigation-match-card-mobile {
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }

  .investigation-match-card-mobile.is-hidden {
    display: none !important;
  }

  .investigation-match-card-mobile__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
  }

  .investigation-match-card-mobile__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .investigation-match-card-mobile__cover-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.45);
    font-size: 2.5rem;
  }

  .investigation-match-card-mobile__crime-badge,
  .investigation-match-card-mobile__outcome {
    position: absolute;
    top: 0.55rem;
    z-index: 2;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .investigation-match-card-mobile__crime-badge {
    inset-inline-start: 0.55rem;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
  }

  .investigation-match-card-mobile__outcome {
    inset-inline-end: 0.55rem;
  }

  .investigation-match-card-mobile__outcome.is-win {
    background: rgba(34, 197, 94, 0.92);
    color: #fff;
  }

  .investigation-match-card-mobile__outcome.is-loss {
    background: rgba(188, 14, 28, 0.92);
    color: #fff;
  }

  .investigation-match-card-mobile__outcome.is-withdraw {
    background: rgba(234, 179, 8, 0.92);
    color: #111;
  }

  .investigation-match-card-mobile__body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem 1rem;
  }

  .investigation-match-card-mobile__title {
    margin: 0;
    color: #111;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .investigation-match-card-mobile__date {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .investigation-match-card-mobile__players {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.65rem 0.5rem;
    border-radius: 0.75rem;
    background: rgba(124, 0, 0, 0.05);
    border: 1px solid rgba(124, 0, 0, 0.08);
  }

  .investigation-match-card-mobile__players.is-ffa {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.4rem;
  }

  .investigation-match-card-mobile__players.is-ffa .investigation-match-card-mobile__player {
    flex: 1 1 calc(50% - 0.4rem);
    max-width: calc(50% - 0.2rem);
  }

  .investigation-match-card-mobile__sides.is-teams {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.35rem;
    width: 100%;
    margin-bottom: 0.15rem;
  }

  .investigation-match-card-mobile__side {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.35rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  .investigation-match-card-mobile__side.is-winner {
    border-color: rgba(25, 135, 84, 0.35);
    box-shadow: 0 0 0 1px rgba(25, 135, 84, 0.12);
  }

  .investigation-match-card-mobile__side-name {
    font-size: 0.68rem;
    font-weight: 900;
    color: #660000;
    text-align: center;
    line-height: 1.2;
  }

  .investigation-match-card-mobile__team-icon {
    width: 1.35rem;
    height: 1.35rem;
    background-color: #660000;
    -webkit-mask: var(--team-icon) center / contain no-repeat;
    mask: var(--team-icon) center / contain no-repeat;
  }

  .investigation-match-card-mobile__side-players {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
  }

  .investigation-match-card-mobile__player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 1 1 0;
    min-width: 0;
  }

  .investigation-match-card-mobile__avatar-wrap {
    position: relative;
    width: 3rem;
    height: 3rem;
  }

  .investigation-match-card-mobile__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(124, 0, 0, 0.18);
    display: block;
  }

  .investigation-match-card-mobile__flag {
    position: absolute;
    bottom: -0.1rem;
    inset-inline-end: -0.1rem;
  }

  .investigation-match-card-mobile__flag .fi {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 2px;
  }

  .investigation-match-card-mobile__player-name {
    max-width: 100%;
    color: #111;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .investigation-match-card-mobile__vs {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
  }

  .investigation-match-card-mobile__vs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
  }

  .investigation-match-card-mobile__result-btn {
    width: 100%;
    margin-top: 0.15rem;
    background: #660000;
    border-color: #660000;
    color: #fff;
    font-weight: 800;
  }

  .investigation-match-card-mobile__result-btn:hover,
  .investigation-match-card-mobile__result-btn:focus {
    background: #7c0000;
    border-color: #7c0000;
    color: #fff;
  }

  .dashboard-mobile-teams__actions .btn {
    font-weight: 800;
  }

  .dashboard-mobile-teams .dashboard-teams-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .dashboard-mobile-teams .dashboard-team-card,
  .dashboard-mobile-teams .dashboard-team-form-card {
    max-width: none;
    margin-inline: 0;
    border-radius: 1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-teams .dashboard-team-form-card .card-body {
    padding: 1rem 0.95rem 1.1rem;
  }

  .dashboard-mobile-teams .dashboard-team-form__logo-trigger {
    width: 100%;
    height: 10rem;
  }

  .dashboard-mobile-teams .dashboard-team-form .form-label {
    font-size: 0.92rem;
  }

  .dashboard-mobile-teams .dashboard-team-form .form-control {
    min-height: 2.75rem;
    font-size: 0.92rem;
  }

  .dashboard-mobile-teams .dashboard-team-form textarea.form-control {
    min-height: 5.5rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__logo-wrap {
    padding-top: 0.85rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__logo,
  .dashboard-mobile-teams .dashboard-team-card__logo-fallback {
    width: 5.5rem;
    height: 5.5rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__body {
    padding: 0.85rem 0.95rem 1rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__name {
    font-size: 1rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__created,
  .dashboard-mobile-teams .dashboard-team-card__bio {
    font-size: 0.78rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__stats {
    gap: 0.35rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__stat {
    padding: 0.45rem 0.25rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__stat-value {
    font-size: 1rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__stat-label {
    font-size: 0.62rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__members-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__add-member-btn,
  .dashboard-mobile-teams .dashboard-team-card__transfer-btn,
  .dashboard-mobile-teams .dashboard-team-card__dissolve-btn,
  .dashboard-mobile-teams .dashboard-team-card__leave-btn,
  .dashboard-mobile-teams .dashboard-team-card__pending-actions .btn {
    width: 100%;
  }

  .dashboard-mobile-teams .dashboard-team-card__pending-actions {
    flex-direction: column;
    gap: 0.45rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__footer-actions {
    margin-top: 0.75rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__member {
    padding: 0.55rem 0.65rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__member-avatar {
    width: 2.35rem;
    height: 2.35rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__member-name {
    font-size: 0.82rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__member-level {
    font-size: 0.68rem;
  }

  .dashboard-mobile-teams .dashboard-team-card__actions {
    position: static;
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 0.85rem 0;
  }

  .dashboard-mobile-teams .dashboard-team-card__status-badge {
    font-size: 0.68rem;
  }

  .dashboard-mobile-teams .dashboard-teams-empty .card-body {
    padding: 2rem 1rem;
  }

  .mobile-product-show-card {
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }

  .mobile-product-show-card__media {
    background: #f3f3f3;
  }

  .mobile-product-show-card__carousel {
    width: 100%;
  }

  .mobile-product-show-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .mobile-product-show-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    color: #9ca3af;
    font-size: 3rem;
  }

  .mobile-product-show-card__carousel .carousel-control-prev,
  .mobile-product-show-card__carousel .carousel-control-next {
    width: 2.5rem;
  }

  .mobile-product-show-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 0.95rem 1.1rem;
  }

  .mobile-product-show-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .mobile-product-show-card__sku {
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .mobile-product-show-card__stock {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
  }

  .mobile-product-show-card__stock.is-available {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
  }

  .mobile-product-show-card__stock.is-unavailable {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
  }

  .mobile-product-show-card__name {
    margin: 0;
    color: #111;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .mobile-product-show-card__prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
  }

  .mobile-product-show-card__price {
    font-weight: 800;
    line-height: 1.1;
  }

  .mobile-product-show-card__price--old {
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: line-through;
  }

  .mobile-product-show-card__price--new {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #7c0000;
    font-size: 1.15rem;
  }

  .mobile-product-show-card__currency {
    width: 0.95rem;
    height: 0.95rem;
  }

  .mobile-product-show-card__details {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(124, 0, 0, 0.05);
    border: 1px solid rgba(124, 0, 0, 0.08);
  }

  .mobile-product-show-card__details-title {
    margin: 0 0 0.45rem;
    color: #7c0000;
    font-size: 0.85rem;
    font-weight: 800;
  }

  .mobile-product-show-card__details-body {
    color: #333;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.55;
  }

  .mobile-product-show-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.25rem;
  }

  .mobile-product-show-card__actions .add-to-cart-form,
  .mobile-product-show-card__actions .add-to-cart-btn-wrap,
  .mobile-product-show-card__actions .add-to-cart-in-cart {
    width: 100%;
  }

  .mobile-product-show-card__actions .add-to-cart-btn,
  .mobile-product-show-card__actions .btn {
    width: 100%;
    justify-content: center;
    font-weight: 800;
  }

  .mobile-issue-show-card__date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .mobile-issue-show-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .mobile-issue-show-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(124, 0, 0, 0.08);
    color: #7c0000;
    font-size: 0.68rem;
    font-weight: 800;
  }

  .dashboard-mobile-information__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .dashboard-mobile-detectives-guild__search .input-group,
  .dashboard-mobile-catalog-search .input-group {
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-detectives-guild__search .input-group-text,
  .dashboard-mobile-detectives-guild__search .form-control,
  .dashboard-mobile-catalog-search .input-group-text,
  .dashboard-mobile-catalog-search .form-control {
    background: transparent;
    border: 0;
    color: #111;
  }

  .dashboard-mobile-detectives-guild__search .input-group-text,
  .dashboard-mobile-catalog-search .input-group-text {
    padding-inline: 0.8rem 0.35rem;
  }

  .dashboard-mobile-detectives-guild__search .form-control,
  .dashboard-mobile-catalog-search .form-control {
    min-width: 0;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: none !important;
  }

  .dashboard-mobile-detectives-guild__search .btn,
  .dashboard-mobile-catalog-search .btn {
    border-radius: 0 !important;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .dashboard-mobile-detectives-guild__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .dashboard-mobile-detectives-guild__item .detective-card {
    min-height: 100%;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__body {
    padding: 0.8rem 0.55rem 0.7rem;
    background: transparent !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card-frame {
    background-image: none !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__corners {
    min-block-size: auto;
    margin-bottom: 0.35rem !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__corner-logo {
    max-inline-size: 2.1rem;
    block-size: 2.1rem;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__corner-rank-image {
    inline-size: 1.8rem;
    block-size: 1.8rem;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__name {
    color: #111 !important;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__date,
  .dashboard-mobile-detectives-guild__item .detective-card__rank-title {
    color: #6b7280 !important;
    font-size: 0.64rem;
  }

  .dashboard-mobile-detectives-guild__item .detective-card h6,
  .dashboard-mobile-detectives-guild__item .detective-card .text-body-secondary,
  .dashboard-mobile-detectives-guild__item .detective-card .investigator-guild-meta,
  .dashboard-mobile-detectives-guild__item .detective-card .small {
    color: #6b7280 !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card .badge.bg-label-secondary {
    background-color: rgba(17, 17, 17, 0.06) !important;
    color: #374151 !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__avatar-box {
    inline-size: 3rem;
    block-size: 3rem;
    --detective-avatar-pixel-line: 3px;
  }

  .dashboard-mobile-detectives-guild .detective-card__avatar-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__rank {
    margin-bottom: 0.35rem !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__avatar-media {
    padding: 0.2rem;
  }

  .dashboard-mobile-detectives-guild__item .js-detective-card-flag .country-flag-group {
    gap: 0;
  }

  .dashboard-mobile-detectives-guild__item .js-detective-card-flag .country-flag--square,
  .dashboard-mobile-detectives-guild__item .js-detective-card-flag .fi {
    width: 0.95rem;
    height: 0.95rem;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__rank-title {
    min-height: 2rem;
  }

  .dashboard-mobile-detectives-guild__item .detective-card__friend-stats,
  .dashboard-mobile-detectives-guild__item .detective-card__friend-stats li,
  .dashboard-mobile-detectives-guild__item .investigator-friendship-status,
  .dashboard-mobile-detectives-guild__item .investigator-friendship-label {
    color: #374151 !important;
  }

  .dashboard-mobile-detectives-guild__item .detective-card .btn,
  .dashboard-mobile-detectives-guild__item .investigator-friendship-status {
    width: 100%;
    font-size: 0.68rem;
  }

  .dashboard-mobile-detectives-guild__item .investigator-friendship-status {
    flex-wrap: wrap;
    gap: 0.3rem !important;
  }

  .dashboard-mobile-detectives-guild__empty {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #6b7280;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .dashboard-mobile-site-challenges__tabs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
  }

  .dashboard-mobile-site-challenges__grid {
    gap: 0.9rem;
  }

  .dashboard-mobile-site-challenges__pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .dashboard-mobile-site-challenges .dashboard-tournament-column .dashboard-tournament-card--versus,
  .dashboard-mobile-my-challenges .dashboard-tournament-column .dashboard-tournament-card--versus {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.65rem 0.35rem;
  }

  .dashboard-mobile-site-challenges .dashboard-tournament-card__accept-btn,
  .dashboard-mobile-my-challenges .dashboard-tournament-card__accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 7.5rem;
    min-height: 0;
    height: auto !important;
    align-self: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: normal;
    line-height: 1.15;
    padding: 0.4rem 0.5rem;
  }

  .dashboard-mobile-site-challenges .dashboard-tournament-card__team-meta > form,
  .dashboard-mobile-my-challenges .dashboard-tournament-card__team-meta > form {
    display: inline-flex;
    width: auto;
    margin: 0;
  }

  .dashboard-mobile-site-challenges .dashboard-tournament-column .dashboard-tournament-card__team--left,
  .dashboard-mobile-my-challenges .dashboard-tournament-column .dashboard-tournament-card__team--left {
    justify-content: flex-start;
    align-items: center;
  }

  .dashboard-mobile-site-challenges .dashboard-tournament-column .dashboard-tournament-card__team-meta,
  .dashboard-mobile-my-challenges .dashboard-tournament-column .dashboard-tournament-card__team-meta {
    width: 100%;
    align-items: center;
  }

  .dashboard-mobile-site-teams .dashboard-top-teams__heading,
  .dashboard-mobile-site-teams .dashboard-teams-ranking__heading {
    color: #7c0000;
  }

  .dashboard-mobile-site-teams .dashboard-teams-ranking {
    margin-top: 1.1rem;
  }

  .dashboard-mobile-site-teams .dashboard-ranked-team-card {
    border-radius: 0.95rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .dashboard-mobile-site-teams .dashboard-ranked-team-card__name {
    font-size: 0.82rem;
  }

  .dashboard-mobile-site-teams .dashboard-ranked-team-card__member-name,
  .dashboard-mobile-site-teams .dashboard-ranked-team-card__member-level {
    font-size: 0.66rem;
  }

  .dashboard-mobile-site-teams__empty {
    padding: 1rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #6b7280;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .dashboard-mobile-information__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    min-width: 0;
    min-height: 100%;
    padding: 0.9rem 0.65rem 0.85rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.9rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #111;
  }

  .dashboard-mobile-information__card:active {
    transform: scale(0.98);
  }

  .dashboard-mobile-information__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    background: #7c0000;
    color: #fff;
    font-size: 1.25rem;
  }

  .dashboard-mobile-information__card-title {
    margin: 0;
    color: #111;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .dashboard-mobile-information__card-desc {
    margin: 0;
    color: #6b7280;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .dashboard-mobile-contact__form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .dashboard-mobile-contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .dashboard-mobile-contact__label {
    margin: 0;
    color: #111;
    font-size: 0.85rem;
    font-weight: 800;
  }

  .dashboard-mobile-contact__input {
    width: 100%;
    border-radius: 0.85rem !important;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #111 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .dashboard-mobile-contact__textarea {
    min-height: 9rem;
    resize: vertical;
  }

  .dashboard-mobile-contact__user-note {
    padding: 0.85rem 0.95rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(124, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.94);
    color: #7c0000;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.55;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .dashboard-mobile-contact__submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: 0.9rem;
    background: #7c0000;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(124, 0, 0, 0.28);
  }

  .dashboard-mobile-contact__submit:active {
    transform: scale(0.98);
  }

  .dashboard-mobile-info-text__panel {
    padding: 1rem 0.95rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #111;
  }

  .dashboard-mobile-info-text__panel .site-content-page__body,
  .dashboard-mobile-info-text__panel .site-content-page__body p,
  .dashboard-mobile-info-text__panel .site-content-page__body li,
  .dashboard-mobile-info-text__panel .site-content-page__body span,
  .dashboard-mobile-info-text__panel .site-content-page__body div,
  .dashboard-mobile-info-text__panel .site-content-page__body h1,
  .dashboard-mobile-info-text__panel .site-content-page__body h2,
  .dashboard-mobile-info-text__panel .site-content-page__body h3,
  .dashboard-mobile-info-text__panel .site-content-page__body h4,
  .dashboard-mobile-info-text__panel .site-content-page__body h5,
  .dashboard-mobile-info-text__panel .site-content-page__body h6 {
    color: #111 !important;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .dashboard-mobile-info-text__panel .site-content-page__body a {
    color: #7c0000 !important;
    font-weight: 700;
  }

  .dashboard-mobile-info-text__empty,
  .dashboard-mobile-info-text__panel .site-content-page__empty {
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .dashboard-mobile-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .dashboard-mobile-faq__item {
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 0.9rem !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-faq__button {
    padding: 0.9rem 1rem !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    box-shadow: none !important;
  }

  .dashboard-mobile-faq__button:not(.collapsed) {
    color: #7c0000 !important;
    background: rgba(124, 0, 0, 0.06) !important;
  }

  .dashboard-mobile-faq__button:focus {
    box-shadow: none !important;
  }

  .dashboard-mobile-faq__body {
    padding: 0.85rem 1rem 1rem !important;
    color: #374151 !important;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.65;
  }

  .dashboard-mobile-ranks__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .dashboard-mobile-ranks__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.95rem 0.7rem 0.85rem;
    text-align: center;
    border-radius: 0.9rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .dashboard-mobile-ranks__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
  }

  .dashboard-mobile-ranks__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .dashboard-mobile-ranks__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.75rem;
    background: #7c0000;
    color: #fff;
    font-size: 1.35rem;
  }

  .dashboard-mobile-ranks__name {
    margin: 0;
    color: #111;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .dashboard-mobile-ranks__points {
    margin: 0;
    color: #6b7280;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .dashboard-mobile-issues__filters {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }

  .dashboard-mobile-issues__filters::-webkit-scrollbar {
    display: none;
  }

  .dashboard-mobile-issues__filters .dashboard-tournament-tabs__btn {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
    text-decoration: none;
  }

  .dashboard-mobile-issues__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .mobile-issue-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .mobile-issue-card__media-wrap {
    position: relative;
  }

  .mobile-issue-card__badge {
    position: absolute;
    top: 0.35rem;
    inset-inline-start: 0.35rem;
    z-index: 2;
    padding: 0.12rem 0.4rem;
    border-radius: 0.25rem;
    background: #7c0000;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-issue-card__media {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    background: #ececec;
    overflow: hidden;
  }

  .mobile-issue-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-issue-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #9ca3af;
    font-size: 2rem;
  }

  .mobile-issue-card__soon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
  }

  .mobile-issue-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.55rem 0.55rem 0.65rem;
  }

  .mobile-issue-card__title {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
  }

  .mobile-issue-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .mobile-issue-card__date {
    margin: 0;
    color: #6b7280;
    font-size: 0.65rem;
    font-weight: 700;
  }

  .mobile-issue-card__prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem 0.4rem;
  }

  .mobile-issue-card__price {
    font-weight: 800;
    line-height: 1.1;
  }

  .mobile-issue-card__price--old {
    color: #9ca3af;
    font-size: 0.68rem;
    text-decoration: line-through;
  }

  .mobile-issue-card__price--new {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #7c0000;
    font-size: 0.85rem;
  }

  .mobile-issue-card__currency {
    width: 0.8rem;
    height: 0.8rem;
  }

  .mobile-issue-card__details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    min-height: 1.85rem;
    padding: 0.3rem 0.45rem;
    border-radius: 0.45rem;
    background: #1f1f1f;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-issue-card__soon-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    min-height: 1.85rem;
    padding: 0.3rem 0.45rem;
    border-radius: 0.45rem;
    background: rgba(124, 0, 0, 0.12);
    color: #7c0000;
    font-size: 0.68rem;
    font-weight: 800;
  }
}

/* Products page — mobile category slider (legacy desktop section fallback) */
.product-category-slider {
  display: none;
}
