/* Tutaj jest miejsce na Twoje style */
.top {
  position: relative;
}
.top__bg {
  position: absolute;
  width: 100%;
  min-width: 860px;
  margin: 0 auto;
  height: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(359deg);
    filter: hue-rotate(359deg);
  }
}

@keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(359deg);
    filter: hue-rotate(359deg);
  }
}

.top__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgb(254, 209, 249);
  background: linear-gradient(
    0deg,
    rgba(254, 209, 249, 0.4) 0%,
    rgba(240, 196, 235, 0.9) 100%
  );
}
@media screen and (min-width: 992px) {
  .top__bg-overlay {
    background: transparent;
  }
}

.top__bg-overlay-gradient {
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.9) 100%
  );
  background-size: 200%;
  background-position: -200% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 120%;
  height: 100%;
  -webkit-animation: size 6s infinite alternate forwards;
  animation: size 6s infinite alternate forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  transform-origin: center;
}

@-webkit-keyframes size {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 150% 100%;
  }
}

.top__image {
  position: relative;
  bottom: -24%;
}

.top__image img {
  max-height: unset;
  width: 340px;
  top: 10% !important;
}

@media screen and (min-width: 768px) {
  .top__image img {
    width: 420px;
  }

  .top__image {
    bottom: -22%;
  }
}

@media screen and (min-width: 992px) {
  .top__image img {
    width: 590px;
  }

  .top__image {
    bottom: -10%;
  }
}

.cta--gradient {
  background: linear-gradient(90deg, #bd02b1, #8250fa);
  background-size: 100%;
  transition: 0.2s opacity linear;
}

.cta--gradient:hover {
  background: linear-gradient(90deg, #bd02b1, #bd02b1);
  background-size: 200%;
}

.rgb-bar {
  width: 100%;
  height: 10px;
  background-image: linear-gradient(
    124deg,
    #1c0dea,
    #1c0dea,
    #e116c7,
    #e116c7,
    #fce919,
    #fce919
  );
  background-size: 150%;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-animation: rainbow 12s linear infinite forwards alternate;
  animation: rainbow 12s linear infinite forwards alternate;
  bottom: 0;
  z-index: 1;
}

@-webkit-keyframes rainbow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes rainbow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.main__wrapper .rgb-bar {
  border-radius: 0 0 16px 16px;
}
#product {
  width: 350px;
}

#product-1 {
  width: 200px;
  margin-top: -92px;
}
#product-2 {
  width: 460px;
}
#product-3 {
  width: 180px;
  margin-top: -102px;
}

@media screen and (min-width: 576px) {
  .main__image img {
    max-width: unset;
  }

  #product {
    width: 350px;
  }

  #product-1 {
    width: 220px;
    margin-top: -92px;
    margin-left: -46px;
  }
  #product-2 {
    width: 400px;
    margin-right: -164px;
  }
  #product-3 {
    width: 240px;
    margin-top: -102px;
    margin-left: -64px;
  }
}

@media screen and (min-width: 992px) {
  #product {
    width: 450px;
  }
  #product-1 {
    width: 280px;
    margin-top: -106px;
    margin-left: -46px;
  }
  #product-2 {
    width: 560px;
    margin-right: -256px;
    margin-top: -16px;
  }
  #product-3 {
    width: 340px;
    margin-top: -102px;
    margin-left: -64px;
  }
}

.ctb {
  background: tan;
  padding: 64px;
  margin-bottom: 0;
  background-image: linear-gradient(124deg, #8250fa, #bd02b1);
  background-size: 200%;
  -webkit-animation: rainbow 4s linear infinite forwards alternate;
  animation: rainbow 4s linear infinite forwards alternate;
}

.ctb img {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 32px;
}

.main {
  position: relative;
}

.gfx {
  position: absolute;
  top: -90%;
}

#gfx-1 {
  left: 76%;
}

#gfx-2 {
  right: 80%;
}

#gfx-3 {
  left: 80%;
}

.rgb-shadow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 6px;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  background-image: linear-gradient(
    124deg,
    #1c0dea,
    #1c0dea,
    #e116c7,
    #e116c7,
    #fce919,
    #fce919
  );
  background-size: 150%;
  z-index: -1;
  -webkit-animation: rainbow 12s linear infinite forwards alternate;
  animation: rainbow 12s linear infinite forwards alternate;
}

.rgb-shadow.up::after {
  bottom: 12px;
}

.banner__wrapper {
  background: url("../../img/main/banner-bg.jpg") no-repeat;
  background-size: cover;
  border-radius: 16px;

  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;

  height: 460px;
  justify-content: flex-start;
  padding-top: 64px;

  max-width: 1000px;
  margin: 0 auto;
  background-image: linear-gradient(124deg, #432586, #bd02b1);
  background-size: 200%;
  -webkit-animation: rainbow 4s linear infinite forwards alternate;
  animation: rainbow 4s linear infinite forwards alternate;
}

@media screen and (min-width: 768px) {
  .banner__wrapper {
    height: 320px;
    justify-content: center;
    padding-top: 0;
  }
}

.banner__packshot {
  position: absolute;
  height: 74%;

  bottom: -46px;
  object-fit: contain;
  min-width: 320px;
}

@media screen and (min-width: 768px) {
  .banner__packshot {
    top: 54%;
    transform: translateY(-50%);
  }
}

#packshot-1 {
  right: 50%;
  width: 82%;
  margin-top: -16%;
  transform: translateX(50%);
}

@media screen and (min-width: 768px) {
  #packshot-1 {
    width: unset;
    margin-top: unset;
    left: 45%;
    transform: translateY(-50%);
  }
}

.banner .top__copy {
  margin-top: 0;

  padding-left: 0;
  text-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .banner .top__copy {
    padding-left: 56px;
    text-align: start;
    align-items: flex-start;
  }
}

.island {
  filter: none;
  opacity: 1;
  z-index: 2;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

li {
  list-style: none;
}

.laptop_spec {
  padding-left: 0 !important;
  font-size: 0.9rem;
  font-weight: 200;
  opacity: 0.7 !important;
}

.disabled_btn {
  opacity: 0.7;
  background: rgb(119, 119, 119);
  pointer-events: none;
}

.disabled_btn:hover {
  background: rgb(119, 119, 119);
}

.laptop__category {
  background: linear-gradient(45deg, #ab89f7, #c161f6);
  transform: skewX(-12deg);
  position: absolute;
  left: 0;
  top: 0;
  padding: 4px 12px;
}

.laptop__category p {
  font-size: 1rem;
  font-weight: 600;
  transform: skewX(12deg);
  margin: 0;
}

.cta--disabled {
  pointer-events: none;
  cursor: default;
  background: rgb(138, 138, 138);
  opacity: 0.6 !important;
}

.steam_img {
  width: 100%;
  height: auto;
}

.steam__wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.steam__wrapper h2 {
  font-weight: 200;
}

@media (max-width: 768px) {
  .steam__wrapper {
    text-align: center;
  }

  .steam_img {
    width: 80%;
  }
}
