
body {
  background: #001219;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-family: "Varela Round", sans-serif;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 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: 0;
}

.nav-menu a,
.bottom-nav-menu a {
  color: #EE9B00;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #CA6702;
  text-shadow: 0 0 10px #e9d8a681;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CA6702;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 4px;
  width: 25px;
  background: #EE9B00;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .logo img {
    width: 208px;
    height: 90px;
  }
  .nav-menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    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: #f8f9fa;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  height: 30px;
  margin: 0;
}

.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: 3px solid #E9D8A6;
  border-radius: 12px;
  animation: glow 0.6s ease-in-out;
}

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

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

.search-box {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

@media (max-width: 1020px) {
    .search-box {
        display: none;
    }
    header {
        justify-content: space-between;
        padding: 10px 20px;
    }
    
}
.search-box:focus-within {
  border-color: #94D2BD;
}

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

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

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

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

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

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

.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px 12px 0 0;
  margin: 0;
  background: transparent;
  padding: 0 10px;
}
.section-title img {
  height: 250px;
}
.games-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: scroll;
}

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

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

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

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

.games-grid {
  display: flex;
  overflow: scroll;
  gap: 1.5rem;
  background: transparent;
  padding: 20px;
  border-radius: 0 0 12px 12px;
}

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

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

.inner-grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 12px;
    grid-auto-flow: column;
}
.game-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.089), rgb(1 17 25));
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}
.game-title {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}
.game-card:hover .game-image-overlay {
  opacity: 1;
}
.game-card-small:hover .game-image-overlay {
  opacity: 1;
}
.game-thumbnail {
  width: 350px;
  height: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #667eea;
}
.game-thumbnail img {
  width: 350px;
  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: #667eea;
}
.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: #f8f9fa;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
  background: #667eea;
  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 0;
}

.game-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 1000px;
  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;
}

.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: rotate 20s linear infinite;
  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 0;
  background: linear-gradient(180deg, #BB3E03, #CA6702, #EE9B00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 1s ease-in-out infinite alternate;
}
.aboutGame {
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

.playLink:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(1, 1, 1, 0.323);
  background: linear-gradient(45deg, #EE9B00,  #CA6702);
}

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

.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);
}

.game-meta-details {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  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 #ff85855c;
}

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

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

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

.rating-stars {
  color: #ffd700;
}

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

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

.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 {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

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

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

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

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

@media (max-width: 1200px) {
  .game-container {
    max-width: 90%;
  }
  .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-contact {
    margin-top: 20px;
  }
  header {
    padding: 2px 20px;
  }
}

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

  .gameName {
    font-size: 2rem;
  }

  .gameImgLink {
    width: 100%;
    /* max-width: 250px; */
    /* height: 180px; */
  }

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

/* Footer */
footer {
  background: #0a939673;
  color: white;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}
footer p {
  font-size: 1rem;
  margin-top: 20px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.content-pages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.content-pages h4 {
  font-size: 1rem;
  margin: 0;
}
.bottom-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bottom-logo img {
  width: 150px;
  height: 70px;
}
.bottom-logo p {
  font-size: 0.8rem;
  text-align: start;
  margin-top: 10px;
  max-width: 500px;
}
.bottom-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  font-size: 0.8rem;
  padding: 0;
}
.footer-contact {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact form {
  display: flex;
}
.footer-contact h3 {
  margin: 20px 0;
  font-size: 1rem;
  color: #EE9B00;
}

.footer-contact input,
.footer-contact textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.footer-contact button {
  padding: 10px;
  width: 200px;
  color: #fff;
  background-color: #EE9B00;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
}

.footer-contact button:hover {
  background-color: #CA6702;
}

.play-button {
  background: linear-gradient(135deg, #94D2BD 0%, #0A9396 100%);
  color: white;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 1rem 0;
}

.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;
  }
  .aboutGame {
    flex-direction: column-reverse;
  }
}

.stats-bar {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin: 2rem 0;
  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: 0;
  left: 0;
  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: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.contentPage-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentPage-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  width: 100%;
  max-width: 1200px;
  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;
  color: #fff;
}
.affiliateBg img {
  width: 100%;
}
.mb-3 {
  margin-bottom: 20px;
}
.mb-3 a {
  color: #538bff;
}

.banner_top,
.banner_mid_1,
.banner_mid_2,
.banner_mid_3,
.banner_mid_4 {
  display: flex;
  width: 100%;
  justify-content: center;
}
