@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Outfit&family=Protest+Riot&display=swap");
body {
  --text-color-primary: #212529;
  --primary-color: #f57c00;
  --secondary-color: #212529;
  --font-primary-color: #424242;
  --font-secondary-color: #000;
  --nav-link-color: var(--bs-dark);
  font-family: "Poppins", sans-serif;
}

.header .navbar-brand img {
  max-width: 140px;
  height: auto;
}
@media (max-width: 575px) {
  .header .navbar-brand img {
    max-width: 120px;
  }
}
@media (max-width: 400px) {
  .header .navbar-brand img {
    max-width: 100px;
  }
}
.header .nav-link {
  color: var(--bs-gray-800);
}
.header .nav-link:hover {
  color: var(--primary-color);
}
.header .navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: 9;
}
.header .nav-item .nav-link {
  position: relative;
  transition: all 200ms linear;
}
.header .nav-item .nav-link:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  top: 27px;
  width: 100%;
  height: 3px;
  content: "";
  background-color: var(--primary-color);
  opacity: 0;
  transition: all 200ms linear;
}
.header .nav-item .nav-link:hover:after {
  bottom: 0;
  opacity: 1;
}
.header .nav-item .nav-link.active:hover:after {
  opacity: 0;
}
.header .nav-item .nav-link.select:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  top: 27px;
  width: 100%;
  height: 3px;
  content: "";
  background-color: var(--primary-color);
  opacity: 1;
}
.header .dropdown .dropdown-menu {
  margin-top: 0.125rem;
  transition: all 0.3s ease-in-out;
}
.header .dropdown .dropdown-item {
  color: var(--bs-dropdown-color);
}
.header .dropdown .dropdown-item:hover {
  color: var(--primary-color);
}
.header .dropdown .dropdown-item:active {
  color: #FFF;
  background-color: var(--primary-color);
}
.header .dropdown .dropdown-toggle::after {
  display: none;
}
.header .primary-btn-menu {
  background-color: var(--secondary-color);
}
.header .primary-btn-menu:hover {
  background-color: var(--primary-color);
}

.hero h1 {
  font-weight: 500;
}
.hero p {
  font-size: 18px;
  line-height: 1.8;
}
.hero p strong {
  font-weight: 500;
}
.hero .primary-btn {
  background-color: var(--primary-color);
  color: #fff;
}
.hero .hero-content .hero-badge {
  font-size: 13px;
  font-weight: 600;
}
.hero .primary-btn {
  background-color: var(--primary-color);
  transform: translateY(0px);
  transition: all 0.3s;
}
.hero .primary-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(5px);
}
.hero span a,
.hero .text-muted a {
  text-decoration: none;
  color: var(--primary-color);
}
.hero span a:hover,
.hero .text-muted a:hover {
  text-decoration: underline;
}
.hero .hero-awards img {
  max-height: 170px;
}
.hero .hero-awards .text-muted a {
  color: var(--secondary-color);
}
@media (max-width: 576px) {
  .hero img.publisher-logo {
    max-height: 25px;
  }
}
@media (min-width: 768px) {
  .hero img.publisher-logo {
    max-height: 50px;
  }
}
.hero.hero-modern {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid #e2e8f0;
}
.hero .hero-centered {
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero .hero-title .brand-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero .hero-title .brand-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.hero .hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #64748b;
  line-height: 1.5;
}
.hero .hero-stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #f8f9fa;
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}
.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.75rem;
}
.hero .stat-item i {
  font-size: 1rem;
  color: var(--primary-color);
  opacity: 0.9;
}
.hero .stat-item .stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
}
.hero .stat-item .stat-num .plus {
  color: var(--primary-color);
}
.hero .stat-item .stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.hero .stat-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
}
.hero .animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero .hero-stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .hero .stat-divider {
    display: none;
  }
  .hero .stat-item {
    padding: 0.25rem 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
  }
  .hero .stat-item .stat-num {
    font-size: 1.1rem;
  }
  .hero .stat-item .stat-label {
    font-size: 0.7rem;
  }
  .hero .stat-item i {
    font-size: 0.85rem;
  }
}

.content {
  background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
}
.content .about img.icon {
  max-width: 55px;
  max-height: 55px;
}
.content .about .badge {
  font-size: 13px;
  font-weight: 600;
}
.content .about .badge a {
  text-decoration: none;
  color: var(--primary-color);
}
.content .about .badge a:hover {
  text-decoration: underline;
}
.content .about p a {
  text-decoration: underline;
  color: var(--secondary-color);
}
.content .about p a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
.content .games-update-lists .head-title,
.content .games-awards .head-title,
.content .similar-publisher-games .head-title {
  background-color: #fff;
}
.content .games-update-lists .filters a,
.content .games-awards .filters a,
.content .similar-publisher-games .filters a {
  text-decoration: none;
}
.content .games-update-lists .filters a.active,
.content .games-awards .filters a.active,
.content .similar-publisher-games .filters a.active {
  text-decoration: underline;
  color: var(--font-secondary-color) !important;
  background-color: var(--primary-color) !important;
}
.content .games-update-lists h2,
.content .games-awards h2,
.content .similar-publisher-games h2 {
  color: var(--font-primary-color);
  text-align: center;
  position: relative;
  z-index: 1;
}
.content .games-update-lists h2:before,
.content .games-awards h2:before,
.content .similar-publisher-games h2:before {
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.content .games-update-lists h2 span,
.content .games-awards h2 span,
.content .similar-publisher-games h2 span {
  padding: 0 15px;
}
.content .games-update-lists h2 span i,
.content .games-awards h2 span i,
.content .similar-publisher-games h2 span i {
  font-style: normal;
}
.content .games-update-lists h2:before,
.content .games-awards h2:before,
.content .similar-publisher-games h2:before {
  border-top: none;
}
.content .games-update-lists h2:after,
.content .games-awards h2:after,
.content .similar-publisher-games h2:after {
  border-bottom: 1px solid var(--font-primary-color);
  -webkit-box-shadow: 0 1px 0 0 var(--primary-color);
  -moz-box-shadow: 0 1px 0 0 var(--primary-color);
  box-shadow: 0 1px 0 0 var(--primary-color);
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  z-index: -1;
}
.content .games-update-lists h2.section-title-new,
.content .games-awards h2.section-title-new,
.content .similar-publisher-games h2.section-title-new {
  margin-top: -0.3rem !important;
  margin-bottom: 0.7rem !important;
  display: block;
  text-align: left !important;
}
.content .games-update-lists h2.section-title-new::before, .content .games-update-lists h2.section-title-new::after,
.content .games-awards h2.section-title-new::before,
.content .games-awards h2.section-title-new::after,
.content .similar-publisher-games h2.section-title-new::before,
.content .similar-publisher-games h2.section-title-new::after {
  content: none;
}
.content .games-update-lists h2.section-title-new span,
.content .games-awards h2.section-title-new span,
.content .similar-publisher-games h2.section-title-new span {
  padding: 0;
}
.content .games-update-lists h2.section-title-new .section-title-new__group,
.content .games-awards h2.section-title-new .section-title-new__group,
.content .similar-publisher-games h2.section-title-new .section-title-new__group {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.76rem, 1.35vw, 0.95rem);
  color: #111827;
  line-height: 1.3;
}
.content .games-update-lists h2.section-title-new .section-title-new__label,
.content .games-awards h2.section-title-new .section-title-new__label,
.content .similar-publisher-games h2.section-title-new .section-title-new__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-weight: 700;
  white-space: nowrap;
}
.content .games-update-lists h2.section-title-new .section-title-new__icon,
.content .games-awards h2.section-title-new .section-title-new__icon,
.content .similar-publisher-games h2.section-title-new .section-title-new__icon {
  color: var(--primary-color);
  font-size: 0.9em;
  width: 1.1em;
  text-align: center;
  flex: 0 0 1.3em;
}
.content .games-update-lists h2.section-title-new .section-title-new__sep,
.content .games-awards h2.section-title-new .section-title-new__sep,
.content .similar-publisher-games h2.section-title-new .section-title-new__sep {
  color: #d1d5db;
  font-weight: 400;
  margin: 0 0.5em;
  user-select: none;
}
.content .games-update-lists h2.section-title-new .section-title-new__meta,
.content .games-awards h2.section-title-new .section-title-new__meta,
.content .similar-publisher-games h2.section-title-new .section-title-new__meta {
  color: #6b7280;
  font-weight: 600;
  white-space: nowrap;
}
.content .games-update-lists h2.section-title-new .section-title-new__meta a,
.content .games-awards h2.section-title-new .section-title-new__meta a,
.content .similar-publisher-games h2.section-title-new .section-title-new__meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.content .games-update-lists h2.section-title-new .section-title-new__meta a:hover,
.content .games-awards h2.section-title-new .section-title-new__meta a:hover,
.content .similar-publisher-games h2.section-title-new .section-title-new__meta a:hover {
  opacity: 0.75;
}
.content .games-update-lists h2.section-title-new .section-title-new__meta--reviews,
.content .games-awards h2.section-title-new .section-title-new__meta--reviews,
.content .similar-publisher-games h2.section-title-new .section-title-new__meta--reviews {
  font-size: clamp(0.76rem, 1.35vw, 0.9rem);
}
.content .games-update-lists h4.title,
.content .games-awards h4.title,
.content .similar-publisher-games h4.title {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.content .games-update-lists dt,
.content .games-awards dt,
.content .similar-publisher-games dt {
  font-weight: normal;
}
.content .games-update-lists img.bgg-logo,
.content .games-awards img.bgg-logo,
.content .similar-publisher-games img.bgg-logo {
  max-width: 55px;
}
.content .games-update-lists svg.link-glob,
.content .games-awards svg.link-glob,
.content .similar-publisher-games svg.link-glob {
  width: 24px;
  height: 32px;
}
.content .games-update-lists .game-last .card-body,
.content .games-awards .game-last .card-body,
.content .similar-publisher-games .game-last .card-body {
  padding: 0.5rem 0.75rem;
}
.content .games-update-lists .game-last .icon-people,
.content .games-awards .game-last .icon-people,
.content .similar-publisher-games .game-last .icon-people {
  font-size: 1rem !important;
}
.content .games-update-lists .game-last .icon-calendar,
.content .games-update-lists .game-last .icon-alarm,
.content .games-awards .game-last .icon-calendar,
.content .games-awards .game-last .icon-alarm,
.content .similar-publisher-games .game-last .icon-calendar,
.content .similar-publisher-games .game-last .icon-alarm {
  font-size: 0.9rem !important;
}
.content .games-update-lists .game-last img,
.content .games-awards .game-last img,
.content .similar-publisher-games .game-last img {
  object-fit: cover;
  object-position: top;
}
.content .games-update-lists .game-last .card-img-top,
.content .games-awards .game-last .card-img-top,
.content .similar-publisher-games .game-last .card-img-top {
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
}
.content .games-update-lists .game-last p,
.content .games-awards .game-last p,
.content .similar-publisher-games .game-last p {
  font-size: 0.9rem;
}
.content .games-update-lists .game-last p.title,
.content .games-awards .game-last p.title,
.content .similar-publisher-games .game-last p.title {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
}
.content .games-update-lists .game-last .badge,
.content .games-awards .game-last .badge,
.content .similar-publisher-games .game-last .badge {
  font-size: 0.7rem;
}
.content .games-update-lists .game-last .cover-status-badge,
.content .games-awards .game-last .cover-status-badge,
.content .similar-publisher-games .game-last .cover-status-badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  font-size: 0.62rem;
  padding: 0.2rem 0.45rem;
  letter-spacing: 0.02em;
}
.content .games-update-lists .game-last img.bgg-logo,
.content .games-awards .game-last img.bgg-logo,
.content .similar-publisher-games .game-last img.bgg-logo {
  max-width: 50px;
}
.content .games-update-lists .game-last a,
.content .games-awards .game-last a,
.content .similar-publisher-games .game-last a {
  color: var(--text-color-primary);
  text-decoration: none;
}
.content .games-update-lists .game-last a:hover,
.content .games-awards .game-last a:hover,
.content .similar-publisher-games .game-last a:hover {
  border-bottom: var(--bs-warning) 1px dashed;
}
.content .games-update-lists .game-last p.details,
.content .games-awards .game-last p.details,
.content .similar-publisher-games .game-last p.details {
  font-size: 0.8rem;
}
.content .games-update-lists .game-last p.details .bi .bi-people .text-danger,
.content .games-awards .game-last p.details .bi .bi-people .text-danger,
.content .similar-publisher-games .game-last p.details .bi .bi-people .text-danger {
  font-size: 1rem;
}
.content .games-update-lists .premiera-bar,
.content .games-awards .premiera-bar,
.content .similar-publisher-games .premiera-bar {
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 85%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border-bottom: 1px solid var(--font-primary-color);
  padding-top: 2px;
}
.content .games-update-lists .game-last .card-img-top,
.content .games-awards .game-last .card-img-top,
.content .similar-publisher-games .game-last .card-img-top {
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.content .games-update-lists .btn-outline-updates,
.content .games-awards .btn-outline-updates,
.content .similar-publisher-games .btn-outline-updates {
  --bs-btn-color: #212529;
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #212529;
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: #f57c00;
  --bs-btn-active-color: #212529;
  --bs-btn-active-bg: #ffffff;
  --bs-btn-active-border-color: #f57c00;
  --bs-btn-focus-shadow-rgb: 245, 124, 0;
  border-width: 2px;
}
.content .games-update-lists .index-inline-links-wrap,
.content .games-awards .index-inline-links-wrap,
.content .similar-publisher-games .index-inline-links-wrap {
  margin-top: 0.2rem;
}
.content .games-update-lists .index-inline-links__hr,
.content .games-awards .index-inline-links__hr,
.content .similar-publisher-games .index-inline-links__hr {
  width: 80%;
  margin: 0 auto 0.7rem;
  border: 0;
  border-top: 1px solid #d6dbe3;
  opacity: 1;
}
.content .games-update-lists .index-inline-links,
.content .games-awards .index-inline-links,
.content .similar-publisher-games .index-inline-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.9rem, 1.45vw, 1.2rem);
  line-height: 1.35;
}
.content .games-update-lists .index-inline-link,
.content .games-awards .index-inline-link,
.content .similar-publisher-games .index-inline-link {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.content .games-update-lists .index-inline-link:hover, .content .games-update-lists .index-inline-link:focus-visible,
.content .games-awards .index-inline-link:hover,
.content .games-awards .index-inline-link:focus-visible,
.content .similar-publisher-games .index-inline-link:hover,
.content .similar-publisher-games .index-inline-link:focus-visible {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content .games-update-lists .index-inline-links__sep,
.content .games-awards .index-inline-links__sep,
.content .similar-publisher-games .index-inline-links__sep {
  color: #cbd5e1;
  font-weight: 600;
  user-select: none;
  margin: 0 0.15rem;
}
@media (max-width: 576px) {
  .content .games-update-lists img.img-thumbnail,
  .content .games-awards img.img-thumbnail,
  .content .similar-publisher-games img.img-thumbnail {
    max-width: 280px;
  }
}
@media (min-width: 768px) {
  .content .games-update-lists .index-top-columns .index-scroll-column {
    display: flex;
    flex-direction: column;
    height: 100rem;
    min-height: 0;
  }
  .content .games-update-lists .index-top-columns .index-scroll-panel {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    padding-right: 0.35rem;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
  .content .games-update-lists .index-top-columns .index-scroll-panel::-webkit-scrollbar {
    width: 0.5rem;
  }
  .content .games-update-lists .index-top-columns .index-scroll-panel::-webkit-scrollbar-thumb {
    background-color: #c7cdd4;
    border-radius: 999px;
  }
  .content .games-update-lists .index-top-columns .index-scroll-panel::-webkit-scrollbar-track {
    background-color: transparent;
  }
}
.content .games-update-lists .last-game-reviews .card.card-lift {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 4px;
}
.content .games-update-lists .last-game-reviews .card.card-lift .card-img-top {
  border-radius: 3px;
  object-fit: cover;
  border: 1px solid #e9ecef;
}
.content .games-update-lists .last-game-reviews .card.card-lift .card-body {
  background: white;
  color: #212529;
}
.content .games-update-lists .last-game-reviews .card.card-lift .badge {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  border: 1px solid #dee2e6 !important;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
}
.content .games-update-lists .last-game-reviews .card.card-lift h3 {
  color: #212529;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  font-size: 0.9rem;
}
.content .games-update-lists .last-game-reviews .card.card-lift h3 a {
  color: #212529 !important;
  text-decoration: none;
}
.content .games-update-lists .last-game-reviews .card.card-lift h3 a:hover {
  color: #0d6efd !important;
}
.content .games-update-lists .last-game-reviews .card.card-lift .text-secondary {
  color: #6c757d !important;
  font-size: 0.8rem;
  padding: 0;
}

.games-awards .premiera-bar {
  height: 4.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.games-awards .hidden {
  display: none;
}

.update-log h4 a {
  color: var(--text-color-primary);
  text-decoration: none;
}
.update-log h4 a:hover {
  border-bottom: var(--bs-warning) 1px dashed;
}
.update-log h3 a {
  color: var(--font-primary-color);
  text-decoration: none;
}
.update-log h3 a:hover {
  border-bottom: var(--bs-warning) 4px dashed;
}

.catalogue-games .title a,
.catalogue-games .publisher a {
  color: var(--text-color-primary);
  text-decoration: none;
}
.catalogue-games .title a:hover,
.catalogue-games .publisher a:hover {
  border-bottom: var(--bs-warning) 2px dashed;
}
.catalogue-games .filters a {
  text-decoration: none;
}
.catalogue-games .filters #year-filters,
.catalogue-games .filters #month-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.catalogue-games .filters #cf-filters,
.catalogue-games .filters #type-filters,
.catalogue-games .filters #released-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}
.catalogue-games .filters a.active {
  text-decoration: underline;
  color: var(--font-secondary-color) !important;
  background-color: var(--primary-color) !important;
}
.catalogue-games .catalogue-sort-pills .sort-pill {
  cursor: pointer;
  color: #495057;
  transition: all 0.2s ease;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.25rem 0.75rem;
}
.catalogue-games .catalogue-sort-pills .sort-pill.active {
  background-color: var(--primary-color) !important;
  color: #fff;
  border-color: var(--primary-color) !important;
}
.catalogue-games .catalogue-sort-pills--embedded {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: nowrap !important;
  gap: 0;
  overflow-x: auto;
  justify-content: space-between;
  border-radius: 0.375rem;
  overflow: hidden;
  width: 100%;
}
.catalogue-games .catalogue-sort-pills-host {
  min-width: 0;
}
.catalogue-games .catalogue-sort-pills--embedded .sort-pill {
  flex: 1 1 0;
  white-space: nowrap;
  font-size: 0.92rem;
  padding: 0.4rem 0.5rem;
  border: none;
  border-radius: 0;
  border-right: 1px solid #dee2e6;
  background-color: #f8f9fa !important;
  color: #495057;
  text-align: center;
}
.catalogue-games .catalogue-sort-pills--embedded .sort-pill:last-child {
  border-right: none;
}
.catalogue-games .catalogue-sort-pills--embedded .sort-pill.active {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}
.catalogue-games #katalog_wrapper .catalogue-controls-row--meta {
  margin-top: 0.2rem !important;
  align-items: flex-end;
}
.catalogue-games #katalog_wrapper .catalogue-controls-row--top {
  align-items: flex-end;
}
.catalogue-games #katalog_wrapper .catalogue-controls-row--top .dt-search {
  margin-bottom: 0;
}
.catalogue-games #katalog_wrapper .catalogue-controls-row--top .dt-search label {
  margin-bottom: 0;
}
.catalogue-games #catalogue-grid .col {
  display: flex;
}
.catalogue-games #catalogue-grid .game-last {
  display: flex;
  width: 100%;
}
.catalogue-games #catalogue-grid .card {
  height: 100%;
  width: 100%;
}
.catalogue-games .game-last .card-body {
  padding: 0.5rem 0.75rem;
}
.catalogue-games .game-last img {
  object-fit: cover;
  object-position: top;
}
.catalogue-games .game-last .card-img-top {
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.catalogue-games .game-last .badge {
  font-size: 0.7rem;
}
.catalogue-games .game-last .cover-status-badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  font-size: 0.62rem;
  padding: 0.2rem 0.45rem;
  letter-spacing: 0.02em;
}
.catalogue-games .premiera-bar {
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 85%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border-bottom: 1px solid var(--font-primary-color);
  padding-top: 2px;
}
.catalogue-games img.bgg-logo {
  max-width: 55px;
}
.catalogue-games img.cover-game {
  max-width: 120px;
}
.catalogue-games svg.link-glob {
  width: 24px;
  height: 32px;
}
.catalogue-games p.details {
  font-size: 0.8rem;
}
.catalogue-games .dt-info {
  float: none;
  margin-bottom: 0;
  white-space: nowrap;
  padding-top: 0.5rem;
}
.catalogue-games .dt-length {
  margin-top: 0;
  white-space: nowrap;
  padding-top: 0.2rem;
}
.catalogue-games #katalog_wrapper .dt-layout-table {
  display: none;
}
.catalogue-games #katalog {
  display: none !important;
}
@media (max-width: 767.98px) {
  .catalogue-games #katalog thead {
    display: none;
  }
}

.game-datalist .bi {
  color: var(--font-primary-color);
}
.game-datalist .icon-people {
  font-size: 1rem !important;
}
.game-datalist .icon-calendar,
.game-datalist .icon-alarm {
  font-size: 0.9rem !important;
}
.game-datalist h1.title {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.game-datalist a {
  color: var(--text-color-primary);
  text-decoration: none;
  border-bottom: var(--bs-warning) 1px dashed;
}
.game-datalist a:hover {
  border-bottom: var(--bs-warning) 1px solid;
}
.game-datalist .fw-bold {
  font-weight: 500 !important;
}
.game-datalist .fw-bolder {
  font-weight: 600 !important;
}
.game-datalist .patronat-zp {
  border-color: var(--primary-color) !important;
}
.game-datalist .linki img.bgg-logo {
  max-width: 55px;
}
.game-datalist .linki svg.link-glob {
  width: 24px;
  height: 32px;
}
.game-datalist .description-less-gradient {
  position: relative;
  max-height: 6.4em; /* ok. 4 linie tekstu, dostosuj! */
  overflow: hidden;
}
.game-datalist .description-less-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.6em; /* wysokość stopniowanego przejścia */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 95%);
  pointer-events: none;
}
.game-datalist .text-less-buttons {
  text-align: left;
  margin-top: 0.5em;
  text-align: end;
}
.game-datalist .show-more, .game-datalist .show-less {
  color: #053b86;
  cursor: pointer;
  font-style: normal;
}
.game-datalist .show-more, .game-datalist .show-less {
  font-size: 1em;
  vertical-align: middle;
  color: #089700;
  margin-right: 4px;
}

.calendar .menu-sidebar {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}
.calendar .menu-sidebar .nav-link {
  border: 1.5px solid #ffe58f; /* domyślny – dla miesięcy */
  border-radius: 10px;
  margin-bottom: 0.3rem !important;
  padding: 0.22rem 0.65rem !important;
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  /* MIESIĄCE: żółty border */
}
.calendar .menu-sidebar .nav-link.month {
  border-color: #ffe58f;
  color: var(--text-color-primary, #263238);
}
.calendar .menu-sidebar .nav-link.month:hover, .calendar .menu-sidebar .nav-link.month:focus, .calendar .menu-sidebar .nav-link.month.active {
  background: #fffbe7;
  border-color: #ffc107;
  color: #b58500;
}
.calendar .menu-sidebar .nav-link {
  /* KWARTAŁY: niebieski border */
}
.calendar .menu-sidebar .nav-link.quarter {
  border-color: #8fd2ff;
  color: #156fc0;
}
.calendar .menu-sidebar .nav-link.quarter:hover, .calendar .menu-sidebar .nav-link.quarter:focus, .calendar .menu-sidebar .nav-link.quarter.active {
  background: #eaf6ff;
  border-color: #2b97e9;
  color: #2b97e9;
}
.calendar .menu-sidebar .nav-link {
  /* PÓŁROCZA: zielony border */
}
.calendar .menu-sidebar .nav-link.halfyear {
  border-color: #b6f3c7;
  color: #1f6c46;
}
.calendar .menu-sidebar .nav-link.halfyear:hover, .calendar .menu-sidebar .nav-link.halfyear:focus, .calendar .menu-sidebar .nav-link.halfyear.active {
  background: #eefaf1;
  border-color: #3be27f;
  color: #229f5c;
}
.calendar .menu-sidebar .nav-link {
  /* NIEUSTALONY: szary border */
}
.calendar .menu-sidebar .nav-link.unknown {
  border-color: #ced4da;
  color: #6c757d;
}
.calendar .menu-sidebar .nav-link.unknown:hover, .calendar .menu-sidebar .nav-link.unknown:focus, .calendar .menu-sidebar .nav-link.unknown.active {
  background: #f2f2f2;
  border-color: #adb5bd;
  color: #495057;
}
.calendar .menu-sidebar .menu-sidebar hr {
  margin-top: 0.3rem !important;
}
.calendar .sidebar-year-select .input-group-text.year-addon,
.calendar .sidebar-year-select .form-select.year-select {
  background: #f8f8f8;
  border: 1.5px solid rgba(126, 126, 126, 0.4470588235);
  color: #263238;
  font-size: 1rem;
  box-shadow: none;
  transition: border-color 0.2s, background 0.2s;
}
.calendar .sidebar-year-select .form-select.year-select {
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.236 4h9.528c.89 0 1.351 1.013.785 1.658l-4.796 5.482a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7em center;
  background-size: 1.1em auto;
  padding-right: 2.5em;
  appearance: none; /* to jest wymagane, by custom svg był wyświetlany */
}
.calendar .premiere-count {
  display: inline-block;
  min-width: 1.7em;
  text-align: center;
  background: #ffecd2;
  color: #be8b18;
  font-size: 0.96em;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.08em 0.55em;
  margin-left: 0.2em;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.calendar .quarter .premiere-count {
  background: #e3f2fd;
  color: #1976d2;
}
.calendar .halfyear .premiere-count {
  background: #e6f3eb;
  color: #229f5c;
}
.calendar .unknown .premiere-count {
  background: #f4f4f4;
  color: #757575;
}
.calendar .filter-bar {
  background: #f8f9fa;
  border: 1px solid #e2e3e5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem 0.4rem 0.75rem;
  margin-bottom: 0.4rem;
  box-shadow: 0 1px 4px rgba(223, 225, 230, 0.1);
  gap: 0.15rem;
  width: fit-content; /* pasek dostosowuje szerokość do treści */
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
}
.calendar .filter-bar-label {
  color: #567083;
  font-size: 0.95rem;
  margin-right: 0.3rem;
  font-weight: 500;
  padding-right: 0.2rem;
  border-right: 1px solid #e2e3e5;
  white-space: nowrap;
}
.calendar .filter-bar-pill {
  font-size: 0.95rem;
  border-radius: 4rem;
  padding: 0.15em 0.7em;
  margin-left: 0.18rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: #f2f2f3;
  border: 1px solid #c4c4c6;
  color: #44484f;
}
.calendar .day-divider-wrapper {
  width: 100%;
  text-align: left;
  position: relative;
}
.calendar .day-divider-wrapper .day-divider {
  position: relative;
  display: inline-block;
  background: #f5f7fa;
  color: #415065;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.22em 1.2em 0.22em 0.5em;
  line-height: 1.2;
  border-radius: 0;
  border-left: 4px solid #f2a453;
  margin-bottom: 0;
  vertical-align: bottom;
}
.calendar .day-divider-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #f2a453;
  z-index: 0;
}

.footer {
  --content-color: #939495;
  line-height: 1.5;
  background: #2a2a2a;
  padding: 0;
}
.footer ul {
  margin: 0;
  padding: 0;
}
.footer p {
  color: var(--content-color);
  margin: 0;
}
.footer a {
  color: var(--content-color);
  transition: all 0.3s;
}
.footer a:hover {
  color: var(--primary-color);
}
.footer .footer-bottom {
  font-size: 14px;
  background-color: #1d1e20;
}

@media (min-width: 992px) {
  .header .navbar-collapse {
    position: initial;
    box-shadow: none;
  }
  .header .navbar-brand img {
    max-width: 150px;
  }
  .header .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    margin-top: 0.125rem;
  }
  .header .dropdown .dropdown-menu {
    opacity: 0;
    display: block;
    margin-top: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}
