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

html {
  font-size: 14px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #0a0b0f;
  color: #f3f4f6;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  color: #29b6f6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

img, svg {
  display: block;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0a0b0f;
}

::-webkit-scrollbar-thumb {
  background: #1e2130;
  border-radius: 3px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 8px;
}
.section-label--light {
  color: #9ca3af;
}
.section-label span {
  color: #4b5563;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: #f59e0b;
  color: #000;
}
.btn--primary:hover {
  background: #fbbf24;
}
.btn--ghost {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  color: #f59e0b;
}
.btn--ghost:hover {
  background: rgba(245, 158, 11, 0.2);
}
.btn--outline {
  background: transparent;
  border-color: rgba(41, 182, 246, 0.3);
  color: #29b6f6;
  justify-content: center;
  width: 100%;
  padding: 7px;
}
.btn--outline:hover {
  border-color: rgba(41, 182, 246, 0.55);
  color: #fbbf24;
}
.btn svg {
  width: 12px;
  height: 12px;
}

.card {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 12px;
}
.card--hover {
  transition: border-color 150ms ease;
  cursor: pointer;
}
.card--hover:hover {
  border-color: rgba(41, 182, 246, 0.4);
}

.input {
  width: 100%;
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 12px;
  padding: 11px 44px 11px 18px;
  color: #d1d5db;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  transition: border-color 150ms ease;
}
.input::placeholder {
  color: #4b5563;
}
.input:focus {
  outline: none;
  border-color: rgba(41, 182, 246, 0.5);
}
.input--sm {
  padding: 6px 8px;
  font-size: 12px;
  border-radius: 5px;
  background: #1a1d28;
  border-color: #1e2130;
  padding-right: 8px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #1a1d28;
  color: #d1d5db;
}
.tag--platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.filter-tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #1a1d28;
  color: #6b7280;
}

.progress {
  height: 7px;
  background: #1a1d28;
  border-radius: 999px;
  overflow: hidden;
}
.progress--sm {
  height: 5px;
}
.progress__bar {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}
.progress__bar--green {
  background: #10b981;
}
.progress__bar--amber {
  background: #f59e0b;
}
.progress__bar--blue {
  background: #3b82f6;
}
.progress__bar--purple {
  background: #8b5cf6;
}
.progress__bar--red {
  background: #ef4444;
}
.progress__bar--orange {
  background: #f97316;
}
.progress__bar--indigo {
  background: #6366f1;
}

.progress-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.progress-row__header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #d1d5db;
}
.progress-row__header strong {
  font-weight: 700;
}
.progress-row__header strong.green {
  color: #10b981;
}
.progress-row__header strong.amber {
  color: #29b6f6;
}
.progress-row__header strong.blue {
  color: #3b82f6;
}
.progress-row__header strong.purple {
  color: #8b5cf6;
}
.progress-row__header strong.red {
  color: #ef4444;
}

.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avatar--md {
  width: 32px;
  height: 32px;
  font-size: 12px;
}
.avatar--a {
  background: linear-gradient(135deg, #6366f1, #7c3aed);
}
.avatar--b {
  background: linear-gradient(135deg, #3b82f6, #0891b2);
}
.avatar--c {
  background: linear-gradient(135deg, #10b981, #0d9488);
}
.avatar--d {
  background: linear-gradient(135deg, #ef4444, #e11d48);
}
.avatar--e {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.avatar--f {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}
.avatar--g {
  background: linear-gradient(135deg, #f43f5e, #be185d);
}
.avatar--h {
  background: linear-gradient(135deg, #14b8a6, #15803d);
}
.avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.rank-pos {
  width: 20px;
  text-align: center;
  font-size: 11px;
  color: #4b5563;
  flex-shrink: 0;
}
.rank-pos--gold {
  color: #29b6f6;
  font-size: 14px;
}

.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
}

.layout-left {
  min-width: 0;
}

.layout-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-section {
  margin-bottom: 16px;
}

.site-header {
  background: #0d0f16;
  border-bottom: 1px solid #1e2130;
  padding: 10px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.mobile-header {
  display: none;
}
.mobile-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
@media (max-width: 599px) {
  .mobile-header__top .logo {
    flex-shrink: 0;
  }
  .mobile-header__top .mobile-header__actions {
    margin-left: auto;
    order: 2;
  }
}
.mobile-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mobile-header__top-search {
  display: none;
  flex: 1;
  padding: 0 12px;
}
@media (min-width: 600px) {
  .mobile-header__top-search {
    display: block;
  }
}
.mobile-header__search {
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
.mobile-header__search .search-bar {
  width: 100%;
}
@media (min-width: 600px) {
  .mobile-header__search {
    display: none;
  }
}
.mobile-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
}
@media (max-width: 599px) {
  .mobile-header__nav {
    padding: 10px 10px 0 10px;
  }
}

.mobile-nav-pill {
  flex: 0 0 calc((100% - 16px) / 3);
}
@media (min-width: 600px) {
  .mobile-nav-pill {
    flex: 0 0 auto;
  }
}
.mobile-nav-pill {
  text-align: center;
  padding: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d1d5db;
  background: #1a1d28;
  border: 1px solid #1e2130;
  border-radius: 8px;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
  box-sizing: border-box;
}
.mobile-nav-pill:hover {
  color: #29b6f6;
  border-color: rgba(41, 182, 246, 0.4);
  background: rgba(41, 182, 246, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo__text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f4f6;
}
.logo__text span {
  color: #29b6f6;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  transition: color 150ms ease;
}
.nav__link:hover {
  color: #29b6f6;
}

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

.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
  transition: color 150ms ease;
  cursor: pointer;
}
.profile-btn:hover {
  color: #f3f4f6;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px 24px;
  background: #0a0b0f;
}
.home-hero__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.home-hero__logo-text {
  font-size: 33px;
  font-weight: 800;
  color: #f3f4f6;
  letter-spacing: -0.5px;
}
.home-hero__logo-text span {
  color: #29b6f6;
}
.home-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #f3f4f6;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.home-hero__sub {
  font-size: 16px;
  color: #f59e0b;
  max-width: 480px;
  margin: 0 0 8px;
  line-height: 1.6;
}

.search-section {
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  background: #0a0b0f;
}
.search-section .search-bar {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.search-section .search-bar__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #6b7280;
  transition: color 150ms ease;
  display: flex;
  cursor: pointer;
}
.search-section .search-bar__icon:hover {
  color: #29b6f6;
}
.search-section .search-bar__icon svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  background: #0d0f16;
  border-top: 1px solid #1e2130;
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-col__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  font-size: 12px;
  color: #4b5563;
  transition: color 150ms ease;
}
.footer-col ul a:hover {
  color: #d1d5db;
}

.footer-genres {
  min-width: 0;
}
.footer-genres__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px 20px;
}
.footer-genres__list a {
  font-size: 12px;
  color: #4b5563;
  transition: color 150ms ease;
}
.footer-genres__list a:hover {
  color: #d1d5db;
}
.footer-genres__all {
  color: #29b6f6 !important;
  font-weight: 600;
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #1e2130;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-copyright__text {
  font-size: 18px;
  color: #4b5563;
  margin-left: 16px;
}
.footer-copyright__brand {
  font-size: 24px;
  font-weight: 800;
  color: #f3f4f6;
}
.footer-copyright__brand span {
  color: #29b6f6;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 32px;
}
.social-icons a {
  transition: color 150ms ease;
  display: flex;
}
.social-icons a svg {
  width: 32px;
  height: 32px;
}
.social-icons a.discord {
  color: #5865f2;
}
.social-icons a.reddit {
  color: #f97316;
}
.social-icons a.youtube {
  color: #ff0000;
}
.social-icons a.tiktok {
  color: #ec4899;
}
.social-icons a.linkedin {
  color: #0a66c2;
}
.social-icons a:hover {
  color: #f3f4f6;
}

.widget {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 12px;
}
.widget__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 10px;
}
.widget__more {
  font-size: 11px;
  color: #4b5563;
  margin-top: 8px;
  transition: color 150ms ease;
  cursor: pointer;
  display: inline-block;
}
.widget__more:hover {
  color: #9ca3af;
}

.dev-log-feed__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #4b5563;
  margin-bottom: 4px;
}
.dev-log-feed__title {
  font-size: 12px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 4px;
}
.dev-log-feed__body {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 8px;
}
.dev-log-feed__images {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.dev-log-feed__images div {
  flex: 1;
  height: 48px;
  border-radius: 5px;
}
.dev-log-feed__images div:nth-child(1) {
  background: linear-gradient(135deg, #1f2937, #111827);
}
.dev-log-feed__images div:nth-child(2) {
  background: linear-gradient(135deg, #374151, #1f2937);
}
.dev-log-feed__images div:nth-child(3) {
  background: linear-gradient(135deg, #1f2937, #374151);
}
.dev-log-feed__reactions {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: #4b5563;
}

.market-pulse__label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 2px;
}
.market-pulse__live {
  color: #10b981;
  font-weight: 600;
}
.market-pulse__value {
  font-size: 30px;
  font-weight: 900;
  color: #f3f4f6;
  margin: 4px 0;
}
.market-pulse__chart {
  width: 100%;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rank-item__name {
  flex: 1;
  font-size: 12px;
  color: #d1d5db;
}
.rank-item__score {
  font-size: 11px;
  color: #6b7280;
}
.rank-item__score--highlight {
  color: #10b981;
  font-weight: 700;
}

.jam-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jam-item__name {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.discussion-list {
  display: flex;
  flex-direction: column;
}

.discussion-item {
  padding: 6px 0;
  border-bottom: 1px solid #1e2130;
}
.discussion-item:last-child {
  border-bottom: none;
}
.discussion-item__title {
  font-size: 12px;
  color: #d1d5db;
  transition: color 150ms ease;
  cursor: pointer;
}
.discussion-item__title:hover {
  color: #29b6f6;
}
.discussion-item__meta {
  font-size: 11px;
  color: #4b5563;
}

.home-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.home-section {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.home-section:last-child {
  margin-bottom: 0;
}

.indie-panel {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
  background: #12141a;
}

.indie-grid--wide {
  grid-template-columns: repeat(6, 1fr);
}

.upcoming-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
  background: #12141a;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.section-head__title {
  font-size: 28px;
  font-weight: 900;
  color: #29b6f6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-head__wip {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1205;
  background: #29b6f6;
  border-radius: 999px;
  vertical-align: middle;
}
.section-head__controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a1d28;
  border: 1px solid #1e2130;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.nav-arrow:hover:not(:disabled) {
  background: rgba(41, 182, 246, 0.12);
  color: #29b6f6;
  border-color: rgba(41, 182, 246, 0.35);
}
.nav-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  gap: 2px;
}
.carousel-dots span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.carousel-dots span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b5563;
  transition: background 150ms ease, width 150ms ease;
}
.carousel-dots span.active::before {
  background: #f59e0b;
  width: 14px;
  border-radius: 3px;
}
.carousel-dots span:hover:not(.active)::before {
  background: #9ca3af;
}

.hot-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 8px;
}

.hot-featured {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid #1e2130;
}
.hot-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.6) saturate(0.8);
  transition: filter 0.3s, transform 0.3s;
  display: block;
}
.hot-featured:hover .hot-featured__img {
  filter: brightness(0.75) saturate(0.9);
  transform: scale(1.04);
}
.hot-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 0%, rgba(7, 10, 18, 0.35) 50%, rgba(7, 10, 18, 0.1) 100%);
}
.hot-featured__deal {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  z-index: 1;
}
.hot-featured__body {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
}
.hot-featured__studio {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.hot-featured__title {
  font-size: 32px;
  font-weight: 900;
  color: #f3f4f6;
  line-height: 1.1;
  margin-bottom: 5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hot-featured__promo {
  font-size: 14px;
  color: #f59e0b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 340px;
}

.hot-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  border: 1px solid #1e2130;
  transition: border-color 150ms ease;
}
.hot-card:hover {
  border-color: rgba(41, 182, 246, 0.4);
}
.hot-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.65) saturate(0.8);
  transition: filter 0.3s, transform 0.3s;
  display: block;
}
.hot-card:hover .hot-card__img {
  filter: brightness(0.8) saturate(0.9);
  transform: scale(1.05);
}
.hot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 55%);
}
.hot-card__deal {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}
.hot-card__info {
  position: absolute;
  bottom: 8px;
  left: 9px;
  right: 9px;
  z-index: 1;
}
.hot-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.hot-card__dev {
  font-size: 14px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ant-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.ant-featured {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid #1e2130;
  transition: border-color 150ms ease;
}
.ant-featured:hover {
  border-color: rgba(41, 182, 246, 0.4);
}
.ant-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.65) brightness(0.55);
  transition: filter 0.4s, transform 0.4s;
  display: block;
}
.ant-featured:hover .ant-featured__img {
  filter: saturate(0.8) brightness(0.65);
  transform: scale(1.05);
}
.ant-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 0%, rgba(7, 10, 18, 0.3) 60%, rgba(7, 10, 18, 0.05) 100%);
}
.ant-featured__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 14px 12px;
}
.ant-featured__title {
  font-size: 26px;
  font-weight: 900;
  color: #f3f4f6;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 2px;
}
.ant-featured__genre {
  font-size: 16px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 8px;
}
.ant-featured__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.ant-stat__key {
  color: #4b5563;
  text-transform: uppercase;
}

.ant-stat__val {
  color: #d1d5db;
}

.ant-stat__sep {
  color: #1e2130;
}

.ant-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ant-chart {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1e2130;
  background: #12141a;
}
.ant-chart__header {
  position: relative;
  height: 150px;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.ant-chart__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.6) brightness(0.45);
  transition: filter 0.3s;
  display: block;
}
.ant-chart__header:hover .ant-chart__cover {
  filter: saturate(0.75) brightness(0.55);
}
.ant-chart__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 55%);
}
.ant-chart__headline {
  position: absolute;
  bottom: 9px;
  left: 12px;
  right: 12px;
  font-size: 24px;
  font-weight: 900;
  color: #f3f4f6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ant-chart__list {
  padding: 4px 0;
}
.ant-chart__row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  transition: background 150ms ease;
  text-decoration: none;
  cursor: pointer;
}
.ant-chart__row:hover {
  background: #1a1d28;
}
.ant-chart__rank {
  width: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
  text-align: center;
  flex-shrink: 0;
}
.ant-chart__thumb {
  width: 90px;
  height: 90px;
  border-radius: 5px;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  border: 1px solid #1e2130;
  display: block;
}
.ant-chart__info {
  flex: 1;
  min-width: 0;
}
.ant-chart__name {
  font-size: 16px;
  font-weight: 600;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ant-chart__dev {
  font-size: 13px;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ant-chart__score {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
  flex-shrink: 0;
}

.chart-panel {
  min-width: 0;
}
.chart-panel + .chart-panel {
  border-left: 1px solid #1e2130;
}
.chart-panel__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  padding: 9px 12px 7px;
  border-bottom: 1px solid #1e2130;
}
.chart-panel__wip {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1205;
  background: #29b6f6;
  border-radius: 999px;
  vertical-align: middle;
}

.chart-list {
  padding: 4px 0;
}

.chart-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  transition: background 150ms ease;
  text-decoration: none;
  cursor: pointer;
}
.chart-item:hover {
  background: #1a1d28;
}
.chart-item__rank {
  width: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
  text-align: center;
  flex-shrink: 0;
}
.chart-item__thumb {
  width: 90px;
  height: 90px;
  border-radius: 5px;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  border: 1px solid #1e2130;
  display: block;
}
.chart-item__info {
  flex: 1;
  min-width: 0;
}
.chart-item__name {
  font-size: 16px;
  font-weight: 600;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.chart-item__sub {
  font-size: 14px;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.chart-item__label {
  font-size: 13px;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chart-item__value {
  font-size: 16px;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1.2;
}
.chart-item__countdown {
  font-size: 16px;
  font-weight: 700;
  color: #29b6f6;
  flex-shrink: 0;
  white-space: nowrap;
}

.indie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  padding: 10px;
}

.indie-cover {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.indie-cover__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1e2130;
  margin-bottom: 5px;
}
.indie-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s;
  display: block;
  filter: brightness(0.9);
}
.indie-cover:hover .indie-cover__img {
  transform: scale(1.06);
}
.indie-cover__name {
  font-size: 15px;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indie-cover__stars {
  font-size: 15px;
  color: #29b6f6;
  letter-spacing: -1px;
  line-height: 1.2;
}
.indie-cover__meta {
  font-size: 14px;
  color: #4b5563;
}

.soc {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 14px 16px 10px;
  margin-bottom: 10px;
}
.soc__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4b5563;
  margin-bottom: 10px;
}
.soc__body {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 110px;
}
.soc__y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2px;
  flex-shrink: 0;
  width: 38px;
}
.soc__y-label {
  font-size: 10px;
  color: #4b5563;
  text-align: right;
  line-height: 1;
}
.soc__graph {
  flex: 1;
  min-width: 0;
  position: relative;
  margin: 0 8px;
}
.soc__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.soc__grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #1e2130;
  transform: translateY(50%);
}
.soc__peak-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(163, 230, 53, 0.65);
  border-top: 1px dashed rgba(163, 230, 53, 0.65);
  transform: translateY(50%);
}
.soc__svg {
  display: block;
  width: 100%;
  height: 100%;
}
.soc__stats {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 20px;
  border-left: 1px solid #1e2130;
  min-width: 170px;
}
.soc__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.soc__stat-val {
  font-size: 26px;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1;
  letter-spacing: -0.02em;
}
.soc__stat-val--skeleton {
  display: block;
  width: 130px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1a1d28 25%, #12141a 50%, #1a1d28 75%);
  background-size: 400px 100%;
  animation: steam-shimmer 1.4s ease-in-out infinite;
}
.soc__stat-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #29b6f6;
}
.soc__stat-lbl--peak {
  color: #a3e635;
}

.steam-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10b981;
}
.steam-live-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: steam-pulse 2s ease-in-out infinite;
}

@keyframes steam-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}
.steam-chart-panel {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
}
.steam-chart-panel__header {
  display: grid;
  grid-template-columns: 36px 100px 1fr 140px 140px 100px;
  align-items: center;
  gap: 0 12px;
  padding: 7px 14px;
  border-bottom: 1px solid #1e2130;
  background: #1a1d28;
}
.steam-chart-panel__col {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b5563;
}
.steam-chart-panel__col--right {
  text-align: right;
}
.steam-chart-panel__row {
  display: grid;
  grid-template-columns: 36px 100px 1fr 140px 140px 100px;
  align-items: center;
  gap: 0 12px;
  padding: 6px 14px;
  border-bottom: 1px solid #1e2130;
  text-decoration: none;
  transition: background 150ms ease;
}
.steam-chart-panel__row:last-child {
  border-bottom: none;
}
.steam-chart-panel__row:hover {
  background: #1a1d28;
}

.steam-rank {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  color: #4b5563;
}
.steam-rank--1 {
  color: #f59e0b;
}
.steam-rank--2 {
  color: #9ca3af;
}
.steam-rank--3 {
  color: #cd7c3a;
}

.steam-thumb {
  width: 100px;
  height: 46px;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #1e2130;
  display: block;
}

.steam-name {
  font-size: 15px;
  font-weight: 600;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.steam-players-now {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
}
.steam-players-now__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  flex-shrink: 0;
  animation: steam-pulse 2s ease-in-out infinite;
}

.steam-peak {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  text-align: right;
}

.steam-bar {
  height: 5px;
  background: #1a1d28;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #1e2130;
}
.steam-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #10b981 0%, rgba(16, 185, 129, 0.4) 100%);
}

@keyframes steam-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.steam-skeleton {
  display: inline-block;
  border-radius: 4px;
  background: linear-gradient(90deg, #1a1d28 25%, #12141a 50%, #1a1d28 75%);
  background-size: 800px 100%;
  animation: steam-shimmer 1.4s ease-in-out infinite;
}
.steam-skeleton--sm {
  width: 20px;
  height: 16px;
}
.steam-skeleton--thumb {
  width: 100px;
  height: 44px;
  border-radius: 5px;
}
.steam-skeleton--name {
  width: 55%;
  height: 16px;
}
.steam-skeleton--num {
  width: 80px;
  height: 16px;
}
.steam-skeleton--bar {
  width: 90px;
  height: 5px;
  border-radius: 3px;
}

.steam-chart-panel__row--skeleton {
  pointer-events: none;
}

.support-col {
  border-left: 1px solid #1e2130;
}

.support-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.support-item__thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  border: 1px solid #1e2130;
  display: block;
}
.support-item__body {
  flex: 1;
  min-width: 0;
}
.support-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 2px;
}
.support-item__name {
  font-size: 15px;
  font-weight: 600;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.support-item__platform {
  font-size: 12px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.support-item__platform--patreon {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}
.support-item__pct {
  font-size: 13px;
  color: #4b5563;
  margin-top: 2px;
}
.support-item__btn {
  font-size: 13px;
  padding: 4px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0b0f;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 32px;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  text-decoration: none;
}
.auth-logo__text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f4f6;
}
.auth-logo__text span {
  color: #29b6f6;
}

.auth-title {
  font-size: 18px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 4px;
}

.auth-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 24px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.form-error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
}

.form-status {
  font-size: 12px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  width: 15px;
  height: 15px;
  accent-color: #29b6f6;
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox span {
  font-size: 12px;
  color: #9ca3af;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.auth-link {
  font-size: 12px;
  color: #6b7280;
  transition: color 150ms ease;
}
.auth-link:hover {
  color: #29b6f6;
}

.auth-divider {
  text-align: center;
  font-size: 11px;
  color: #4b5563;
  margin-top: 20px;
}
.auth-divider a, .auth-divider button {
  color: #29b6f6;
  font-weight: 600;
  transition: color 150ms ease;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.auth-divider a:hover, .auth-divider button:hover {
  color: #fbbf24;
}

.page-heading__title {
  font-size: 18px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 20px;
}

.inner-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 24px;
}

.dash-card {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 24px;
}
.dash-card__text {
  color: #9ca3af;
  font-size: 14px;
}

.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.section-card {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 24px;
}
.section-card--danger {
  border-color: rgba(239, 68, 68, 0.2);
}

.section-header {
  margin-bottom: 20px;
}
.section-header__title {
  font-size: 16px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 4px;
}
.section-header__title--danger {
  color: #ef4444;
}
.section-header__desc {
  font-size: 12px;
  color: #6b7280;
}

.form-notice {
  font-size: 12px;
  color: #9ca3af;
}

.form-saved {
  font-size: 12px;
  color: #10b981;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 150ms ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.btn--danger {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #ef4444;
}
.btn--danger:hover {
  background: rgba(239, 68, 68, 0.22);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.modal {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
}
.modal__title {
  font-size: 16px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 8px;
}
.modal__desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}
.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.game-page {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.game-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1e2130;
}
.game-hero__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #070a12 0%, #0e1422 60%, #18202e 100%);
}
.game-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.game-hero__backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.09;
  filter: blur(28px) saturate(0.5);
  transform: scale(1.1);
}
.game-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.game-hero__cover {
  width: 160px;
  height: 213px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  border: 1px solid #1e2130;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.game-hero__cover--empty {
  background: #12141a;
}
.game-hero__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.game-hero__breadcrumb {
  font-size: 11px;
  color: #6b7280;
}
.game-hero__breadcrumb a {
  color: #29b6f6;
}
.game-hero__breadcrumb a:hover {
  text-decoration: underline;
}
.game-hero__title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f3f4f6;
}
.game-hero__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.game-hero__year {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
}
.game-hero__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.game-hero__summary {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.65;
  max-width: 680px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-hero__stats {
  display: flex;
  gap: 28px;
  padding-top: 4px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat__value {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #f3f4f6;
}
.hero-stat__value--green {
  color: #10b981;
}
.hero-stat__value--amber {
  color: #29b6f6;
}
.hero-stat__value--blue {
  color: #3b82f6;
}
.hero-stat__value--red {
  color: #ef4444;
}
.hero-stat__value--grey {
  color: #9ca3af;
}
.hero-stat__label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 4px;
}
.status-badge--green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.status-badge--amber {
  background: rgba(41, 182, 246, 0.12);
  color: #29b6f6;
  border: 1px solid rgba(41, 182, 246, 0.3);
}
.status-badge--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.status-badge--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.status-badge--indigo {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.status-badge--red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-badge--grey {
  background: #1a1d28;
  color: #9ca3af;
  border: 1px solid #1e2130;
}

.game-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  padding: 24px 24px 0;
}

.game-main {
  min-width: 0;
}

.game-section {
  margin-bottom: 16px;
}

.game-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-summary {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.75;
}

.intel-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intel-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intel-row__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.intel-row__label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
}
.intel-row__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.intel-row__value {
  font-size: 14px;
  font-weight: 800;
  color: #f3f4f6;
}
.intel-row__value span {
  color: #6b7280;
  font-weight: 400;
  font-size: 12px;
}

.intel-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.intel-badge--green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.intel-badge--amber {
  background: rgba(41, 182, 246, 0.15);
  color: #29b6f6;
}
.intel-badge--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.intel-badge--indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}
.intel-badge--purple {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
}
.intel-badge--red {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.details-grid {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
}

.detail-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid #1e2130;
}
.detail-row:last-child {
  border-bottom: none;
}
.detail-row__key {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.detail-row__val {
  font-size: 14px;
  color: #d1d5db;
}
.detail-row__val--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.indie-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(139, 92, 246, 0.18);
  color: #8b5cf6;
  vertical-align: middle;
  margin-left: 4px;
}

.rating-circle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 8px 0 2px;
}

.rating-circle__track {
  fill: none;
  stroke: #1a1d28;
  stroke-width: 6;
}
.rating-circle__fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.7s ease;
}
.rating-circle__fill--green {
  stroke: #10b981;
}
.rating-circle__fill--amber {
  stroke: #29b6f6;
}
.rating-circle__fill--red {
  stroke: #ef4444;
}
.rating-circle__fill--grey {
  stroke: #4b5563;
}
.rating-circle__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rating-circle__score {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.rating-circle__score--green {
  color: #10b981;
}
.rating-circle__score--amber {
  color: #29b6f6;
}
.rating-circle__score--red {
  color: #ef4444;
}
.rating-circle__score--grey {
  color: #9ca3af;
}
.rating-circle__sub {
  font-size: 9px;
  color: #4b5563;
  margin-top: 1px;
}
.rating-circle__verdict {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.company-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.company-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  text-transform: uppercase;
}
.company-card__avatar--pub {
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
}
.company-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #f3f4f6;
}
.company-card__sub {
  font-size: 11px;
  color: #6b7280;
  margin-top: 1px;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.platform-item {
  font-size: 12px;
  color: #d1d5db;
  padding: 6px 10px;
  background: #1a1d28;
  border-radius: 5px;
  border: 1px solid #1e2130;
}

.series-name {
  font-size: 14px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 4px;
}

.game-top {
  display: grid;
  grid-template-columns: 2fr 4fr 3fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "cover header  details" "cover stats   details" "cover summary details";
  column-gap: 20px;
  row-gap: 14px;
  padding: 24px 24px 0;
  align-items: start;
}

.game-top__cover {
  grid-area: cover;
}

.game-top__header {
  grid-area: header;
}

.game-summary-box {
  grid-area: summary;
}

.game-stats {
  grid-area: stats;
}

.details-panel {
  grid-area: details;
}

.game-top__cover img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #1e2130;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.game-top__cover--empty {
  aspect-ratio: 3/4;
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 12px;
}

.game-top__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.game-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f3f4f6;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.game-year {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
}

.game-summary-box {
  border: 1px solid #1e2130;
  border-radius: 12px;
  padding: 14px;
  background: rgba(18, 20, 26, 0.5);
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.7;
}

.game-stats {
  display: flex;
  gap: 24px;
}

.platform-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
}
.platform-icon__abbr {
  font-size: 9px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
}

.game-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.game-stat__value {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #f3f4f6;
}
.game-stat__value--green {
  color: #10b981;
}
.game-stat__value--amber {
  color: #29b6f6;
}
.game-stat__value--blue {
  color: #3b82f6;
}
.game-stat__value--purple {
  color: #8b5cf6;
}
.game-stat__value--grey {
  color: #9ca3af;
}
.game-stat__label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-value::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}
.details-panel {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
}
.details-panel__header {
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
.details-panel__header p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}
.details-panel__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
.details-panel__row:last-child {
  border-bottom: none;
}
.details-panel__key {
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.details-panel__val {
  font-size: 12px;
  color: #d1d5db;
  line-height: 1.5;
}
.details-panel__val--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.game-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px 24px 40px;
  align-items: start;
}

.game-bottom__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wit-panel {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
}
.wit-panel__header {
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
.wit-panel__header p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f59e0b;
}
.wit-panel__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wit-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wit-panel__label {
  font-size: 12px;
  color: #9ca3af;
}
.wit-panel__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wit-panel__score {
  font-size: 14px;
  font-weight: 800;
  color: #f3f4f6;
}
.wit-panel__score span {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
}

.text-panel {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
}
.text-panel__header {
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
.text-panel__header p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}
.text-panel__body {
  padding: 14px;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.75;
}

.similar-panel {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 16px;
  overflow: hidden;
}
.similar-panel__header {
  padding: 10px 14px;
  border-bottom: 1px solid #1e2130;
}
.similar-panel__header p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}
.similar-panel__grid {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.similar-card {
  display: block;
  text-decoration: none;
}
.similar-card__cover {
  width: 100%;
  aspect-ratio: 264/374;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1d28;
  background-size: cover;
  background-position: center center;
  border: 1px solid #1e2130;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.similar-card__cover:hover {
  transform: scale(1.04);
}
.similar-card__empty {
  font-size: 11px;
  color: #4b5563;
  padding: 8px;
  text-align: center;
}
.similar-card__title {
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  transition: color 150ms ease;
}
.similar-card:hover .similar-card__title {
  color: #f3f4f6;
}

@media (max-width: 768px) {
  .game-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "cover   header" "cover   summary" "stats   stats" "details details";
    column-gap: 14px;
    row-gap: 12px;
    padding: 16px 16px 0;
  }
  .game-bottom {
    grid-template-columns: 1fr;
    padding: 16px 16px 40px;
  }
}
.search-bar-wrap {
  position: relative;
}
.search-bar-wrap--hero {
  width: 100%;
  max-width: 560px;
}
.search-bar-wrap--compact {
  width: 240px;
}

.search-bar {
  position: relative;
}
.search-bar__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #6b7280;
  transition: color 150ms ease;
  display: flex;
  cursor: pointer;
}
.search-bar__icon:hover {
  color: #29b6f6;
}
.search-bar__icon svg {
  width: 16px;
  height: 16px;
}

.input--compact {
  padding: 7px 36px 7px 12px;
  font-size: 12px;
  border-radius: 8px;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.spin {
  animation: spin 0.8s linear infinite;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #12141a;
  border: 1px solid rgba(41, 182, 246, 0.25);
  border-radius: 12px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
}
.search-result:hover, .search-result--active {
  background: #1a1d28;
}
.search-result__cover {
  width: 34px;
  height: 46px;
  border-radius: 5px;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  border: 1px solid #1e2130;
}
.search-result__cover--empty {
  background: #1a1d28;
}
.search-result__info {
  flex: 1;
  min-width: 0;
}
.search-result__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.search-result__genre {
  font-size: 11px;
  color: #6b7280;
}
.search-result__status {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-result__status--green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}
.search-result__status--amber {
  background: rgba(41, 182, 246, 0.12);
  color: #29b6f6;
}
.search-result__status--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}
.search-result__status--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}
.search-result__status--indigo {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
}
.search-result__status--red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.search-result__status--grey {
  background: #1a1d28;
  color: #6b7280;
}
.search-result__arrow {
  width: 14px;
  height: 14px;
  color: #4b5563;
  flex-shrink: 0;
  transition: color 150ms ease;
}
.search-result:hover .search-result__arrow, .search-result--active .search-result__arrow {
  color: #29b6f6;
}

.search-dropdown__all {
  display: block;
  width: 100%;
  padding: 9px 12px;
  font-size: 11px;
  color: #9ca3af;
  background: #1a1d28;
  border-top: 1px solid #1e2130;
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease;
}
.search-dropdown__all strong {
  color: #f3f4f6;
}
.search-dropdown__all:hover {
  color: #29b6f6;
}

.header-search {
  flex: 1;
  max-width: 280px;
  margin: 0 24px;
}

.search-page {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.search-page__header {
  padding: 20px 24px 0;
  display: flex;
  justify-content: center;
}
.search-page__query-wrap {
  width: 100%;
  max-width: 640px;
}
.search-page__body {
  padding: 20px 24px 0;
}

.search-filters {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.search-filters__count {
  font-size: 12px;
  color: #9ca3af;
  padding-top: 6px;
  white-space: nowrap;
}
.search-filters__count strong {
  color: #f3f4f6;
  font-weight: 700;
}
.search-filters__count em {
  color: #29b6f6;
  font-style: normal;
}
.search-filters__controls {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-group__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #12141a;
  border: 1px solid #1e2130;
  color: #9ca3af;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: rgba(41, 182, 246, 0.4);
  color: #f3f4f6;
}
.filter-pill--active {
  background: rgba(41, 182, 246, 0.12);
  border-color: rgba(41, 182, 246, 0.4);
  color: #29b6f6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.result-card {
  display: flex;
  flex-direction: column;
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}
.result-card:hover {
  border-color: rgba(41, 182, 246, 0.4);
  transform: translateY(-2px);
}
.result-card__cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.result-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
}
.result-card__cover--empty {
  background: #1a1d28;
}
.result-card:hover .result-card__cover {
  transform: scale(1.04);
}
.result-card__score {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.result-card__score--green {
  background: rgba(11.9402985075, 138.0597014925, 96.2686567164, 0.85);
  color: #6ee7b7;
}
.result-card__score--amber {
  background: rgba(196.9291338583, 126.7125984252, 8.0708661417, 0.85);
  color: #fde68a;
}
.result-card__score--red {
  background: rgba(234.9802955665, 21.0197044335, 21.0197044335, 0.85);
  color: #fca5a5;
}
.result-card__body {
  padding: 8px 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.result-card__title {
  font-size: 12px;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.result-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.result-card__dev {
  font-size: 11px;
  color: #6b7280;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-card__sales {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
}
.result-card__sales span {
  color: #4b5563;
  font-weight: 400;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 24px;
  color: #4b5563;
}
.search-empty p {
  font-size: 16px;
  color: #9ca3af;
}
.search-empty p em {
  color: #29b6f6;
  font-style: normal;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.pagination__btn {
  font-size: 12px;
  font-weight: 600;
  color: #29b6f6;
  padding: 6px 14px;
  background: rgba(41, 182, 246, 0.08);
  border: 1px solid rgba(41, 182, 246, 0.25);
  border-radius: 8px;
  transition: background 150ms ease;
  text-decoration: none;
}
.pagination__btn:hover {
  background: rgba(41, 182, 246, 0.15);
}
.pagination__info {
  font-size: 12px;
  color: #6b7280;
}

.browse-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px 40px;
}
.browse-page__head {
  margin-bottom: 16px;
}
.browse-page__title {
  font-size: 18px;
  font-weight: 800;
  color: #f3f4f6;
}
.browse-page__sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}
.browse-page__sub strong {
  color: #f3f4f6;
  font-weight: 700;
}

.browse-filters {
  background: #12141a;
  border: 1px solid #1e2130;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.browse-filters__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.fms {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}
.fms--text {
  min-width: 200px;
}
.fms--range {
  min-width: 170px;
}
.fms--inline {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.fms__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4b5563;
  white-space: nowrap;
}
.fms__select, .fms__input, .fms__toggle {
  font-size: 12px;
  font-weight: 500;
  color: #f3f4f6;
  background: #1a1d28;
  border: 1px solid #1e2130;
  border-radius: 8px;
  padding: 7px 10px;
  transition: border-color 150ms ease, background 150ms ease;
  width: 100%;
}
.fms__select:hover, .fms__input:hover, .fms__toggle:hover {
  border-color: rgba(41, 182, 246, 0.4);
}
.fms__select:focus, .fms__input:focus, .fms__toggle:focus {
  outline: none;
  border-color: #29b6f6;
}
.fms__select {
  cursor: pointer;
  appearance: none;
  padding-right: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
}
.fms__input::placeholder {
  color: #4b5563;
}
.fms__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
}
.fms__toggle--active {
  border-color: rgba(41, 182, 246, 0.5);
  color: #29b6f6;
}
.fms__value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fms__chevron {
  width: 14px;
  height: 14px;
  color: #6b7280;
  flex-shrink: 0;
}
.fms__range {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fms__input--sm {
  padding: 7px 8px;
}
.fms__dash {
  color: #4b5563;
}

.fms__backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.fms__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  max-width: 280px;
  max-height: 300px;
  overflow-y: auto;
  background: #12141a;
  border: 1px solid rgba(41, 182, 246, 0.25);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  z-index: 100;
  padding: 6px;
}
.fms__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 8px;
  font-size: 11px;
  color: #6b7280;
  border-bottom: 1px solid #1e2130;
  margin-bottom: 4px;
}

.fms__clear {
  font-size: 11px;
  font-weight: 600;
  color: #29b6f6;
  background: none;
  cursor: pointer;
}
.fms__clear:hover {
  text-decoration: underline;
}

.fms__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  color: #d1d5db;
  transition: background 150ms ease;
}
.fms__option:hover {
  background: #1a1d28;
}
.fms__option input {
  accent-color: #29b6f6;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.fms__empty {
  padding: 8px;
  font-size: 11px;
  color: #4b5563;
}

.fac {
  position: relative;
}
.fac .fms__input {
  padding-right: 26px;
}
.fac__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: #6b7280;
  background: none;
  cursor: pointer;
  padding: 0 2px;
}
.fac__clear:hover {
  color: #f3f4f6;
}
.fac__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 200px;
  max-height: 280px;
  overflow-y: auto;
  background: #12141a;
  border: 1px solid rgba(41, 182, 246, 0.25);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  z-index: 100;
  padding: 4px;
}
.fac__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 7px 9px;
  border-radius: 5px;
  font-size: 12px;
  color: #d1d5db;
  background: none;
  cursor: pointer;
  transition: background 150ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fac__option:hover {
  background: #1a1d28;
  color: #f3f4f6;
}
.fac__msg {
  padding: 8px 9px;
  font-size: 11px;
  color: #4b5563;
}

.browse-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.browse-meta__count {
  font-size: 12px;
  color: #9ca3af;
}
.browse-meta__count strong {
  color: #f3f4f6;
  font-weight: 700;
}
.browse-meta__clear {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #29b6f6;
  background: rgba(41, 182, 246, 0.08);
  border: 1px solid rgba(41, 182, 246, 0.25);
  border-radius: 999px;
  padding: 3px 10px;
  cursor: pointer;
  transition: background 150ms ease;
}
.browse-meta__clear:hover {
  background: rgba(41, 182, 246, 0.15);
}

@media (max-width: 1200px) {
  .site-header__inner {
    display: none;
  }
  .mobile-header {
    display: block;
  }
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .indie-panel {
    grid-template-columns: 1fr;
  }
  .indie-panel .support-col {
    border-left: none;
    border-top: 1px solid #1e2130;
  }
  .indie-grid--wide {
    grid-template-columns: repeat(3, 1fr);
  }
  .upcoming-panel {
    grid-template-columns: 1fr;
  }
  .hot-row {
    grid-template-columns: 1fr;
  }
  .hot-row .hot-grid {
    height: auto;
    grid-template-rows: auto;
  }
  .hot-featured {
    height: 260px;
  }
  .ant-top-row {
    grid-template-columns: 1fr;
  }
  .ant-bottom-row {
    grid-template-columns: 1fr;
  }
  .section-head__title {
    font-size: 22px;
  }
  .game-top {
    grid-template-columns: 160px 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "header  header" "cover   summary" "stats   stats" "details details";
    padding: 20px 20px 0;
    column-gap: 16px;
    row-gap: 14px;
  }
  .game-bottom {
    grid-template-columns: 2fr 1fr;
    padding: 16px 20px 32px;
  }
}
@media (max-width: 600px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .logo {
    order: 1;
    flex: 1;
  }
  .header-actions {
    order: 2;
  }
  .header-search {
    display: none;
  }
  .nav {
    order: 3;
    width: 100%;
    gap: 4px;
    border-top: 1px solid #1e2130;
    padding: 12px 0 0;
    margin-top: 12px;
    justify-content: space-between;
    align-items: stretch;
  }
  .nav__link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 0 4px;
    min-height: 36px;
    border-radius: 8px;
    background: #12141a;
    border: 1px solid #1e2130;
    color: #9ca3af;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  }
  .nav__link:hover {
    background: #1a1d28;
    border-color: rgba(41, 182, 246, 0.3);
    color: #29b6f6;
  }
  .home-hero {
    padding: 32px 16px 16px;
  }
  .home-hero__sub {
    font-size: 14px;
  }
  .home-content {
    padding: 0 12px 32px;
  }
  .site-footer {
    padding: 24px 16px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .indie-grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }
  .hot-featured {
    height: 200px;
  }
  .hot-featured__title {
    font-size: 22px;
  }
  .hot-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .ant-featured {
    height: 180px;
  }
  .ant-featured__title {
    font-size: 18px;
  }
  .ant-featured__stats {
    display: none;
  }
  .section-head__title {
    font-size: 18px;
  }
  .search-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-bar-wrap--compact {
    width: 100%;
  }
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  .game-top {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "cover   header" "cover   stats" "summary summary" "details details";
    padding: 16px;
    column-gap: 12px;
    row-gap: 12px;
  }
  .game-top__cover {
    display: block;
  }
  .game-summary-box {
    overflow: hidden;
  }
  .game-bottom {
    grid-template-columns: 1fr;
    padding: 14px 16px 32px;
    gap: 14px;
  }
  .similar-panel__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .game-title {
    font-size: 22px;
  }
  .game-stats {
    gap: 16px;
  }
  .steam-chart-panel__header,
  .steam-chart-panel__row {
    grid-template-columns: 24px 1fr auto auto;
    gap: 0 10px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .steam-thumb,
  .steam-bar,
  .steam-skeleton--thumb,
  .steam-skeleton--bar {
    display: none;
  }
  .steam-chart-panel__header .steam-chart-panel__col:nth-child(2),
  .steam-chart-panel__header .steam-chart-panel__col:nth-child(6) {
    display: none;
  }
}

/*# sourceMappingURL=app.css.map */
