html, body {
    margin: 0;
	  font-family: 'Quicksand', sans-serif;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
    z-index: 5;
}

.navbar__logo img {
    height: 50px;
}

.navbar__game-name h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
}

.navbar__play-now {
  padding-right: 30px;
}

.navbar__play-now button {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}

.navbar__play-now button a {
  text-decoration: none;
  color: black;
  text-align: center;
}

.video-section {
    position: relative;
    height: 100vh; /* subtract 100px for the navbar height */
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 50px;
    background-color: #fff;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: black;
    text-align: center;
}

.carousel {
    width: 100%;
    min-height: 80vh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-top: 10vh;
    padding-bottom: 5vh;
    background-color: #363636;
  }

  .carousel-content__header {
    text-align: center;
    padding: 20px 0 0 0;
    font-weight: bold;
    width: 100%;
    font-size: 32px;
    color: white;
  }
  
  .carousel__container {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
    align-items: center;
    justify-content: center;
    height: 95%;
  }  
  
  .carousel__page {
    flex: 0 0 100%;
    display: none;
    flex-direction: column;
    height: 100%;
  }

  .carousel__page--active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .carousel__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* gap: 20px; */
  }

  .carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .carousel-item:nth-child(odd) {
    justify-self: end;
    /* background-color: aquamarine; */
  }
  
  .carousel-item:nth-child(even) {
    justify-self: start;
    /* background-color: bisque; */
  }
  
  .carousel__header {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  color: white;
}

.carousel__image {
  max-width: 28vh;
  height: auto;
  margin-bottom: 0 auto;
  object-fit: contain;
}

.carousel__text-columns {
  font-size: 24px;
  max-width: 100%;
  text-align: center;
  color: white;
  /* margin-top: 20px; */
}

.ability-icon__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  justify-items: center;
}

.ability-icon__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #fafafa;
  border-radius: 4px;
  max-width: 256px;
  width: 80%;
}

.ability-icon__button.active {
  background-color: black;
}

.ability-video {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border: 3px solid #fafafa;
}

.carousel__image1 {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border: 3px solid #fafafa;
}

.carousel__navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
  }

.carousel__circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 10px;
  cursor: pointer;
}

.carousel__circle--active {
  background-color: yellow;
}

.ytvideo-section {
  max-width: 100%;
  margin: 20px auto;
  text-align: center;
}

.yt-content__header {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  padding-bottom: 10px;
}

.ytvideo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
}

.ytvideo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 4);
  margin-bottom: 40px;
  text-decoration: none;
  color: #333;
}

.ytvideo-link img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.ytvideo-title {
  margin-top: 10px;
  width: 75%;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 960px) {
  .ytvideo-link img {
    max-width: 150px;
  }
  
  .ytvideo-link {
    width: calc(100% / 2);
  }
}

@media (max-width: 1024px) {
  .mode-content__buttons {
    grid-template-columns: repeat(2, 1fr); /* 3 rows, 2 columns */
    grid-template-rows: repeat(3, 1fr);
  }

  #mode-content__text {
    max-width: 80%;
  }

  .carousel__items {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 20px;
  }

  .carousel-item {
    width: 100%;
    justify-self: center;
    order: 2;
  }

  .carousel-item:nth-child(odd) {
    order: 1;
  }
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 20px;
}

.footer__contact p {
  margin-top: 6px;
  margin-bottom: 8px;
}

.bottom-social {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  padding-bottom: 10px;
}

.bottom-social .fa-twitter {
  background: #000;
  color: #f5f6fa;
  padding-left: 5px;
}

.bottom-social .fa-youtube {
  background: #000;
  color: #f5f6fa;
  padding-right: 5px;
}

.footer__contact a {
    color: #fff;
    text-decoration: none;
}

.footer__contact {
    font-size: 16px;
}
