body {
  background-color: #000;
  margin: 0;
  padding: 0;
}

header {
  font-size: clamp(0.75rem, 1.2vw, 1.2rem);
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-logo img {
  width: clamp(15rem, 30vw, 20rem);
  height: auto;
}

.nav-page {
  text-transform: uppercase;
}

.nav-page a {
  padding: 0 clamp(0.5rem, 1.2vw, 1.5rem);
  color: #9c9c9c;
  font-size: clamp(0.85rem, 1.15vw, 1.15rem);
}

.nav-page a:hover {
  color: #fff;
  text-decoration: underline #fff;
  text-underline-offset: 5.6px;
  transition: 0.3s;
}

.fundo-img {
  max-width: 100%;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.fundo-img img {
  content: "";
  position: absolute;
  top: calc(-35% + 10px);
  left: 0;
  width: 100%;
  height: clamp(40rem, 60vw, 70rem);
  z-index: -1;
  object-fit: cover;
  object-position: center top;
}

.container-buy-learn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: clamp(8rem, 12vw, 15rem);
  padding-bottom: clamp(8rem, 12vw, 15rem);
  padding-right: clamp(2rem, 6vw, 8rem);
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
}

.container-buy-learn .text-ex {
  text-transform: uppercase;
  color: #fff;
}

.text-ex p {
  position: relative;
  font-family: 'Cinzel';
  font-weight: 600;
  font-size: large;
  right: 4rem;
  bottom: 1rem;
}

.btn-buy-game {
  color: #fff;
  padding: clamp(0.6rem, 1.2vw, 1.2rem) clamp(1.8rem, 2.5vw, 3rem);
  text-transform: uppercase;
  border: 0.2rem solid #fff;
  border-radius: 10rem;
  cursor: pointer;
  font-size: clamp(0.8rem, 1.1vw, 1.1rem);
}

.btn-buy-game:hover,
.btn-learn-more:hover {
  background-color: #fff;
  color: #000;
  transition: 0.3s;
}

.text-box {
  display: flex;
  justify-content: center;
  padding-top: clamp(5rem, 5vw, 1rem);
  position: relative;
  z-index: 1;
}

.game-description {
  text-align: center;
  width: clamp(18rem, 40vw, 30rem);
  font-size: clamp(0.85rem, 1.2vw, 1.2rem);
  color: #fff;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.media {
  background-color: #141414;
  color: #fff;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.media h1 {
  display: flex;
  justify-content: center;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  padding: clamp(2rem, 3vw, 3rem);
}

.main-video {
  display: flex;
  justify-content: center;
}

.main-video iframe {
  background-size: cover;
  width: clamp(20rem, 45vw, 50rem);
  height: clamp(12rem, 28vw, 30rem);
}

.container {
  position: relative;
  padding: clamp(0.8rem, 1.2vw, 15px);
  max-width: 100rem;
  margin: 0 auto;
}

.arrow-left,
.arrow-right {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  font-size: clamp(1rem, 1.5vw, 20px);
  line-height: 250px;
  width: clamp(30px, 3vw, 40px);
  color: #fff;
  transition: all 600ms ease-in-out;
  background: linear-gradient(to left, transparent 0%, black 200%);
  opacity: 0.1;
  cursor: pointer;
  border: none;
}
.arrow-left:hover,
.arrow-right:hover {
  opacity: 1;
}

.arrow-right {
  right: 0;
  left: auto;
  text-align: right;
  background: linear-gradient(to right, transparent 0%, black 200%);
}

.img-carrossel {
  display: flex;
  flex-flow: row nowrap;
  gap: clamp(8px, 1vw, 15px);
}

.item {
  width: clamp(15rem, 22vw, 25rem);
  height: clamp(9rem, 13vw, 15rem);
  flex-shrink: 0;
  transition: all 600ms ease-in-out;
  opacity: 0.5;
}

.current-item {
  opacity: 1;
  overflow-x: auto;
}

.screenshots {
  padding-bottom: clamp(0.5rem, 1vw, 1rem);
  padding: clamp(1rem, 1.2vw, 1.5rem);
  overflow-x: hidden;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  cursor: pointer;
}

.popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  cursor: default;
  display: inline-block;
}

.popup-image {
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

.popup-close {
  position: absolute;
  top: 10px;  
  right: 10px;
  background-color: #202020;
  color: #fff;
  border: none;
  width: clamp(30px, 3vw, 50px);
  height: clamp(30px, 3vw, 40px);
  border-radius: 10%;
  font-size: clamp(1rem, 1.5vw, 20px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup-close:hover {
  background-color: #202020ce;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about {
  background-color: #f2f2f2;
  color: #141414;
  padding: clamp(2rem, 3vw, 3rem) 0;
  max-width: 1920px;
  margin: 0 auto;
}

.about .text-about {
  display: flex;
  justify-content: center;
}

.about h1 {
  display: flex;
  justify-content: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  padding: clamp(2rem, 3vw, 3rem);
}

.about p {
  width: clamp(20rem, 60vw, 50rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  text-align: center;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
}

footer {
  background-color: #141414;
  margin: 0 auto;
  padding: 0 clamp(2rem, 3vw, 3rem);
  max-width: 1920px;
}

.contact-media {
  display: flex;
  justify-content: space-between;
  padding: clamp(2rem, 3vw, 3rem) 0;
  margin: 0;
}

.contact h1 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.media-social a img {
  width: clamp(2rem, 4vw, 3.75rem);
  height: clamp(2rem, 4vw, 3.75rem);
}

.logo-nav {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.logo-nav .logo-footer img {
  margin: clamp(-1rem, -2vw, -2rem);
  width: clamp(12rem, 18vw, 23rem);
}

.contain-nav {
  padding-top: clamp(3rem, 5vw, 6rem);
}

.nav-page-footer,
.nav-page-footer-two {
  display: flex;
  gap: clamp(0.5rem, 1vw, 1rem);
  font-size: clamp(0.8rem, 1.05vw, 1.05rem);
}

.nav-page-footer a,
.nav-page-footer-two a,
.nav-page-footer p,
.nav-page-footer-two p {
  color: #fff;
}

.email {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 0.6vw, 0.6rem);
  padding: clamp(1rem, 2vw, 3rem) 0;
  margin: 0;
}

.email .email-logo {
  width: clamp(2rem, 4vw, 2rem);
  height: auto;
  margin-right: clamp(0.2rem, 0.5vw, 0.2rem);
}

.email a {
  color: #fff;
  font-size: clamp(0.8rem, 1.05vw, 1.05rem);
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(2rem, 3vw, 3rem) 0;
    color: #fff;
    font-size: clamp(0.75rem, 0.95vw, 1.05rem);
    margin: 0;
}

.bottom-footer p {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.bottom-footer .considerations a {
    color: #ff4444;
    line-height: 1;
}