/* Import components - postcss-import требует импортов ПЕРЕД всеми директивами */
/* Header component - BEM methodology */
.cb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #202124;
  border-bottom: 1px solid #3c4043;
}
.cb-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
.cb-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
.cb-header__logo-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
  }
.cb-header__logo-link:hover {
      opacity: 0.9;
    }
.cb-header__logo-part--primary {
      color: #5393ff;
    }
.cb-header__logo-part--secondary {
      color: #ffffff;
    }
.cb-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
.cb-header__gamepad-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #bdc1c6;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }
.cb-header__gamepad-link:hover {
      color: #5393ff;
    }
.cb-header__gamepad-link svg {
      width: 24px;
      height: 24px;
    }
/* Language Dropdown component - BEM methodology */
.cb-lang-dropdown {
  position: relative;
}
.cb-lang-dropdown__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #2d2e31;
    border: 1px solid #3c4043;
    border-radius: 6px;
    color: #bdc1c6;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    height: 40px;
  }
.cb-lang-dropdown__btn:hover {
      background-color: #35363a;
      border-color: #5f6368;
    }
.cb-lang-dropdown__menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    background-color: #2d2e31;
    border: 1px solid #3c4043;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1000;
  }
.cb-lang-dropdown__menu--open {
      display: block;
    }
.cb-lang-dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #bdc1c6;
    text-decoration: none;
    transition: background-color 0.15s;
  }
.cb-lang-dropdown__link:hover {
      background-color: #35363a;
    }
.cb-lang-dropdown__link--active {
      background-color: #35363a;
    }
.cb-lang-dropdown__link-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }
.cb-lang-dropdown__lang-code {
    color: #9aa0a6;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 35px;
  }
.cb-lang-dropdown__lang-name {
    font-size: 0.95rem;
  }
.cb-lang-dropdown__check-icon {
    color: #5393ff;
    flex-shrink: 0;
  }
/* Hero section - BEM methodology */
.cb-hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.cb-hero-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }
.cb-hero-section__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
.cb-hero-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
  }
.cb-hero-section__title-highlight {
    color: #5393ff;
  }
.cb-hero-section__description {
    font-size: 1.125rem;
    color: #bdc1c6;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
.cb-hero-section__search-wrapper {
    max-width: 600px;
    margin: 0 auto 32px;
  }
.cb-hero-section__search-form-wrapper {
    position: relative;
  }
.cb-hero-section__search-input {
    width: 100%;
    padding: 16px 56px 16px 20px;
    background-color: #2d2e31;
    border: 1px solid #3c4043;
    border-radius: 8px;
    font-size: 1rem;
    color: #bdc1c6;
    outline: none;
  }
.cb-hero-section__search-input::-moz-placeholder {
      color: #80868b;
    }
.cb-hero-section__search-input::placeholder {
      color: #80868b;
    }
.cb-hero-section__search-input:focus {
      border-color: #5393ff;
    }
.cb-hero-section__search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #bdc1c6;
  }
.cb-hero-section__search-btn:hover {
      color: #5393ff;
    }
.cb-hero-section__trending {
    text-align: left;
    margin-top: 24px;
  }
.cb-hero-section__trending-title {
    font-size: 0.9rem;
    color: #80868b;
    margin-bottom: 12px;
  }
.cb-hero-section__trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
.cb-hero-section__trending-link {
    padding: 8px 16px;
    background-color: #2d2e31;
    border: 1px solid #3c4043;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #bdc1c6;
    text-decoration: none;
    transition: all 0.2s;
  }
.cb-hero-section__trending-link:hover {
      background-color: #35363a;
      border-color: #5393ff;
      color: #5393ff;
    }
/* Games section - BEM methodology */
.cb-games-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.cb-games-section__content {
    margin-bottom: 64px;
  }
.cb-games-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
  }
.cb-games-section__title-primary {
    color: #5393ff;
  }
.cb-games-section__title-count {
    color: #80868b;
  }
.cb-games-section__title-text {
    color: #80868b;
    font-weight: 400;
  }
.cb-genre-section {
  margin-bottom: 64px;
}
.cb-genre-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
.cb-genre-section__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
  }
.cb-genre-section__title-link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s;
  }
.cb-genre-section__title-link:hover {
      color: #5393ff;
    }
.cb-genre-section__title-icon {
    color: #80868b;
    transition: color 0.2s;
  }
.cb-genre-section__title-icon:hover {
      color: #5393ff;
    }
.cb-genre-section__view-all {
    color: #5393ff;
    text-decoration: none;
    font-weight: 500;
    display: none;
  }
@media (min-width: 768px) {
.cb-genre-section__view-all {
      display: block
  }
    }
/* Game card component - BEM methodology */
.cb-game-card {
  display: block;
  width: 100%;
  background-color: transparent;
  overflow: hidden;
  text-decoration: none;
}
.cb-game-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #1a1a1a;
    overflow: hidden;
  }
.cb-game-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
.cb-game-card__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #5f6368;
  }
.cb-game-card__label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    background-color: rgba(83, 147, 255, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
  }
.cb-game-card__content {
    padding: 16px 0 0 0;
  }
.cb-game-card__title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #e8eaed;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.cb-game-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
.cb-game-card__date {
    font-size: 0.875rem;
    color: #9aa0a6;
    line-height: 1.5;
  }
.cb-game-card__services {
    font-size: 0.875rem;
    color: #9aa0a6;
    line-height: 1.5;
  }
.cb-game-card__services strong {
      font-weight: 400;
      color: #9aa0a6;
    }
/* Game Page Styles */
.cb-game-page {
  min-height: 100vh;
}
/* Game Header */
.cb-game-header {
  max-width: 1400px;
  margin: 0 auto 32px auto;
  padding: 0 24px;
}
.cb-game-header__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e8eaed;
    margin: 0;
    line-height: 1.2;
  }
@media (max-width: 768px) {
.cb-game-header__title {
      font-size: 2rem
  }
    }
/* Game Info Section */
.cb-game-info {
  max-width: 1400px;
  margin: 0 auto 48px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
.cb-game-info {
    grid-template-columns: 300px 1fr;
    gap: 32px
}
  }
@media (max-width: 768px) {
.cb-game-info {
    grid-template-columns: 1fr;
    gap: 24px
}
  }
.cb-game-info__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: #3c4043;
    overflow: hidden;
  }
@media (max-width: 768px) {
.cb-game-info__image-wrapper {
      max-width: 300px;
      margin: 0 auto
  }
    }
.cb-game-info__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
.cb-game-info__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3c4043;
    color: #9aa0a6;
    font-size: 4rem;
    font-weight: 300;
  }
.cb-game-info__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
.cb-game-info__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8eaed;
  }
.cb-game-info__meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
.cb-game-info__meta-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
.cb-game-info__meta-item--full {
      flex-direction: column;
      gap: 0;
    }
.cb-game-info__play-btn {
    display: inline-block;
    padding: 16px 48px;
    background-color: #7eadff;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
  }
.cb-game-info__play-btn:hover {
      background-color: #5393ff;
    }
.cb-game-info__stores-block {
    /* Empty, just for structure*/
  }
.cb-game-info__stores-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e8eaed;
    margin: 0 0 16px 0;
  }
.cb-game-info__stores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
.cb-game-info__stores-item {
    /* Empty, just for structure*/
  }
.cb-game-info__stores-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #2d2d2d;
    color: #e8eaed;
    text-decoration: none;
    transition: all 0.2s ease;
  }
.cb-game-info__stores-link:hover {
      background-color: #0a0a0a;
    }
.cb-game-info__stores-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }
.cb-game-info__stores-name {
    font-size: 0.875rem;
    font-weight: 500;
  }
.cb-game-info__meta-label {
    font-size: 0.875rem;
    color: #9aa0a6;
    white-space: nowrap;
  }
.cb-game-info__meta-value {
    font-size: 0.875rem;
    color: #e8eaed;
  }
.cb-game-info__meta-link {
    color: #5393ff;
    text-decoration: none;
    transition: color 0.2s ease;
  }
.cb-game-info__meta-link:hover {
      color: #7eadff;
    }
.cb-game-info__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
.cb-game-info__tag {
    padding: 6px 12px;
    background-color: #3c4043;
    color: #e8eaed;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
.cb-game-info__tag:hover {
      background-color: #5393ff;
      color: #ffffff;
    }
/* Game Content Grid */
.cb-game-content {
  max-width: 1400px;
  margin: 48px auto 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}
@media (max-width: 1024px) {
.cb-game-content {
    grid-template-columns: 1fr
}
  }
.cb-game-content__main {
    min-width: 0;
  }
.cb-game-content__sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
/* About Section */
.cb-game-about__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e8eaed;
    margin: 0 0 24px 0;
  }
.cb-game-about__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8eaed;
  }
.cb-game-about__text p {
      margin: 0 0 16px 0;
    }
.cb-game-about__text p:last-child {
        margin-bottom: 0;
      }
.cb-game-about__text h1, .cb-game-about__text h2, .cb-game-about__text h3, .cb-game-about__text h4, .cb-game-about__text h5, .cb-game-about__text h6 {
      margin: 24px 0 16px 0;
      color: #e8eaed;
      font-weight: 600;
    }
.cb-game-about__text ul, .cb-game-about__text ol {
      margin: 0 0 16px 0;
      padding-left: 24px;
    }
.cb-game-about__text li {
      margin-bottom: 8px;
    }
.cb-game-about__text a {
      color: #5393ff;
      text-decoration: none;
    }
.cb-game-about__text a:hover {
        text-decoration: underline;
      }
/* Game Features */
.cb-game-features__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e8eaed;
    margin: 0 0 16px 0;
  }
.cb-game-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
.cb-game-features__item {
    /* Empty, just for structure*/
  }
.cb-game-features__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #1a1a1a;
    color: #e8eaed;
    text-decoration: none;
    transition: all 0.2s ease;
  }
.cb-game-features__link:hover {
      background-color: #2d2d2d;
    }
.cb-game-features__name {
    font-size: 0.875rem;
    font-weight: 500;
  }
.cb-game-features__status {
    font-size: 0.75rem;
    color: #5393ff;
  }
/* Screenshots Slider Styles */
.cb-game-screenshots {
  max-width: 1400px;
  margin: 0 auto 48px auto;
  padding: 0 24px;
}
.cb-game-screenshots__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e8eaed;
    margin: 0 0 24px 0;
  }
.cb-screenshots-slider {
  position: relative;
  overflow: hidden;
}
.cb-screenshots-slider .swiper-slide {
    width: 600px;
  }
@media (max-width: 1024px) {
.cb-screenshots-slider .swiper-slide {
      width: 500px
  }
    }
@media (max-width: 768px) {
.cb-screenshots-slider .swiper-slide {
      width: 100%
  }
    }
.cb-screenshots-slider__image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
.cb-screenshots-slider__image:hover {
      opacity: 0.85;
    }
.cb-screenshots-slider__prev,
  .cb-screenshots-slider__next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(50, 50, 52, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
  }
.cb-screenshots-slider__prev svg, .cb-screenshots-slider__next svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      color: #e8eaed;
    }
.cb-screenshots-slider__prev:hover, .cb-screenshots-slider__next:hover {
      background-color: rgba(83, 147, 255, 0.9);
      transform: translate(0, -50%);
    }
.cb-screenshots-slider__prev:disabled, .cb-screenshots-slider__next:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      background-color: rgba(50, 50, 52, 0.8);
    }
.cb-screenshots-slider__prev {
    left: 16px;
  }
.cb-screenshots-slider__next {
    right: 16px;
  }
.cb-screenshots-slider__pagination {
    margin-top: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
.cb-screenshots-slider__pagination :global(.swiper-pagination-bullet) {
      width: 10px;
      height: 10px;
      background-color: #3c4043;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.2s ease;
    }
.cb-screenshots-slider__pagination :global(.swiper-pagination-bullet):global(.swiper-pagination-bullet-active) {
        background-color: #5393ff;
        width: 24px;
      }
/* Screenshots Modal Styles */
.cb-screenshots-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.cb-screenshots-modal.open {
    display: flex;
  }
.cb-screenshots-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1;
  }
.cb-screenshots-modal__content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    z-index: 10;
  }
.cb-screenshots-modal__close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
.cb-screenshots-modal__close svg {
      width: 32px;
      height: 32px;
      stroke: currentColor;
      fill: none;
      color: #e8eaed;
    }
.cb-screenshots-modal__close:hover svg {
        color: #5393ff;
      }
@media (max-width: 768px) {
.cb-screenshots-modal__close {
      top: 16px;
      right: 16px;
      background-color: rgba(0, 0, 0, 0.7)
  }
    }
.cb-screenshots-modal-slider {
  position: relative;
}
.cb-screenshots-modal-slider__image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    -o-object-fit: contain;
       object-fit: contain;
  }
.cb-screenshots-modal-slider__prev,
  .cb-screenshots-modal-slider__next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(50, 50, 52, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
  }
.cb-screenshots-modal-slider__prev svg, .cb-screenshots-modal-slider__next svg {
      width: 32px;
      height: 32px;
      stroke: currentColor;
      fill: none;
      color: #e8eaed;
    }
.cb-screenshots-modal-slider__prev:hover, .cb-screenshots-modal-slider__next:hover {
      background-color: rgba(83, 147, 255, 0.9);
      transform: translate(0, -50%);
    }
.cb-screenshots-modal-slider__prev:disabled, .cb-screenshots-modal-slider__next:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      background-color: rgba(50, 50, 52, 0.8);
    }
@media (max-width: 768px) {
.cb-screenshots-modal-slider__prev,
  .cb-screenshots-modal-slider__next {
      width: 48px;
      height: 48px
  }

      .cb-screenshots-modal-slider__prev svg, .cb-screenshots-modal-slider__next svg {
        width: 24px;
        height: 24px;
      }
    }
.cb-screenshots-modal-slider__prev {
    left: -80px;
  }
@media (max-width: 1024px) {
.cb-screenshots-modal-slider__prev {
      left: 16px
  }
    }
.cb-screenshots-modal-slider__next {
    right: -80px;
  }
@media (max-width: 1024px) {
.cb-screenshots-modal-slider__next {
      right: 16px
  }
    }
/* Swiper slider component - BEM methodology */
.cb-game-slider {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 767px) {
.cb-game-slider {
    padding: 0 40px
}
  }
.cb-game-slider .swiper-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
  }
.cb-game-slider .swiper-slide {
    height: auto;
    width: 100%;
  }
@media (min-width: 640px) {
.cb-game-slider .swiper-slide {
      width: calc((100% - 24px) / 2)
  }
    }
@media (min-width: 1024px) {
.cb-game-slider .swiper-slide {
      width: calc((100% - 48px) / 3)
  }
    }
.cb-game-slider__prev,
  .cb-game-slider__next {
    position: absolute;
    top: calc(50% - 24px - 12px);
    transform: translate(0, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(50, 50, 52, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #ffffff;
  }
.cb-game-slider__prev:hover, .cb-game-slider__next:hover {
      background-color: rgba(50, 50, 52, 1);
    }
.cb-game-slider__prev:disabled, .cb-game-slider__next:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
.cb-game-slider__prev:disabled:hover, .cb-game-slider__next:disabled:hover {
        background-color: rgba(50, 50, 52, 0.8);
        transform: translate(0, -50%);
      }
.cb-game-slider__prev svg, .cb-game-slider__next svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
    }
@media (max-width: 767px) {
.cb-game-slider__prev,
  .cb-game-slider__next {
      width: 32px;
      height: 32px
  }
      
      .cb-game-slider__prev svg, .cb-game-slider__next svg {
        width: 16px;
        height: 16px;
      }
    }
.cb-game-slider__prev {
    left: 0;
  }
.cb-game-slider__next {
    right: 0;
  }
/* Search form component - BEM methodology */
.cb-search-section {
  background-color: #202124;
  padding: 32px 0;
}
.cb-search-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
.cb-search-form__wrapper {
    position: relative;
    max-width: 600px;
    /* margin: 0 auto;*/
  }
.cb-search-form__input {
    width: 100%;
    padding: 16px 24px;
    padding-right: 60px;
    background-color: #3c4043;
    border: 2px solid transparent;
    color: #e8eaed;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.2s ease;
  }
.cb-search-form__input::-moz-placeholder {
      color: #9aa0a6;
    }
.cb-search-form__input::placeholder {
      color: #9aa0a6;
    }
.cb-search-form__input:focus {
      outline: none;
      border-color: #5393ff;
      background-color: #202124;
    }
.cb-search-form__input:hover {
      background-color: #5f6368;
    }
.cb-search-form__input:focus:hover {
      background-color: #202124;
    }
.cb-search-form__submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #5393ff;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
.cb-search-form__submit:hover {
      background-color: #4285f4;
      transform: translateY(-50%) scale(1.05);
    }
.cb-search-form__submit:focus {
      outline: 2px solid #5393ff;
      outline-offset: 2px;
    }
.cb-search-form__submit svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }
/* Search page component - BEM methodology */
.cb-search-page {
  min-height: 100vh;
  background-color: #202124;
}
/* Search content */
.cb-search-content {
  padding: 48px 0;
}
.cb-search-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
/* Search results */
.cb-search-results__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
/* Search game card */
.cb-search-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background-color: #1a1a1a;
  transition: all 0.2s ease;
}
.cb-search-card:hover {
    background-color: #2d2d2d;
  }
@media (max-width: 768px) {
.cb-search-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px
}
  }
.cb-search-card__image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    overflow: hidden;
    background-color: #3c4043;
  }
@media (max-width: 768px) {
.cb-search-card__image-wrapper {
      width: 100%;
      height: 200px
  }
    }
.cb-search-card__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
.cb-search-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #5f6368;
  }
.cb-search-card__label {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    background-color: rgba(83, 147, 255, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }
.cb-search-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
.cb-search-card__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
  }
@media (max-width: 768px) {
.cb-search-card__title {
      font-size: 1.25rem
  }
    }
.cb-search-card__title-link {
    color: #e8eaed;
    text-decoration: none;
    transition: color 0.2s ease;
  }
.cb-search-card__title-link:hover {
      color: #5393ff;
    }
.cb-search-card__genres {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.875rem;
  }
.cb-search-card__genre {
    color: #5393ff;
    text-decoration: none;
    transition: color 0.2s ease;
  }
.cb-search-card__genre:hover {
      color: #4285f4;
      text-decoration: underline;
    }
.cb-search-card__genre-separator {
    color: #5f6368;
    margin: 0 4px;
  }
.cb-search-card__genre-more {
    color: #9aa0a6;
    font-style: italic;
  }
.cb-search-card__description {
    color: #bdc1c6;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 8px 0;
  }
.cb-search-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    font-size: 0.875rem;
  }
.cb-search-card__date {
    color: #9aa0a6;
    line-height: 1.5;
  }
.cb-search-card__services {
    color: #9aa0a6;
    line-height: 1.5;
  }
.cb-search-card__services strong {
      font-weight: 400;
      color: #9aa0a6;
    }
/* Mobile adjustments */
@media (max-width: 640px) {
  .cb-search-card {
    padding: 16px;
    gap: 12px;
  }
    
    .cb-search-card__image-wrapper {
      height: 160px;
    }
    
    .cb-search-card__title {
      font-size: 1.125rem;
    }
    
    .cb-search-card__content {
      gap: 8px;
    }
}
/* Breadcrumbs component - BEM methodology */
.cb-breadcrumbs {
  background-color: #202124;
  padding: 16px 0;
}
.cb-breadcrumbs__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
.cb-breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
  }
.cb-breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
  }
.cb-breadcrumbs__item--active {
      color: #e8eaed;
      font-weight: 500;
    }
.cb-breadcrumbs__link {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.2s ease;
  }
.cb-breadcrumbs__link:hover {
      color: #5393ff;
    }
.cb-breadcrumbs__separator {
    color: #5f6368;
    margin: 0 8px;
    font-size: 0.75rem;
  }
/* Page header component - BEM methodology */
.cb-page-header {
  background-color: #202124;
  padding: 8px 0;
}
.cb-page-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
.cb-page-header__content {
    text-align: left;
  }
.cb-page-header__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
.cb-page-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
  }
@media (max-width: 768px) {
.cb-page-header__title {
      font-size: 2rem
  }
    }
.cb-page-header__count {
    background-color: #5393ff;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
  }
.cb-page-header__description {
    max-width: 800px;
    margin: 0 auto;
  }
.cb-page-header__description-text {
    font-size: 1.125rem;
    color: #bdc1c6;
    line-height: 1.6;
  }
.cb-page-header__description-text p {
      margin: 0 0 16px 0;
    }
.cb-page-header__description-text p:last-child {
        margin-bottom: 0;
      }
/* Pagination component - BEM methodology */
.cb-pagination {
  padding: 48px 0;
}
.cb-pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }
.cb-pagination__item--active .cb-pagination__link {
        background-color: #5393ff;
        color: #ffffff;
        border-color: #5393ff;
      }
.cb-pagination__item--ellipsis .cb-pagination__ellipsis {
        padding: 12px 16px;
        color: #9aa0a6;
        font-size: 0.875rem;
      }
.cb-pagination__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: transparent;
    border: 1px solid #3c4043;
    color: #e8eaed;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 44px;
    justify-content: center;
  }
.cb-pagination__link:hover {
      background-color: #3c4043;
      border-color: #5f6368;
      color: #ffffff;
    }
.cb-pagination__link--current {
      background-color: #5393ff;
      color: #ffffff;
      border-color: #5393ff;
      cursor: default;
    }
.cb-pagination__link--current:hover {
        background-color: #5393ff;
        border-color: #5393ff;
        color: #ffffff;
      }
.cb-pagination__link--prev,
    .cb-pagination__link--next {
      padding: 12px 20px;
    }
.cb-pagination__link--prev svg, .cb-pagination__link--next svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
      }
.cb-pagination__link--prev .cb-pagination__text {
        order: 2;
      }
.cb-pagination__link--prev svg {
        order: 1;
      }
.cb-pagination__link--next .cb-pagination__text {
        order: 1;
      }
.cb-pagination__link--next svg {
        order: 2;
      }
.cb-pagination__text {
    font-size: 0.875rem;
    font-weight: 500;
  }
@media (max-width: 640px) {
.cb-pagination__text {
      display: none
  }
    }
.cb-pagination__ellipsis {
    display: block;
  }
/* Pagination wrapper */
.cb-pagination-wrapper {
  background-color: #202124;
}
.cb-pagination-wrapper__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
/* List page component - BEM methodology */
.cb-list-page {
  min-height: 100vh;
  background-color: #202124;
}
/* List description section */
.cb-list-description {
  background-color: #202124;
  border-bottom: 1px solid #3c4043;
  padding: 32px 0;
}
.cb-list-description__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
.cb-list-description__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: #bdc1c6;
    line-height: 1.6;
  }
.cb-list-description__content p {
      margin: 0 0 16px 0;
    }
.cb-list-description__content p:last-child {
        margin-bottom: 0;
      }
/* List content */
.cb-list-content {
  padding: 48px 0;
}
.cb-list-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
/* Category sections */
.cb-category-section {
  margin-bottom: 64px;
}
.cb-category-section:last-child {
    margin-bottom: 0;
  }
.cb-category-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }
@media (max-width: 768px) {
.cb-category-section__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px
  }
    }
.cb-category-section__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
  }
.cb-category-section__title-link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s;
  }
.cb-category-section__title-link:hover {
      color: #5393ff;
    }
.cb-category-section__title-icon {
    color: #80868b;
    transition: color 0.2s;
  }
.cb-category-section__title-icon:hover {
      color: #5393ff;
    }
.cb-category-section__title-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }
/* Use the same styles as genre section view all button */
.cb-category-section .cb-genre-section__view-all {
    color: #5393ff;
    text-decoration: none;
    font-weight: 500;
    display: none;
  }
@media (min-width: 768px) {
.cb-category-section .cb-genre-section__view-all {
      display: block
  }
    }
.cb-category-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
@media (max-width: 1024px) {
.cb-category-section__grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px
  }
    }
@media (max-width: 640px) {
.cb-category-section__grid {
      grid-template-columns: 1fr;
      gap: 16px
  }
    }
/* Direct games list */
.cb-games-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
@media (max-width: 1024px) {
.cb-games-list__grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px
  }
    }
@media (max-width: 640px) {
.cb-games-list__grid {
      grid-template-columns: 1fr;
      gap: 16px
  }
    }
/* No results */
.cb-no-results {
  text-align: center;
  padding: 80px 0;
}
.cb-no-results__content {
    max-width: 500px;
    margin: 0 auto;
  }
.cb-no-results__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e8eaed;
    margin: 0 0 16px 0;
  }
.cb-no-results__text {
    font-size: 1rem;
    color: #9aa0a6;
    margin: 0;
    line-height: 1.5;
  }
/* Details page component - BEM methodology */
.cb-details-page {
  min-height: 100vh;
  background-color: #202124;
}
/* Details content */
.cb-details-content {
  padding: 48px 0;
}
.cb-details-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
/* Details description */
.cb-details-description {
  background-color: #1a1a1a;
  padding: 48px 0;
  border-top: 1px solid #3c4043;
}
.cb-details-description__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }
.cb-details-description__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
.cb-details-description__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
  }
.cb-details-description__text {
    font-size: 1.125rem;
    color: #bdc1c6;
    line-height: 1.6;
  }
.cb-details-description__text p {
      margin: 0 0 16px 0;
    }
.cb-details-description__text p:last-child {
        margin-bottom: 0;
      }
.cb-details-description__text h1, .cb-details-description__text h2, .cb-details-description__text h3, .cb-details-description__text h4, .cb-details-description__text h5, .cb-details-description__text h6 {
      color: #e8eaed;
      margin: 24px 0 16px 0;
    }
.cb-details-description__text h1:first-child, .cb-details-description__text h2:first-child, .cb-details-description__text h3:first-child, .cb-details-description__text h4:first-child, .cb-details-description__text h5:first-child, .cb-details-description__text h6:first-child {
        margin-top: 0;
      }
.cb-details-description__text a {
      color: #5393ff;
      text-decoration: none;
    }
.cb-details-description__text a:hover {
        text-decoration: underline;
      }
.cb-details-description__text ul, .cb-details-description__text ol {
      text-align: left;
      margin: 16px 0;
      padding-left: 24px;
    }
.cb-details-description__text li {
      margin: 8px 0;
    }
.cb-details-description__text blockquote {
      border-left: 4px solid #5393ff;
      padding: 16px 24px;
      margin: 24px 0;
      background-color: rgba(83, 147, 255, 0.1);
      border-radius: 0 8px 8px 0;
    }
.cb-details-description__text code {
      background-color: #3c4043;
      padding: 2px 6px;
      border-radius: 4px;
      font-family: 'Courier New', monospace;
      font-size: 0.9em;
    }
.cb-details-description__text pre {
      background-color: #3c4043;
      padding: 16px;
      border-radius: 8px;
      overflow-x: auto;
      margin: 16px 0;
    }
.cb-details-description__text pre code {
        background: none;
        padding: 0;
      }
/* Footer component - BEM methodology */
.cb-footer {
  background-color: #202124;
  padding: 48px 24px;
  margin-top: 64px;
}
.cb-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
  }
.cb-footer__copyright {
    color: #9aa0a6;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
.cb-footer__disclaimer {
    color: #80868b;
    font-size: 0.875rem;
    line-height: 1.5;
  }
/* Tailwind CSS directives */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
  }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    background-color: #202124;
    color: #bdc1c6;
  }
* {
    box-sizing: border-box;
  }
/* Custom base styles */
