body {
  background: rgb(0, 18, 25);
  color: rgb(51, 51, 51);
  line-height: 1.6;
  margin: 0px;
  font-family: "Varela Round", sans-serif;
}

a {
  text-decoration: none;
}

header {
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(100, 255, 218, 0.2);
  box-sizing: border-box;
  background: rgba(10, 147, 150, 0.45);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 100px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0px 10px;
}

.logo img,
.bottom-logo img {
  width: 208px;
  height: 90px;
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  padding: 0px;
}

.nav-menu a,
.bottom-nav-menu a {
  color: rgb(238, 155, 0);
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: rgb(202, 103, 2);
  text-shadow: rgba(233, 216, 166, 0.506) 0px 0px 10px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 0px;
  height: 2px;
  background: rgb(202, 103, 2);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 4px;
  width: 25px;
  background: rgb(238, 155, 0);
  margin: 4px 0px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .logo img {
    width: 208px;
    height: 90px;
  }

  .nav-menu {
    position: absolute;
    top: 100px;
    left: 0px;
    width: 100%;
    padding: 20px 0px;
    background: rgba(0, 0, 0, 0.804);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-menu.show {
    display: flex;
  }
}

.search-box {
  display: flex;
  align-items: center;
  background: rgb(248, 249, 250);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  height: 30px;
  margin: 0px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  padding: 5px;
}

.search-box span {
  font-size: 18px;
  margin-left: 8px;
}

.game-card.highlight,
.game-card-small.highlight {
  outline: rgb(233, 216, 166) solid 3px;
  border-radius: 12px;
  animation: 0.6s ease-in-out 0s 1 normal none running glow;
}

@keyframes glow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

mark {
  background-color: yellow;
  color: black;
  padding: 0px 2px;
  border-radius: 3px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgb(248, 249, 250);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  r: 2px solid transparent;
  transition: border-color 0.3s;
}

@media (max-width: 1020px) {
  .search-box {
    display: none;
  }

  header {
    justify-content: space-between;
    padding: 10px 20px;
  }
}

.search-box:focus-within {
  border-color: rgb(148, 210, 189);
}

.search-box input {
  border: none;
  background: none;
  outline: none;
  padding: 0.3rem;
}

.hero-section {
  padding: 0px;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: rgba(0, 0, 0, 0.3) 2px 2px 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.container {
  margin: 0px auto;
  padding: 0px;
}

.section {
  background: transparent;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 25px;
  overflow: scroll;
  display: flex;
  padding: 10px 100px;
  align-items: center;
}

.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px 12px 0px 0px;
  margin: 0px;
  background: transparent;
  padding: 0px 10px;
}

.section-title img {
  height: 180px;
}

.games-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: scroll;
  height: auto;
  justify-content: center;
}

.games-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.scroll-button {
  border: none;
  color: white;
  font-size: 3.5rem;
  padding: 5px 0px;
  cursor: pointer;
  z-index: 1;
  height: 250px;
}

.scroll-button.left {
  position: absolute;
  left: 0px;
  background: linear-gradient(80deg, rgb(1, 17, 25), rgba(0, 0, 0, 0.38));
}

.scroll-button.right {
  position: absolute;
  right: 0px;
  background: linear-gradient(90deg, rgba(1, 17, 25, 0.196), rgb(1, 17, 25));
}

.games-grid {
  display: flex;
  overflow: scroll;
  gap: 1.5rem;
  background: transparent;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: rgba(128, 129, 129, 0.59);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  width: 350px !important;
  height: auto !important;
}

.game-card-small {
  display: flex;
  flex-direction: column;
  background: rgb(31, 42, 46);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  width: 160px !important;
  height: auto !important;
}

.game-card:hover,
.game-card-small:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 25px;
  outline: rgb(233, 216, 166) solid 3px;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  grid-auto-flow: column;
}

.game-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0.09), rgb(1, 17, 25));
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
  overflow: hidden;
}

.game-title {
  font-size: 0.7rem;
  overflow: scroll;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.game-card:hover .game-image-overlay {
  opacity: 1;
}

.game-card-small:hover .game-image-overlay {
  opacity: 1;
  overflow: scroll;
}

.game-thumbnail {
  width: 280px;
  height: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgb(102, 126, 234);
}

.game-thumbnail img {
  width: 280px;
  height: auto;
  border-radius: 10px;
}

.game-thumbnail-small {
  width: 160px;
  height: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgb(102, 126, 234);
}

.game-thumbnail-small img {
  width: 160px;
  height: auto;
  border-radius: 10px;
}

.game-info {
  padding: 1rem;
  width: 300px;
}

.category-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.7rem 1.5rem;
  background: rgb(248, 249, 250);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
  background: rgb(102, 126, 234);
  color: white;
  transform: translateY(-2px);
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.playpage-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: scroll;
  margin: 20px 0px;
}

.game-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 20px;
  width: 85%;
  /* max-width: 1000px; */
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: 0.8s ease-out 0s 1 normal none running slideUp;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game-container::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: 20s linear 0s infinite normal none running rotate;
  pointer-events: none;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gameName {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 30px 0px;
  background: linear-gradient(
      rgb(187, 62, 3),
      rgb(202, 103, 2),
      rgb(238, 155, 0)
    )
    text;
  -webkit-text-fill-color: transparent;
  animation: 1s ease-in-out 0s infinite alternate none running glow;
}

.aboutGame {
  display: flex;
  flex-direction: column;
}

.gameImgLink {
  width: 20%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin: 20px 0px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 15px 30px;
  transition: 0.4s;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.gameImgLink:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 40px;
}

.playLink {
  background: linear-gradient(45deg, rgb(202, 103, 2), rgb(238, 155, 0));
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  margin: 30px 0px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.153) 0px 10px 20px;
  overflow: hidden;
  width: 30%;
}

.playLink::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.playLink:hover::before {
  left: 100%;
}

.playLink:hover {
  transform: translateY(-3px);
  box-shadow: rgba(1, 1, 1, 0.32) 0px 15px 30px;
  background: linear-gradient(45deg, rgb(238, 155, 0), rgb(202, 103, 2));
}

.playLink:active {
  transform: translateY(-1px);
  box-shadow: rgba(255, 107, 107, 0.4) 0px 8px 16px;
}

.gameDescription {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  text-align: justify;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.game-meta-details {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 0px;
  border-radius: 8px;
  height: fit-content;
  margin-top: 20px;
}

.meta-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 133, 133, 0.36);
}

.meta-item:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.meta-label {
  color: rgba(255, 255, 255, 0.9);
}

.meta-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.rating-stars {
  color: rgb(255, 215, 0);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: 6s ease-in-out 0s infinite normal none running float;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  0% {
    text-shadow: rgba(255, 111, 89, 0.5) 0px 0px 20px;
  }

  100% {
    text-shadow: rgba(242, 232, 207, 0.8) 0px 0px 30px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 1200px) {
  .game-container {
    width: 90% !important;
  }

  .bottom-logo p {
    max-width: 100% !important;
  }

  .footer-content {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .bottom-nav-menu {
    margin-top: 20px;
    justify-content: flex-start;
  }

  footer {
    padding: 20px !important;
  }

  .gameImgLink {
    width: 30% !important;
  }

  header {
    padding: 2px 20px;
  }
  .section {
    padding: 2px 20px;
  }
  .scroll-button {
    font-size: 2rem;
  }
  .affiliateBg img {
    margin: 0 !important;
    border-radius: 0px !important;
  }
  .contentPage-main {
    padding: 0 20px !important;
  }
}

@media (max-width: 600px) {
  .game-container {
    padding: 30px 20px;
  }

  .gameName {
    font-size: 2rem;
  }

  .playLink {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
}

footer {
  background: rgba(10, 147, 150, 0.45);
  color: white;
  padding: 2rem 7rem;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Layout */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ===== LOGO + DESCRIPTION ===== */
.bottom-logo img {
  width: 160px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 200, 0.25));
}

.bottom-logo p {
  font-size: 14px;
  line-height: 1.7;
  color: #b5b5b5;
  max-width: 360px;
  text-align: justify;
}

/* ===== PAGE LINKS ===== */
.content-pages h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.content-pages h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fe7d1c, #ffbf22);
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.bottom-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bottom-nav-menu li {
  margin-bottom: 10px;
}

.bottom-nav-menu a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.bottom-nav-menu a:hover {
  color: #00ffd5;
  padding-left: 6px;
}

/* ===== CONTACT FORM ===== */
.footer-contact h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-contact h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fe7f1b, #fefcf0);
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.footer-contact button {
  background: #fe891e;
  padding: 0.5rem 2.5rem;
  border-radius: 15px;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ===== COPYRIGHT ===== */
footer > p {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #8a8a8a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bottom-logo p {
    max-width: 100%;
  }
}

.play-button {
  background: linear-gradient(
    135deg,
    rgb(148, 210, 189) 0%,
    rgb(10, 147, 150) 100%
  );
  color: white;
  border: none;
  padding: 0.4rem 2.4rem;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
  margin: 0.4rem 0px;
}

.play-button:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .search-box input {
    width: 150px;
  }
}

.stats-bar {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin: 2rem 0px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: white;
}

.stat-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.floating-elements {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: 6s ease-in-out 0s infinite normal none running float;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.contentPage-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 7rem;
  margin: 20px 0;
}
.contentPage-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
}

.contentPage-container h3 {
  color: #ee9b00;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 0 0;
}

.contentPage-container p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 20px 0;
}

.contentPage-container h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
}

.affiliateBg img {
  margin: 20px 0;
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 1830px) {
  .affiliateBg img {
    margin: 0 !important;
    width: 100%;
    border-radius: 0px !important;
  }
}
.mb-3 {
  margin: 10px 0;
  color: #fff;
}
.mb-3 a,
li a {
  color: #538bff;
}

.banner_top,
.banner_mid_1,
.banner_mid_2,
.banner_mid_3,
.banner_mid_4 {
  display: flex;
  width: 100%;
  justify-content: center;
}
.game-player-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #ffffff85;
}

.game-frame {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.game-wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #000;
  z-index: 2;
}

.game-wallpaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}

.fullscreen-btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, rgb(202, 103, 2), rgb(238, 155, 0));
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 768px) {
  .game-player-wrapper {
    aspect-ratio: 9/16;
  }
}
