: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: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  background-color: #0c0c2c;
  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: #0cf5be;
    /* background-color: #fff89a; */
    padding: 8px 15px;
    margin: 5px;
    border-radius: 8px;
    font-weight: 500;
    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: #fff;
  font-weight: 500;
}

.transparent-header a:hover {
  color: #ddd;
  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-color: #00002e;
  /* background-image: url('../../assets/images/banner.jpg'); */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.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; }
.btn-warning {
  background: linear-gradient(to right, #fdbb2d, #f7b733);
  border: none;
  border-radius: 30px;
  padding: 20px 35px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@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;
}
.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-play-section {
  position: relative;
  padding: 80px 0;

}

.game-play-section .left-img,
.game-play-section .right-img {
  position: absolute;
  top: 0;
  width: 150px;
  z-index: 0;
}

.game-play-section .left-img {
  left: 0;
}

.game-play-section .right-img {
  right: 0;
}

.single-play {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.single-play .image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.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: #fff;
}

.faq-card p {
  font-size: 0.95rem;
  color: #fff;
  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;
  }
}
