:root {
  --footer-bg: #1c1c1c;
  --footer-text: #f0f0f0;
  --footer-link: #cccccc;
  --footer-link-hover: #ffffff;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

/* Initial transparent header */
.transparent-header {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.558);
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  background-color: #010108;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Optional animation */
@keyframes fadeInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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


.transparent-header .nav-link {
  color: White;
  /* background-color: #fff89a; */
  padding: 8px 15px;
  margin: 5px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.navbar-brand .transparent-header .nav-link:hover,
.transparent-header .nav-link:focus {
  background-color: #ffe600;
  color: #000000;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.transparent-header a {
  color: white;
  font-weight: 800;
}

.transparent-header a:hover {
  color: #bbf706;
  text-decoration: none;
}

.navbar-toggler {
  border: 1px solid #ccc;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.navbar-toggler:hover {
  text-decoration: none;
  background-color: #ffffff !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



.hero-modern {
   background-image: 
    linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.58) 25%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 55%),
    url('../../assets/images/bg1.avif');
  background-size: cover;
  background-position: center;
  min-height: 85vh;
}

#heroTitle {
  font-size: 6rem;
  color: #ffffff;
  font-family: "Lora", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#heroSubtitle {
  font-size: 2rem;
  color: #eff707;
  font-weight: 500;
  font-family: "Lora", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-stack {
  position: relative;
  height: 400px;
}

.image-stack img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.8s ease;
}

.img-main {
  width: 500px;
  top: 50px;
  left: 100px;
  z-index: 3;
}

.img-behind-1 {
  width: 520px;
  top: 80px;
  left: 40px;
  z-index: 2;
}

.img-behind-2 {
  width: 500px;
  top: 120px;
  left: 160px;
  z-index: 1;
}

.custom-btn {
  display: inline-block;
  padding: 2px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-btn.filled {
  background: linear-gradient(135deg, #b3ff00, #eeff00);
  color: rgb(161, 11, 11);
}

.custom-btn.filled:hover {
  /* background: linear-gradient(135deg, #46dd00, #0055dd); */
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.custom-btn.outline {
  background: transparent;
  color: #ffffff;
}

.custom-btn.outline:hover {
  /* background: #00aaff; */
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}



@media screen and (max-width: 768px) {
  .image-stack img {
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .image-stack {
    position: relative;
    height: 200px;
  }
}

.btn-warning:hover {
  background: #fff;
  color: #000;
}


.gaming-features {
  background: rgba(225, 216, 216, 0.81);
}

.feature-box {
  background: #781515;
  /* border: 4px solid #f8af05; */
  border-radius: 12px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}


.feature-box h2 {
  color: #eded0b;
}

.feature-box:hover {
  /* box-shadow: inset 0px 0px 12px 7px #f4d005; */
  box-shadow: #f4d005 0px 2px 4px, #f4d005 0px 7px 13px -3px, #f4d005 0px -3px 0px inset;
  transform: translateY(-6px);

}

.feature-box h5 {
  transition: color 0.3s;
  color: #c5cf0e;
}

.feature-box:hover h5 {
  color: #f1fd0d;
}

.feature-box ul {
  padding-left: 18px;
  margin-top: 12px;
}

.feature-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  color: white;
}

.icon-wrap {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-box:hover .icon-wrap {
  transform: rotate(360deg) scale(1.5);
}



.marquee-section {
  overflow: hidden;
  white-space: nowrap;
  background-color: #000;
  border-top: 2px solid #f7b733;
  border-bottom: 2px solid #f7b733;
  padding: 10px 0;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  font-weight: bold;
  font-size: 1.2rem;
  color: #f7b733;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.marquee-content img {
  height: 30px;
  vertical-align: middle;
  filter: drop-shadow(0 0 2px #fff);
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}





.game-slider-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.game-slider-section .title {
  font-family: 'Lora', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.game-slider-section .subtitle {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.game-card {
  width: 360px;          /* increased from 220px */
  height: 750px;         /* increased from 390px */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Swiper Custom Styling */
.swiper {
  padding-bottom: 60px;
  height: 850px; /* Optional if you want it fixed */
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #fdbb2d;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}





.about-section h2 {
  font-size: 2rem;
  /* color: #2a12b5; */
}

.about-section p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-section .shadow-sm {
  /* background-color: #fdfdfd; */
  color: #fff;
}


.modern-faq {
  background-color: #f8f9fa;
}

.faq-card {
  /* background: #fff; */
  border: 1px solid #e0e0f0;
  border-radius: 12px;
  padding: 24px;
  transition: 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-align: left;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-card .faq-icon {
  font-size: 2rem;
  color: #2a12b5;
  margin-bottom: 12px;
}

.faq-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.faq-card p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 0;
}

.read-more-link {
  font-weight: 500;
  color: #2a12b5;
  text-decoration: none;
}

.read-more-link:hover {
  text-decoration: underline;
}




.footer .nav-link {
  color: var(--footer-link);
}

.footer .nav-link:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}


@media (max-width: 991.98px) {
  .transparent-header .navbar-collapse.show .nav-link {
    background-color: #fff89a;
    /* Soft yellow background */
    color: #2a12b5;
    /* Your branded blue */
    margin: 5px 0;
    border-radius: 6px;
    padding: 10px 15px;
  }

  .transparent-header .navbar-collapse.show .nav-link:hover {
    background-color: #ffe600;
    color: #000;
  }
}