@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* Primary Colors from Logo */
  --primary-blue: #364AFF;
  --primary-pink: #f6a700;
  --secondary-purple: #8D00DB;

  /* Background Colors */
  --dark-bg: #0F0A1A;
  --dark-card: #1A1225;
  --dark-card-hover: #251a33;

  /* Text Colors */
  --light-text: #FFFFFF;
  --muted-text: rgba(255, 255, 255, 0.7);

  /* Gradients */
  --gradient-primary: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  --gradient-hover: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
  --gradient-text: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.bg_color {
  background-color: #151436;
}

.header_sub {
  background-color: #262653;
  border-radius: 15px;
  margin: 10px 0;
  text-align: center;
}

.images_logo {
  padding: 10px 15px;
  text-align: center;
  display: inline-block;
}

.images_logo img {
  height: auto;
}

.game_image {
  position: relative;
  overflow: hidden;
  margin: 8px;
  border-radius: 12px;
}

.game_sec {
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.game_sec .game_celss {
  width: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #262653;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}

.game_image img {
  width: 100%;
  transition: transform 0.2s;
  /* Animation */
}

.game_list_cells {
  padding: 60px 0;
}

.game_details {
  padding: 0px 8px 15px 8px;
}

.game_details h4 {
  font-size: 16px;
}

.game_celss:hover .game_image img {
  -ms-transform: scale(1.1);
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Safari 3-8 */
  transform: scale(1.1);
}

.welcome_cells {
  text-align: center;
  padding: 20px 15px;
  background-color: #262653;
  border-radius: 26px;
  margin-top: 50px;
}

.welcome_cells h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 30px;
}

.BTN_2 {
      background: linear-gradient(to right, #f6a700, #f6a700);
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.BTN_2:hover {
  background: linear-gradient(to right, #364aff, #364aff);
  transform: scale(1.05);
  /* Slight zoom effect */
}

.BTN_2:active {
  transform: scale(0.95);
}


.BTN_2:hover,
.BTN:hover {
  background-color: #0096FF;
}

.BTN {
  background: #FA7B38;
  color: #ffffff;
  border: 0;
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.5s all;
}

.welcome_cells p {
  font-size: 18px;
  color: #ffffff;
}

.game_details_sec {
  margin-top: 50px;
}

.game_details_banner {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 600px;
}

.game_details_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game_details_banner::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.game_details_sec h2 {
  color: #ffffff;
  padding-bottom: 20px;
}

.game_details_sec {}

.play_game_ab {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo_images {
  height: 60px;
  width: 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.logo_images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.play_online_Des h4 {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  padding-left: 10px;
}

.play_online_Des {
  background-color: #262653;
  border-radius: 16px;
  margin: 20px 0;
  padding: 15px;
}

.ss_des p {
  color: #ffffff;
}

/* Mobiles CSS */

@media (min-width: 0px) and (max-width: 767px) {
  .game_sec {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome_cells h2 {
    font-size: 18px;
  }

  .welcome_cells {
    margin-top: 20px;
  }


  .game_list_cells {
    padding: 40px 0;
  }

  .welcome_cells {
    border-radius: 16px;
  }

  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .game_details_banner {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: auto;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .game_sec {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }


  .welcome_cells h2 {
    font-size: 18px;
  }

  .game_list_cells {
    padding: 40px 0;
  }

  .welcome_cells {
    border-radius: 16px;
  }
}

@media (min-width: 1025px) and (max-width: 1170px) {
  .game_sec {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

/* //--------------------------------------------------------------------------- */

/* Make sure the whole page takes full height */
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ensure the main content expands while keeping the footer at the bottom */
.main-content {
  flex: 1;
}


/*---------------------------------------- contact style start-  ------------------------------------ */

/* Contact Section Styling */
.contact-section {
  padding: 60px 0;
  background: #151436 !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  background: #262653;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(252, 84, 255, 0.1);
}

/* Contact Info Side */
.contact-info-side {
  background: #262653;
  padding: 40px;
  color: var(--light-text);
}

.contact-info-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-icon {
      width: 50px;
    height: 50px;
    background: rgb(255 255 255);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 24px;
}

.contact-info-content h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Form Side */
.contact-form-side {
  padding: 40px;
  background: var(--light-text);
}

.contact-form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  /*background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 15px rgba(252, 84, 255, 0.1);
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #f6a700;
  color: var(--light-text);
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 84, 255, 0.2);
}

.contact-form .alert-success {
  background: #333333;
  border: 1px solid #000000;
  color: var(--light-text);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    padding: 30px;
  }

  .contact-form-side {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/*---------------------------------------- contact style end ------------------------------------ */

/*---------------------------------------- footer style start-  ------------------------------------ */
/* Footer Styling */
.footer {
  background: var(--dark-bg) !important;
  color: var(--light-text);
  padding: 40px 0;
  border-top: 1px solid rgba(252, 84, 255, 0.1);
}

/* Footer Column Styling */
.footer-column {
  text-align: left;
  margin-bottom: 0px;
}

/* Footer Titles */
.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light-text);
  display: inline-block;
  letter-spacing: 0.5px;
  -webkit-background-clip: none;
  -webkit-text-fill-color: var(--light-text);
  transition: all 0.3s ease;
}


/* Footer Navigation & Contact List */
.footer-nav,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 12px;
}

/* Quick Links and Games sections */
.footer-column:nth-child(1) .footer-nav li a,
.footer-column:nth-child(2) .footer-nav li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  opacity: 0.9;
}

.footer-column:nth-child(1) .footer-nav li a:hover,
.footer-column:nth-child(2) .footer-nav li a:hover {
  color: var(--light-text);
}

/* Contact Us and Follow Us sections */
.footer-column:nth-child(3) .footer-contact li,
.footer-column:nth-child(4) .footer-contact li {
  color: #ffffff;
}

.footer-column:nth-child(3) .footer-contact li a,
.footer-column:nth-child(4) .footer-contact li a {
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-column:nth-child(3) .footer-contact li a:hover,
.footer-column:nth-child(4) .footer-contact li a:hover {
  color: var(--light-text);
  transform: translateX(5px);
}

/* Copyright Text */
.footer .text-center p {
  color: #ffffff;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer .text-center p:hover {
  color: var(--light-text);
}

/* Social Icons Section */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
/*  background: var(--gradient-primary);*/
  transition: all 0.3s ease;
}

.social-icon {
  width: 20px;
  height: 20px;
 /* filter: invert(1);
  opacity: 0.7;*/
  transition: all 0.3s ease;
}

.social-link:hover {
/*  background: var(--gradient-primary);*/
  transform: translateY(-3px);
}

.social-link:hover .social-icon {
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-column {
    text-align: center;
  }

  .footer-title {
    margin-bottom: 15px;
  }

  .social-icons {
    margin-top: 15px;
  }
}



/*---------------------------------------- footer style end-  ------------------------------------ */


/*---------------------------------------- header style start-  ------------------------------------ */

/* Sticky Header */
.ss_header {
  background: #262653;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(252, 84, 255, 0.1);
}

/* Logo */
.logo {
  max-width: 150px;
}

/* Navigation Bar */
.nav {
  list-style: none;
  display: flex;
  gap: 0px;
}

.nav-item {
  position: relative;
  padding: 5px 5px;
}

.nav-link {
  color: var(--primary-pink) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--light-text) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-text);
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active state - separate from hover */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--light-text);
}

/* Remove any default underlines */
.nav-item a {
  text-decoration: none !important;
}

/* Ensure proper z-index and positioning for dropdown items */
.nav-item {
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* Active state persistence */
.nav-link.active::after {
  width: 100%;
  background: var(--light-text);
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile Menu */
.menu-toggle {
  color: var(--primary-pink);
  transition: color 0.3s ease;
  cursor: pointer;
}

.menu-toggle:hover {
  color: var(--light-text);
}

/* Mobile Navigation */
.mobile-menu {
  background: var(--dark-card);
  padding: 20px;
  display: none;
  position: absolute;
  top: 60px;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(252, 84, 255, 0.1);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 10px 0;
}

.mobile-menu ul li a {
  color: var(--primary-pink) !important;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
  padding: 8px;
}

.mobile-menu ul li a:hover {
  color: var(--light-text) !important;
  transform: translateX(5px);
}

/* Show Menu on Toggle */
.menu-open .mobile-menu {
  display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .nav {
    display: none;
  }
}


/*---------------------------------------- header style end-  ------------------------------------ */

/*-------------------- about <section class="container-fluid about-section"> style start-  ---------------------------- */

/* About Section Styling */
.about-section {
  background: url("images/gaming-bg.jpg") no-repeat center center/cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}

/* Dark Overlay for Readability */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
}

/* About Image */
.about-image {
  text-align: center;
  margin-bottom: 40px;
}

.about-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 15px;
      box-shadow: 0px 0px 20px rgb(0 0 0);
  animation: fadeInDown 1.2s ease-in-out;
}

/* Content Styling */
.about-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

/* Animated Heading */
.animated-heading {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in-out;
  text-shadow: 3px 3px 10px rgba(255, 204, 0, 0.7);
}

/* Highlight Text */
.highlight {
  color: #ffcc00;
}

/* Mission Box */
.mission-box {
  background: rgb(38 38 83);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
    animation: fadeInUp 1s ease-in-out;
}

/* Features Grid */
.features-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  margin: 0 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card i {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 20px;
  color: #fff;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
  font-size: 18px;
}

.feature-list li {
  padding-left: 25px;
  position: relative;
}

.feature-list li::before {
      content: "✔️";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-size: 20px;
}

/* Call-to-Action Box */
.cta-box {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  animation: fadeInUp 1.2s ease-in-out;
}

/* CTA Button */
/* .cta-button {
  background: #ffcc00;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  border: none;
  margin-top: 10px;
}

.cta-button:hover {
  background: #ff5722;
} */

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .animated-heading {
    font-size: 30px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    margin-bottom: 20px;
    width: 100%;
  }

  .feature-list {
    font-size: 16px;
  }
}



/*-------------------- about <section class="container-fluid about-section"> style end-  ---------------------------- */

/*-------------------- developer style start-  ---------------------------- */
/* Developer Section Styling */
.developer-section {
  /* background: rgba(0, 0, 0, 0.7); */
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

/* Developer Image */
.developer-image {
  text-align: center;
  margin-bottom: 40px;
}

.developer-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0px 0px 25px rgb(38 38 83);
  animation: fadeInDown 1s ease-in-out;
      border-radius: 50px;
}

/* Developer Content */
.developer-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  z-index: 2;
}

/* Animated Heading */
.animated-heading {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in-out;
  text-shadow: 4px 4px 10px rgba(255, 204, 0, 0.9);
  color: #ffcc00;
}

/* Highlight Text */
.highlight {
  color: #ff5722;
}

/* Features Grid */
.features-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.9);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  margin: 0 15px;
  box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 30px rgba(255, 204, 0, 0.5);
}

.feature-card i {
  font-size: 45px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

/* Call-to-Action Box */
.cta-box {
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  animation: fadeInUp 1.2s ease-in-out;
  box-shadow: 0px 0px 15px rgba(255, 204, 0, 0.5);
}

/* CTA Button */
/* .cta-button {
  background: #ffcc00;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  border: none;
  margin-top: 10px;
}

.cta-button:hover {
  background: #ff5722;
  transform: scale(1.1);
} */

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .animated-heading {
    font-size: 34px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    margin-bottom: 20px;
    width: 100%;
  }

  .cta-button {
    font-size: 20px;
  }
}


/*-------------------- developer style end-  ---------------------------- */

/*-------------------- affiliate style start-  ---------------------------- */
/* Affiliate Section Styling */
.affiliate-section {
  /* background: rgba(0, 0, 0, 0.7); */
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.section-title {
  margin-top: 30px;
}

/* Affiliate Image */
.affiliate-image {
  text-align: center;
  margin-bottom: 40px;
}

.affiliate-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
      box-shadow: 0px 0px 25px rgb(0 0 0);
  animation: fadeInDown 1s ease-in-out;
}

/* Affiliate Content */
.affiliate-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  z-index: 2;
}

/* Animated Heading */
.animated-heading {
  font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    animation: fadeIn 1.5s ease-in-out;
    text-shadow: 4px 4px 10px rgb(0 0 0 / 90%);
    color: #ffffff;
}

/* Highlight Text */
.highlight {
  color: #ff5722;
}

/* Features Grid */
.features-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.feature-card {
  background: rgb(38 38 83);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    margin: 0 15px;
    box-shadow: 0px 0px 25px rgb(255 255 255 / 0%);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 30px rgb(0 0 0);
}

/* Call-to-Action Box */
.cta-box {
      margin-top: 40px;
    padding: 30px;
    background: rgb(38 38 83);
    border-radius: 10px;
    animation: fadeInUp 1.2s ease-in-out;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 50%);
}

/* CTA Button */
.cta-button {
  background: #ffcc00;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  border: none;
  margin-top: 10px;
}

.cta-button:hover {
  background: #ff5722;
  transform: scale(1.1);
}

/*-------------------- affiliate style end-  ---------------------------- */


/*-------------------- privacy policy style end-  ---------------------------- */
/* Privacy Policy Section */
.privacy-section {
  /* Dark blue gradient */
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
}

.privacy-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  /* Golden color for emphasis */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.privacy-section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-top: 30px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.privacy-section p,
.privacy-section ul {
  font-size: 18px;
  color: #f1f1f1;
  line-height: 1.8;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section ul {
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 10px;
  list-style-type: "âœ”ï¸ ";
}

/* Image Styling */
.privacy-section img {
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(5px 8px 10px rgba(0, 0, 0, 0.3));
  border-radius: 10px;
}

/* Links */
.privacy-section a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Styling */
.footer {
 background: #262653 !important;
  color: var(--light-text);
  padding: 40px 0;
  border-top: 1px solid rgba(252, 84, 255, 0.1);
}

.footer .footer-title {
  font-size: 20px;
  color: var(--primary-pink);
  font-weight: bold;
  margin-bottom: 15px;
}

.footer a {
  color: var(--primary-pink);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-text);
  text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 28px;
  }

  .privacy-section h3 {
    font-size: 20px;
  }

  .privacy-section p,
  .privacy-section ul {
    font-size: 16px;
  }

  .social-icons img {
    width: 35px;
    height: 35px;
  }
}


/*-------------------- privacy policy style end-  ---------------------------- */



/* //--------------------------------------------------------------------------- */

/* Text Color Styles */
/*.section-title {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}*/

.highlight {
  color: var(--primary-pink);
}

.feature-icon {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2,
h3,
h4,
h5,
h6 {
  color:#fff;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--light-text) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-text);
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active state - separate from hover */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--light-text);
}

/* Remove any default underlines */
.nav-item a {
  text-decoration: none !important;
}

/* Ensure proper z-index and positioning for dropdown items */
.nav-item {
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* Active state persistence */
.nav-link.active::after {
  width: 100%;
  background: var(--light-text);
  left: 50%;
  transform: translateX(-50%);
}

.feature-card h4 {
  color: #fff;
}

/*.feature-card:hover h4 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/


.footer-nav li a,
.footer-contact li a {
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

.footer-nav li a:hover,
.footer-contact li a:hover {
  color: var(--primary-pink);
}

/* List Items with Icons */
.feature-list li::before {
  color: var(--primary-pink);
}

/* Links */
a {
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-pink);
  text-decoration: none;
}

/* Strong Text */
strong {
  color: #fff;
}

/* Mobile Menu */
.mobile-menu a {
  color: var(--primary-pink) !important;
}

.mobile-menu a:hover {
  color: var(--primary-blue) !important;
}

/* Form Labels */
label {
  color: var(--primary-blue);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--light-text);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
}

/* Section Subtitles */
.lead {
  color: var(--primary-blue);
}

/* Card Titles */
.card-title {
  color: var(--primary-pink);
}

/* Social Icons */
.social-icons a {
      color: #000000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icons a:hover {
  color: var(--primary-blue);
}

/* Copyright Text */
.copyright {
  color: var(--muted-text);
}



@media (min-width: 0px) and (max-width: 767px) {
.game_image img {
    width: 124px;
    height: 124px;
}
}