@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
}


.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: black;
}

.header .nav-item {
  padding-right: 20px;
}

.header .nav-item .nav-link:hover {
  color: #ff9999;
  transition: 0.05s ease-out;
}

.header .nav-link {
  color: white;
  font-size: 1.1rem;
}

.header .nav-link-active {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar-logo img {
  width: 50px;
  border-radius: 50%;
}

.hero-section {
  margin: 0 auto;
  margin-top: 70px;
  padding: 200px 0;
  text-align: center;
  background: url('../assests/bg-3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
  margin-bottom: 0;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: bold;
  font-family: "Orbitron", serif;
}

.hero-section p {
  font-size: 1.4rem;
}

h3, h4, h5, p {
  font-family: "Roboto", serif;
}


.hero-button .btn {
  font-family: "Orbitron", serif;
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-section .btn1 {
  background-color: #d32f2f;
  border-color: #d32f2f;
  color: white;
}

.hero-section .btn1:hover {
  opacity: 0.8;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.reviews-dots .dot {
  background-color: #d32f2f;
}

.slider-dots {
  margin: 0 auto;
  margin-top: 10px;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}


.featured-game-section {
  margin-bottom: 40px;
}

.featured-game-section .hero-text h2,
.games-category .hero-text h2,
.latest-reviews .hero-text h2,
.latest-news .hero-text h2,
.upcoming-games .hero-text h2 {
  font-family: "Orbitron", serif;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 10px;
}

.featured-game-section .featured-game-hero-text {
  font-size: 1.7rem;
  font-weight: bold;
}

.featured-game-section .bt {
  font-weight: bold;
}

.games-category {
  background-color: #2c2c2c;
  padding-bottom: 30px;
}

.games-category .card {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  height: 21rem;
  border-radius: 10px;
  background-color: black;
  border: none;
  color: white;
}

.games-category .card img,
.latest-reviews .card img {
  margin-top: 10px;
  border-radius: 10px;
}

.swiper-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-div {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.cards-div .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: white;
}

.cards-div .swiper-pagination-bullet-active {
  opacity: 1;
}

.cards-div .swiper-slide-button {
  color: white;
}

.games-category .card-body {
  height: 5rem;
  font-size: 1rem;
  line-height: 1.3;
  padding-left: 2px;
  /* width: 100%; */
}

.games-category .card-title {
  font-weight: bold;
  font-size: 1.05rem;
}

.games-category .card-text {
  font-size: 0.9rem;
  padding-bottom: 10px;
}

.games-category .card .btn {
  box-shadow: none;
}

.games-category .card-list .card img {
  margin-top: 10px;
  border-radius: 10px;
}

.games-category .card-list .card {
  padding: 10px;
  padding-top: 2px;
  user-select: none;
}

.link-pages a {
  width: 100%;
  text-align: center;
  margin-top: 0;
}

.latest-reviews {
  margin-bottom: 40px;
  padding-top: 20px;
}
.latest-reviews h2 {
  color: #d32f2f;
}

.latest-reviews .card {
  border: 1px solid #d32f2f;
  background: transparent;
  color: #d32f2f;
}

.latest-reviews .row {
  justify-content: center;
  gap: 18px;
}

.latest-reviews .card h5 {
  font-size: 1rem;
  font-weight: bold;
}

.latest-reviews .card p {
  font-size: 0.9rem;
}

.latest-reviews .card-text-1 {
  margin-bottom: 5px;
}


.latest-reviews .card-text-2 {
  margin-bottom: 10px;
  margin-top: 0;
  padding-top: 0;
}

.latest-reviews .card a {
  border: 1px solid #d32f2f;
  color: #d32f2f;
}

.latest-reviews .card a:hover {
  background-color: #d32f2f;
  color: black;
}

.latest-reviews .see-all-reviews-btn {
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
}

.latest-reviews .see-all-reviews-btn a {
  background-color: #d32f2f;
  color: white;
  padding: 10px;
  width: 30%;
}



.latest-news {
  background-color: #2c2c2c;
  color: white;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.latest-news .hero-text h2 {
  margin-bottom: 15px;
}


.latest-news .latest-news-container .row {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid white;
}


.latest-news .latest-news-container .row .lp a {
  text-decoration: none;
  cursor: pointer;
}

.latest-news .latest-news-container .row .bt {
  font-weight: bold;
}

.upcoming-games .upcoming-games-row .card img {
  border-radius: 10px;
}

.upcoming-games {
  margin-bottom: 30px;
}

.upcoming-games h2 {
  padding-bottom: 15px;
}

.upcoming-games .upcoming-games-row {
  gap: 15px;
  justify-content: center;
}

.latest-reviews .card:hover,
.upcoming-games .upcoming-games-row .card:hover {
  transition: transform 0.4s ease-out;
  transform: scale(1.02);
}

.upcoming-games .upcoming-games-row .card {
  background-color: #2c2c2c;
  color: white;
  padding: 10px;
}

.upcoming-games .upcoming-games-row .card .card-text {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.upcoming-games .upcoming-games-row .card .card-body h5,
.upcoming-games .upcoming-games-row .card .card-text .bt {
  font-weight: bold;
}


footer {
  background-color: #8B0000;
  padding: 20px 50px 40px;
}

footer .row {
  justify-content: space-evenly;
}

footer .footer-brand-name {
  display: flex;
  align-items: end;
  gap: 10px;
}

footer .footer-brand-name h3 {
  font-weight: bold;
}

footer .footer-brand-text {
  margin-top: 7px;
}

footer .footer-logo {
  width: 45px;
  border-radius: 50%;
}

footer .footer-icons {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-top: 20px;
}

footer .footer-icons img {
  width: 30px;
  filter: contrast(0) brightness(100);
}

footer .footer2-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  width: 200px;
}

footer .footer2-div a {
  text-decoration: none;
  color: white;
  width: 150px;
}

footer .footer2-div a:hover {
  color: #ff9999;
}


@media(max-width: 768px) {
  .hero-section {
    padding: 150px 0 70px;
    background-size: contain;
    background-position: center;
    height: 80vh;
    margin-top: -100px;
    margin-bottom: 0;
  }

  .hero-section .row {
    padding-top: 70px;
    margin-top: 0;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }
}

@media(max-width: 590px) {
  .hero-section {
    margin-top: -150px;
    height: 100vh;
  }

  .hero-section .row {
    padding-top: 90px;
  }
}


@media(max-width: 500px) {
  .hero-section {
    height: 100vh;
  }
}

@media(max-width: 475px) {
  .hero-section {
    padding: 3% 0 0;
    margin-top: 70px;
    margin-bottom: 0;
    background-size: auto;
    height: 50vh;

  }

  .hero-section .row {
    padding-top: 50px;
    padding-bottom: 40px;
    margin-top: 0;
  }

  .hero-section h1 {
    font-size: 2.6rem;
  }

  .hero-section .hero-button {
    margin-top: 20px;
  }
}

@media(max-width: 385px) {
  .hero-section .hero-button {
    margin-top: 0;
  }
}

@media(max-width: 768px) {
  .hero-section {
    height: auto;
  }
}


@media(max-width: 991px) {
  .navbar-toggler {
    border-color: #d32f2f;
  }

  .navbar-toggler {
    color: #d32f2f;
  }

  .navbar-toggler-icon {
    filter: contrast(0) brightness(100);
  }

  .featured-game-section .featured-game-row {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .latest-news .latest-news-container .row .fp {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .latest-news .latest-news-container .row .lp {
    margin-bottom: 5px;
    margin-top: 0;
  }


  footer .row {
    justify-content: left;
  }

  footer .row .footer2-div {
    margin-bottom: 17px;
  }

  footer .footer2-div a {
    border-bottom: 1px solid white;
  }

}

@media(min-width: 900px) {
  .featured-game-section {
    margin-top: 10px;
  }
}

@media(max-width: 500px) {
  .featured-game-section {
    margin-top: 15px;
  }
}

@media(max-width: 521px) {
  .latest-reviews .see-all-reviews-btn a {
    padding: 8px;
    width: 50%;
  }
}

@media(max-width: 477px) {
  .latest-games-news-section .hero-text h2{
    margin-bottom: 15px;
  }
}


@media(max-width: 400px) {

  .cards-div {
    margin: 0 30px 20px;
    padding: 10px 10px 10px 13px;
    overflow: hidden;
  }

  .games-category .card-list .card {
    width: 18rem;
  }
}

@media(max-width: 375px) {
  .hero-button .btn {
    font-size: 0.8rem;
  }
}

@media(min-width: 500px) {
  .featured-game-section .hero-text h2,
  .games-category .hero-text h2,
  .latest-reviews .hero-text h2,
  .latest-news .hero-text h2,
  .upcoming-games .hero-text h2 {
    font-size: 2.5rem;
  }
}