:root {
  --darkest: #12111C;
  --dark: #120F25;
  --dark-2: #16122B;
  --dark-3: #1B182D;
  --dark-4: #302C4B;
  --dark-5: #413A6D;
  --primary: #6E5BCE;
  --secondary: #3274CA;
  --tertiary: #1EAF7E;
  --white: #fff;
  --white-tint: #5c5a6b;
  --white-tint-light: #252330;
  --logo-gray: #989CA8;
  --light-red: #da8677;
  --link-color: #27dda0;
}

.header-page {
  margin-top: 55px;
  min-height: 290px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: 10% 25%;
  margin-bottom: -50px;
  position: relative;
  z-index: -1;
  display: flex;
}
.header-page.higher {
  min-height: 360px;
  padding-bottom: 110px;
}
@media screen and (max-width: 767.98px) {
  .header-page {
    min-height: 250px;
    padding-bottom: 120px;
    background-position: 50% 25%;
  }
}
@media screen and (max-width: 575.98px) {
  .header-page {
    min-height: 200px;
    padding-bottom: 60px;
    background-position: 50% 25%;
  }
}
.header-page .content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
}
.header-page .content h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header-page .content h1 .game-title {
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 575.98px) {
  .header-page .content h1 .game-title {
    font-size: 14px;
  }
}
.header-page .additional-img {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 0;
}
@media screen and (max-width: 1199.98px) {
  .header-page .additional-img {
    width: 300px;
    right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .header-page .additional-img {
    width: 200px;
    right: -100px;
  }
}

ul.banners-list {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
ul.banners-list li.no-banners-found {
  font-weight: 300;
}

.banner-item-big {
  background-color: var(--dark-4);
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.banner-item-big .img-wrap {
  padding: 15px;
}
.banner-item-big .img-wrap img.banner {
  width: 440px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.banner-item-big .meta-info {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--tertiary);
}
.banner-item-big h3 {
  font-weight: 600;
  margin-bottom: 12px;
}
.banner-item-big .description {
  font-weight: 300;
}

.table.banner-history tbody tr td:first-of-type {
  font-weight: 600;
}
.table.banner-history tbody tr td:first-of-type img {
  max-width: 140px;
  margin-right: 10px;
}

@media screen and (max-width: 991.98px) {
  main.banners .current-version {
    margin-top: -10px;
    margin-bottom: 20px;
  }
}