body,
html {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1 {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 650;
  line-height: 1.1;
  margin-bottom: 50px;
  letter-spacing: -3px;
}

h2 {
  color: #FFFFFF;
  width: auto;
  max-width: 800px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

h3 {
  text-align: center;
  color: #000000;
  width: auto;
  max-width: 800px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

h4 {
  text-align: left;
  color: #000000;
  width: auto;
  max-width: 100%;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

h5 {
  text-align: center;
  color: #000000;
  width: auto;
  max-width: 800px;
  padding-bottom: 25px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
}

h8 {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 65px;
  font-weight: 650;
  letter-spacing: -3px;
}

/* Subheading style */
p1 {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 550;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 22px;
}

p2 {
  text-align: center;
  color: #000000b4;
  font-size: 22px;
  font-weight: 450;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

p3 {
  text-align: left;
  color: #000000b4;
  max-width: 820px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 450;
  letter-spacing: 1.5px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

button {
  background-color: #f64c4c;
  color: white;
  border: none;
  box-shadow: none;
  text-decoration: none;
  text-align: center;
  padding: 20px 20px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 650;
}

button:hover {
  background-color: #6305c9;
  color: white;
}

.content {
  text-align: center;
  background-color: transparent;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center; /* Center items vertically */
}

.content-block {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

/* Container for block image */
.content-block img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

footer {
  background-color: #f8f8f8; /* Optional background color */
  padding: 20px 0;           /* Adds some padding to the top and bottom */
}




/* ---- NAVIGATION BAR -----
---------- STYLING ------ */

.navbar {
  background-color: #6405c900;
  background-image: url('../images/full-gradient.png');
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  z-index: 1000;
  position: relative;
}

/* Container for navigation content */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 80px;
}

/* Logo styling */
.logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.logo img {
  max-width: 140px;
  height: auto;
}

/* Navigation menu styling */
.nav-menu {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 5px 10px;
  font-weight: 650;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #6305c9;
  text-decoration: none;
}

/* Navigation buttons styling */
.nav-buttons {
  display: flex;
  gap: 10px;
  padding-left: 10px;
}

.nav-button {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 650;
  transition: background-color 0.3s, color 0.3s;
}

.smaller-text {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.btn-green {
  background-color: #08bd23;
}

.btn-red {
  background-color: #f64c4c;
}

.nav-button:hover {
  background-color: #6305c9;
  text-decoration: none;
}

/* Hamburger menu styling */
.hamburger-menu {
  display: none;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1001;
}

/* For hover effect, dim the lines (white color) */
.hamburger-menu:hover {
  opacity: 0.7;
}

/* Show hamburger menu on small screens */
@media (max-width: 900px) {
  .hamburger-menu {
    display: block;
  }
}

/* Mobile menu styling */
.mobile-nav {
  display: none;
  position: absolute;
  justify-content: center;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(61, 0, 117, 0.432); /* Semi-transparent background */
}

.mobile-nav.show {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 15px;
}

/* Responsive styling */
/* 4K Screens */
@media (min-width: 2560px) {
  .navbar {
    padding: 20px;
  }
  .nav-container {
    padding: 0 150px;
  }
  .nav-link, .nav-button {
    font-size: 22px;
  }
  .logo img {
    max-width: 180px;
  }
}

/* Laptop L (1440px) */
@media (min-width: 1440px) and (max-width: 2559px) {
  .navbar {
    padding: 15px;
  }
  .nav-container {
    padding: 0 100px;
  }
  .nav-link, .nav-button {
    font-size: 20px;
  }
  .logo img {
    max-width: 160px;
  }
}

/* Laptop (1024px) */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 60px;
  }
  .nav-link, .nav-button {
    font-size: 16px;
  }
}

/* Tablet L (900px) */
@media (max-width: 960px) {
  .nav-container {
    padding: 0 40px;
  }
  .nav-link, .nav-button {
    font-size: 14px;
  }
}

/* Tablet (768px) */
@media (max-width: 900px) {
  .navbar {
    padding: 10px;
  }
  .nav-container {
    padding: 0 20px;
  }
  .logo img {
    max-width: 120px;
  }
  .nav-link, .nav-button {
    display: none;
  }
  .hamburger-menu {
    font-size: 25px;
  }
  .mobile-nav a {
    padding: 10px;
  }
}

/* Mobile L (425px) */
@media (max-width: 425px) {
  .navbar {
    padding: 5px;
  }
  .nav-container {
    padding: 0 15px;
  }
  .logo img {
    max-width: 110px;
  }
  .nav-link, .nav-button {
    display: none;
  }
  .hamburger-menu {
    font-size: 22px;
  }
}

/* Mobile M (375px) */
@media (max-width: 375px) {
  .navbar {
    padding: 5px;
  }
  .nav-container {
    padding: 0 10px;
  }
  .logo img {
    max-width: 100px;
  }
  .nav-link, .nav-button {
    display: none;
  }
  .hamburger-menu {
    font-size: 20px;
  }
}

/* Mobile S (320px) */
@media (max-width: 320px) {
  .navbar {
    padding: 5px;
  }
  .nav-container {
    padding: 0 5px;
  }
  .logo img {
    max-width: 90px;
  }
  .nav-link, .nav-button {
    display: none;
  }
  .hamburger-menu {
    font-size: 18px;
  }
}











/* ----- HERO SECTION ------
---------- STYLING ------ */

.hero-section {
  background-color: #FFFFFF;
  background-image: url('../images/hero-gradient.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-height: 1100px;
  display: flex;
  align-items: center;
  overflow: visible;
  margin-bottom: 0px; /* Reduce space below */
}

.game-section {
  background-image: url('../images/games-gradient.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  position: relative;
}

/* Container with centering and max width */
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
  width: 100%;
  padding-left: 80px; /* Added padding to the left */
}

/* Main content wrapper for hero section */
.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  padding: 0; /* Remove extra padding */
}

/* Content area for text and buttons */
.hero-text-content {
  flex: 1;
  text-align: left;
  padding-left: 20px; /* Added padding on the left */
}

/* Button group styling */
.hero-button-group {
  display: flex;
  gap: 10px;
  margin-top: -40px;
}

/* Button styling */
.app-button {
  display: inline-flex;
  text-align: center;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 200px; /* Set a fixed height */
  max-width: 100%; /* Prevents the button from stretching beyond its container */
  transition: transform 0.3s ease;
  object-fit: contain; /* Maintains aspect ratio */
}

/* Button hover effect */
.app-button:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Image wrapper styling */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translateY(80px);
  position: relative;
  margin-bottom: 20px;
}

/* Header image styling */
.hero-image {
  width: 85%;
  height: auto;
  transition: transform 0.5s ease;
  animation: bounceMain 2s infinite ease-in-out;
}

/* Hover image with bounce and grow/shrink effect */
.hover-image {
  width: 75%;
  height: auto;
  animation: bounceGrowShrink 2s infinite ease-in-out;
  transform: scale(1.05);
  margin-top: -90px;
}

/* Bounce animation for the main image */
@keyframes bounceMain {

  0%,
  100% {
    transform: translateY(0) scale(1.05);
  }

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

/* Bounce and grow/shrink animation for the hover image */
@keyframes bounceGrowShrink {

  0%,
  100% {
    transform: translateY(0) scale(0.55);
  }

  50% {
    transform: translateY(-10px) scale(0.5);
  }
}


/* ----- RESPONSIVE BREAKPOINTS ----- */

/* 4K Screens */
@media (min-width: 2560px) {
  .hero-container {
    padding-left: 150px;
  }

  .hero-text-content {
    font-size: 24px; /* Example font size */
  }
}

/* Laptop L (1440px) */
@media (min-width: 1440px) and (max-width: 2559px) {
  .hero-container {
    padding-left: 100px;
  }

  .hero-text-content {
    font-size: 22px; /* Example font size */
  }
}

/* Laptop (1024px) */
@media (max-width: 1024px) {
  .hero-container {
    padding-left: 60px;
  }

  .hero-text-content {
    font-size: 20px; /* Example font size */
    padding-left: 30px;
  }

  .hero-button-group {
    justify-content: center;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .app-button {
    width: 200px;
    height: 140px;
  }

  .hero-image-wrapper {
    margin-top: 20px;
  }

  .hover-image {
    margin-top: -70px;
  }
}

/* Tablet L (900px) */
@media (max-width: 900px) {
  .hero-container {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
  }

  .hero-text-content {
    font-size: 18px; /* Example font size */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    text-align: center; /* Center text */
  }

  .hero-button-group {
    justify-content: center;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .app-button {
    width: 150px;
    height: 100px;
  }

  .hero-image-wrapper {
    margin-top: 20px;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
  }

  .hero-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center text */
  }

  .hero-text-content {
    font-size: 16px; /* Example font size */
    margin-bottom: 0;
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    text-align: center; /* Center text */
  }

  .hero-button-group {
    justify-content: center;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .app-button {
    width: 150px;
    height: 100px;
  }

  .hero-image-wrapper {
    margin-top: -50px;
    margin-left: 100px;
    padding-bottom: 50px;
  }
}

/* Mobile L (425px) */
@media (max-width: 425px) {
  .hero-container {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
  }

  .hero-text-content {
    font-size: 14px; /* Example font size */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    text-align: center; /* Center text */
  }

  .hero-image {
    max-width: 100%; /* Ensure image fits within the container */
    z-index: 10;
  }

  .hover-image {
    margin-top: -80px;
    z-index: 5;
    padding-bottom: 100px;
  }
}

/* Mobile M (375px) */
@media (max-width: 375px) {
  .hero-container {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    height: fit-content;
    box-sizing: border-box; /* Include padding in width */
  }

  .hero-text-content {
    font-size: 12px; /* Example font size */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    text-align: center; /* Center text */
  }

  .hero-image-wrapper {
    margin-left: 80px;
  }

  .hero-image {
    max-width: 100%; /* Ensure image fits within the container */
    margin-top: -20px;
    z-index: 10;
  }

  .hover-image {
    margin-top: -70px;
    z-index: 5;
    padding-bottom: 100px;
  }
}

/* Mobile S (320px) */
@media (max-width: 320px) {
  .hero-container {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    height: fit-content;
    box-sizing: border-box; /* Include padding in width */
  }

  .hero-text-content {
    font-size: 10px; /* Example font size */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin: 0 auto; /* Center content horizontally */
    width: 100%; /* Ensure full width */
    text-align: center; /* Center text */
  }

  .hero-image {
    max-width: 100%; /* Ensure image fits within the container */
    margin-top: -20px;
    z-index: 10;
  }

  .hover-image {
    margin-top: -40px;
    z-index: 5;
    padding-bottom: 10px;
  }
}










/* ----- FEATURE SECTION ------
------------ STYLING ------- */

.feature-container {
  background-color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 80px;
  position: relative;
}

.feature-heading-wrapper {
  max-width: 48rem;
  margin: 0 auto 1rem; /* Combined margin properties */
  padding-bottom: 10px;
}

/* Swiper */
.swiper {
  width: 100% !important;
  height: 445px;
  overflow: hidden !important;
  position: relative;
  margin: 0 auto; /* Center the swiper */
}

/* Swiper Wrapper */
.swiper-wrapper {
  display: flex !important;
  align-items: center; /* Center the slides vertically */
  box-sizing: border-box; /* Include padding and border in width */
}

/* Swiper Slide */
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #6305c9 !important;
  background: none; /* Remove any default button background */
  transform: translateY(100%) !important;
  width: 40px;
  height: 40px;
  border: none; 
  outline: none; 
  box-shadow: none;
  position: absolute;
  z-index: 10 !important;
}

.swiper-button-prev {
  color: #6305c9 !important;
  left: -50px !important;
}

.swiper-button-next {
  color: #6305c9 !important;
  right: -50px !important;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  color: #6305c9!important;
  outline: none; /* Ensure the outline is removed on focus */
  box-shadow: none; /* Remove any shadow on click */
}

/* Swiper Pagination */
.swiper-pagination {
  position: absolute;
  bottom: 90px !important; /* Move pagination up */
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  background: #6305c9 !important; /* Pagination bullet color */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #6305c9 !important; /* Active pagination bullet color */
}

/* Flip Card */
.flip-card {
  width: 300px;
  height: 400px;
  perspective: 1000px;
  aspect-ratio: 3 / 4 !important;
}

/* Flip Card Inner */
.flip-card-inner {
  position: relative;
  width: 95%;
  height: 95%;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
}

/* Flip Card Front and Back */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Flip Card Back Content */
.flip-card-back {
  transform: rotateY(180deg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  text-align: center;
}

.back-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -400px;
}

/* Flip Card Hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.encore-heading-f3 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: normal;
}
















/* ----- STEPS SECTION -------
----------- STYLING ------- */

/* Content container with flex layout */
.steps-content {
  background-color: #ffffff;
  padding: 20px; /* Added padding to prevent tight text on edges */
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 200px auto;
  display: flex;
}

/* Wrapper for gradient and content */
.steps-gradient-background {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 200px 40px 60px; /* Increased side padding */
  z-index: 0;
  background: radial-gradient(circle at top, #BD66BB 0%, #9C0C8E 0%, #7631D8 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
}

/* Top image styling */
.steps-top-image {
  position: absolute;
  top: -300px;
  /* Adjusted top position */
  left: 25%;
  max-width: 650px;
  /* Increased max-width */
  height: auto;
  z-index: 1;
}

/* Center-aligned block */
.steps-block-center {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 50px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.encore-heading-f {
  color: #FFFFFF;
  width: auto;
  max-width: 800px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

/* General grid layout settings */
.steps-grid-feature-columns {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 14px;
}

/* Centering and styling the feature blocks */
.steps-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* Feature block styling */
.steps-block-features-green,
.steps-block-features-teal,
.steps-block-features-blue,
.steps-block-features-purple {
  border-radius: 50%;
  margin-bottom: 20px;
  padding: 22px;
}

.steps-block-features-green {
  background-color: #54B865;
}

.steps-block-features-teal {
  background-color: #34A8C2;
}

.steps-block-features-blue {
  background-color: #3B79FF;
}

.steps-block-features-purple {
  background-color: #8C00FF;
}

/* Circle styles */
.steps-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  /* Decreased width */
  height: 40px;
  /* Decreased height */
  border-radius: 50%;
  margin: 0 auto 10px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Number inside the circle */
.steps-feature-number {
  color: white;
  font-size: 34px;
  /* Adjusted font size */
  font-weight: 600;
}

/* Bold feature title */
.steps-feature-title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  line-height: normal;
  font-family: 'Inter', sans-serif;
}

/* Paragraph styling for features section */
.steps-paragraph-features {
  color: #FFFFFF;
  max-width: 3500px;
  font-size: 18px;
  font-weight: 450;
  letter-spacing: 1.5px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

/* Define keyframes for animations */
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

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

/* Apply animation to steps section elements */
.steps-top-image,
.steps-features {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.steps-top-image.animate,
.steps-features.animate {
  animation: fadeInFromLeft 1s ease-out forwards;
}

/* Responsive adjustments for 1250px to 770px */
@media (max-width: 1250px) and (min-width: 770px) {
  .steps-gradient-background {
    padding: 150px 5% 50px; /* Increased padding at the top for image space */
    overflow: visible; /* Ensure the image can overflow if needed */
  }

  .steps-content {
    max-width: 1000px; /* Adjust container width for better fit */
    padding: 100px 20px; /* Reduce padding for mid-range screens */
  }

  .steps-top-image {
    max-width: 550px;
    z-index: 1; /* Ensure the image is above the gradient background */
  }

  .encore-heading-f {
    font-size: 42px; /* Adjust font size to prevent text overflow */
    max-width: 90%; /* Keep heading responsive within the available space */
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid-feature-columns {
    grid-template-columns: repeat(1, 1fr); /* Reduce to 2 columns to fit */
    gap: 20px;
  }

  .steps-paragraph-features {
    font-size: 16px;
    padding: 0 10px; /* Add padding to prevent text from touching the sides */
  }

  .steps-circle {
    margin-bottom: 5px; /* Reduced margin to bring the circle closer to the title */
  }
  
  .steps-feature-title {
    margin-top: 0; /* Remove any top margin to prevent extra space above the title */
  }
}

/* Responsive adjustments for 1024px */
@media (max-width: 1024px) {
  .steps-gradient-background {
    padding: 80px 20px; /* Reduced padding for smaller screens */
    width: fit-content;
  }

  .steps-content {
    padding: 80px 20px;
  }

  .steps-top-image {
    top: -300px;
    max-width: 500px;
    left: 110px;
    z-index: 1; /* Ensure the image is above the gradient background */
  }

  .encore-heading-f {
    font-size: 38px;
    max-width: 700px;
  }

  .steps-grid-feature-columns {
    grid-template-columns: repeat(1, 1fr);
  }

  .steps-paragraph-features {
    font-size: 16px;
  }

  .steps-circle {
    margin-bottom: 5px; /* Reduced margin to bring the circle closer to the title */
  }
  
  .steps-feature-title {
    margin-top: 0; /* Remove any top margin to prevent extra space above the title */
  }
}

/* Responsive adjustments for 675px and lower */
@media (max-width: 675px) {
  .steps-gradient-background {
    margin-top: 40%;
    padding: 60px 50px; /* Further reduce padding to prevent clipping */
    width: fit-content;
  }

  .steps-content {
    padding: 60px 10px;
  }

  .steps-top-image {
    top: -180px; /* Adjusted top position for smaller screens */
    max-width: 70%; /* Use percentage to better handle various screen sizes */
    transform: translateX(-50%); /* Ensure the image is centered */
    z-index: 1; /* Ensure the image is above the gradient background */
  }

  .encore-heading-f {
    font-size: 28px; /* Further reduce font size for better fitting */
    max-width: 100%; /* Ensure the heading does not exceed container width */
    margin-bottom: 15px;
  }

  .steps-grid-feature-columns {
    grid-template-columns: 1fr; /* Single column layout on small screens */
    gap: 15px; /* Slightly reduce gap between feature blocks */
  }

  .steps-paragraph-features {
    font-size: 14px; /* Adjust paragraph font size for better readability */
    max-width: 100%; /* Ensure no content is cut off */
  }

  .steps-circle {
    margin-bottom: 5px;
  }

  .steps-feature-title {
    margin-top: 0;
  }
}

/* Other responsive adjustments */
@media (max-width: 768px) {
  .steps-gradient-background {
    padding: 80px 20px; /* Reduced padding for smaller screens */
    width: fit-content;
  }

  .steps-top-image {
    top: -300px;
    max-width: 500;
    z-index: 1; /* Ensure the image is above the gradient background */
  }

  .encore-heading-f {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .steps-grid-feature-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-paragraph-features {
    font-size: 16px;
  }

  .steps-circle {
    margin-bottom: 5px; /* Reduced margin to bring the circle closer to the title */
  }
  
  .steps-feature-title {
    margin-top: 0; /* Remove any top margin to prevent extra space above the title */
  }
}

@media (max-width: 480px) {
  .steps-gradient-background {
    padding: 80px 20px; /* Reduced padding for smaller screens */
    width: fit-content;
  }

  .steps-top-image {
    top: -100px;
    left: 20%;
    max-width: 65%;
    z-index: 1; /* Ensure the image is above the gradient background */
  }

  .encore-heading-f {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .steps-grid-feature-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-paragraph-features {
    font-size: 14px;
  }

  .steps-circle {
    margin-bottom: 5px; /* Reduced margin to bring the circle closer to the title */
  }
  
  .steps-feature-title {
    margin-top: 0; /* Remove any top margin to prevent extra space above the title */
  }
}















/* ----- CTA SECTION --------
---------- STYLING ------- */

/* Content container with flex layout */
.encore-content-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  display: flex;
  box-sizing: border-box; /* Ensure padding is included in width */
}

/* Grid layout for images aligned to the right */
.encore-grid-image-right {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  width: 100%;
  box-sizing: border-box; /* Prevent content overflow */
}

.encore-block-left {
  flex-direction: column;
  padding-right: 10%;
  box-sizing: border-box;
}

/* Heading styling */
.encore-heading-b {
  text-align: left;
  color: #000000;
  width: auto;
  max-width: 800px;
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

.encore-heading-b2 {
  text-align: left;
  color: #000000;
  width: auto;
  max-width: 100%;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

/* Paragraph styling */
.encore-paragraph {
  text-align: left;
  color: #000000b4;
  max-width: 820px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 450;
  letter-spacing: 1.5px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.encore-paragraph-f {
  text-align: center;
  color: #ffffffd8;
  max-width: 800px;
  margin-bottom: 30px;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 18px;
  font-weight: 450;
  letter-spacing: 1.5px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* General button styling */
.encore-button {
  font-family: 'Inter', sans-serif;
  background-color: #f64c4c;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 15px;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  /* Remove underline */
  transition: background-color 0.2s;
  /* Transition for color change */
}

/* Hover effect for general button */
.encore-button:hover {
  background-color: #6305c9;
  /* Purple color on hover */
  text-decoration: none;
  /* Remove underline */
}

/* Container for block image */
.encore-block-image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

/* Image styling */
.encore-image {
  object-fit: cover;
  border-radius: 30px;
  flex: none;
  align-self: center;
  width: 75%;
  height: auto;
  min-height: auto;
  display: block;
}

/* Absolute positioning for image with specific aspect ratio */
.encore-image-absolute {
  z-index: 50;
  object-fit: contain;
  width: 100%;
  height: auto;
  top: -40px;
  position: absolute;
}

@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

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

.encore-heading-b,
.encore-paragraph,
.encore-button,
.encore-image {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.encore-heading-b.animate,
.encore-paragraph.animate,
.encore-button.animate,
.encore-image.animate {
  animation: fadeInFromRight 1s ease-out forwards;
}

/* Remove underline from all links */
a {
  text-decoration: none;
}

/* Responsive adjustments */

/* Mobile S (320px) */
@media (max-width: 320px) {
  .encore-grid-image-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
      "text"
      "image";
    justify-items: center;
    align-items: center;
    padding: 0 5px;
    text-align: center;
  }
  
  .encore-heading-b {
    font-size: 28px;
    text-align: center;
  }

  .encore-paragraph {
    font-size: 14px;
    text-align: center;
  }

  .encore-button {
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
    display: block;
  }

  .encore-block-image {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 20px;
  }

  .encore-image {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
  }
}


/* Mobile M (375px) */
@media (max-width: 375px) {
  .encore-grid-image-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
      "text"
      "image";
    justify-items: center;
    align-items: center;
    padding: 0 5px;
    text-align: center;
  }

  .encore-heading-b {
    font-size: 30px;
    text-align: center;
  }

  .encore-paragraph {
    font-size: 15px;
    text-align: center;
  }

  .encore-button {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    display: block;
  }

  .encore-block-image {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 20px;
  }

  .encore-image {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
  }
}


/* Mobile L (425px) */
@media (max-width: 425px) {
  .encore-grid-image-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
      "text"
      "image";
    justify-items: center;
    align-items: center;
    padding: 0 10px;
    text-align: center;
  }

  .encore-heading-b {
    font-size: 32px;
    text-align: center;
  }

  .encore-paragraph {
    font-size: 16px;
    text-align: center;
  }

  .encore-button {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    display: block;
  }

  .encore-block-image {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 20px;
  }

  .encore-image {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
  }
}


/* Tablet (768px) */
@media (max-width: 768px) {
  /* Grid layout: single column, stack text and image */
  .encore-grid-image-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto; /* Text first, image second */
    grid-template-areas: 
      "text"
      "image";
    justify-items: center; /* Center all grid items horizontally */
    align-items: center;    /* Center all grid items vertically */
    text-align: center;     /* Ensure text inside is centered */
  }

  /* Center the text block and make sure it's aligned */
  .encore-block-left {
    grid-area: text;
    text-align: center;    /* Center-align the text */
    padding-right: 0;
    margin-bottom: 20px;
  }

  /* Adjust heading size and center it */
  .encore-heading-b {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center; /* Center-align the heading */
  }

  /* Paragraph styling, centered */
  .encore-paragraph {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center; /* Center-align the paragraph */
  }

  /* Center the button */
  .encore-button {
    font-size: 14px;
    padding: 15px 20px;
    text-align: center; /* Ensure button text is centered */
    margin: 0 auto;     /* Center the button horizontally */
    display: block;
  }

  /* Center the image block */
  .encore-block-image {
    grid-area: image;
    justify-content: center;
    align-items: center; /* Ensure the image is centered */
    margin-top: 20px;    /* Add space between text and image */
    width: 100%;         /* Ensure full width on smaller screens */
    display: flex;       /* Flexbox for centering the image */
  }

  /* Image styling: ensure it's centered */
  .encore-image {
    max-width: 90%;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
  }
}


/* Tablet L (900px) */
@media (max-width: 900px) {
  .encore-heading-b {
    font-size: 40px;
  }

  .encore-paragraph {
    font-size: 17px;
  }
}

/* Laptop (1024px) */
@media (max-width: 1024px) {
  .encore-grid-image-right {
    grid-template-columns: 1.2fr 1fr;
    padding: 0 20px;
  }

  .encore-block-image {
    justify-content: center;
    margin-left: -100px;
  }

  .content-block {
    margin-left: 0px;
    margin-right: 30px;
  }

  .encore-heading-b {
    font-size: 42px;
  }
}

/* Laptop L (1440px) */
@media (max-width: 1440px) {
  .encore-heading-b {
    font-size: 44px;
  }

  .encore-button {
    padding: 18px 20px;
  }
}

/* 4K (2560px) */
@media (max-width: 2560px) {
  .encore-heading-b {
    font-size: 48px;
  }

  .encore-button {
    padding: 20px 20px;
  }
}











/* ----- BONUS SECTION -------
----------- STYLING ------- */

/* Content container with flex layout */
.encore-content-3 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  /* Centered horizontally */
  display: flex;
  justify-content: center;
}

/* Flexbox container for images and video */
.bonus-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  /* Adjusted max-width for better visibility */
}

/* Adjusted image size and position */
.bonus-image-above-heading {
  width: 75%;
  /* Adjusted width */
  margin-left: 150px;
  height: auto;
  z-index: 2;
  /* Higher than the gradient section */
  position: relative;
  /* Set to relative to adjust positioning */
  top: 120px;
}

/* Video styling */
.encore-video-background {
  width: 80%;
  /* Adjusted width */
  margin-left: -120px;
  height: auto;
  object-fit: cover;
  transform-origin: center;
  /* Ensure rotation is around the center */
  position: relative;
  /* Set to relative to adjust positioning */
  top: 95px;
  /* Move video upwards to overlap the gradient */
  z-index: 2;
  /* Higher than the gradient section */
}

/* Hero section with vertical gradient */
.bonus-hero-back {
  position: relative;
  background: linear-gradient(to bottom, #9C0C8E 50%, #7631D8 100%);
  width: 100vw;
  /* Full viewport width */
  padding-top: 100px;
  /* Increased padding for better coverage */
  padding-bottom: 40px;
  /* Space for content */
  z-index: 1;
  /* Ensure it’s below the images */
}

/* Heading styling */
.bonus-heading-f {
  color: #FFFFFF;
  width: auto;
  max-width: 800px;
  font-size: 50px;
  font-weight: 650;
  line-height: 1.1;
  padding-top: 5px;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
}

/* Grid layout for features */
.bonus-grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  /* Increase gap for better spacing */
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature styling */
.bonus-features {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.bonus-block-features {
  padding: 25px 25px;
  display: flex;
  justify-content: center;
}

@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
    /* Start from the right */
  }

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

.bonus-image-above-heading,
.bonus-heading-f,
.bonus-features,
.bonus-icon-features {
  opacity: 0;
  /* Start hidden */
  transform: translateX(30px);
  /* Start from the right */
  animation: fadeInFromRight 1s ease-out forwards;
  /* Apply animation */
}

.bonus-icon-features {
  width: 100px;
  height: 100px;
  display: block;
}

.bonus-icon-features:hover {
  transform: scale(1.1);
  /* Slightly scale up the icons on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bonus-flex-container {
    flex-direction: column;
    /* Stack images and video vertically */
    align-items: center;
  }

  .bonus-image-above-heading,
  .encore-video-background {
    width: 100%;
    /* Full width on smaller screens */
    margin: 0;
    /* Remove margins */
  }

  .bonus-grid-features {
    grid-template-columns: 1fr;
    /* Single column on small screens */
    gap: 1rem;
    /* Adjust gap for small screens */
  }
}












/* ----- SHARE SECTION -------
----------- STYLING ------- */

/* Heading styling */
.encore-heading-b-centered {
  text-align: center;
  color: #000000;
  max-width: 800px;
  margin-top: 60px;
  /* Increased margin-top for more space above */
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -4px;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  animation: fadeInFromRight 1s ease-out forwards;
}

/* Paragraph styling */
.encore-paragraph-centered {
  text-align: center;
  color: #000000b4;
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 450;
  letter-spacing: 1.5px;
  line-height: normal;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  animation: fadeInFromRight 1s ease-out forwards;
}

/* Content container with flex layout */
.share-content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 180px;
}

/* Centered text wrapper */
.share-text-wrapper {
  margin-bottom: 2rem;
}

/* Grid layout for app download options */
.share-grid-2-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 0;
}

/* Large features section styling */
.share-features-large {
  background-color: #FFFFFF;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
  /* Reduce the bottom margin to make the gap smaller */
}

/* Large feature block styling */
.share-block-features-large {
  background-color: #ffffff;
}

.app-button2 {
  width: 250px;
  /* Set a minimum width */
  height: auto;
  padding: 10px 20px 35px 20px;
  /* Increase bottom padding */
}

/* Button styling */
.ctas-button {
  display: inline-flex;
  text-align: center;
  border: none;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: auto;
  padding: 20px;
}

/* Link block styling for features with transition effect */
.share-link-block-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: filter 0.4s;
  position: relative;
}

.share-link-block-features:hover {
  filter: brightness(112%);
}

/* Features image styling */
.share-image-features {
  object-fit: cover;
  width: auto;
  height: auto;
  margin-bottom: 20px;
  /* Increase space between images in each column */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .share-grid-2-columns {
    grid-template-columns: 1fr;
  }

  .app-button2 {
    width: 200px;
  }

  .share-image-features {
    width: 250px;
  }
}

/* Animation */
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

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












/* ----- GAME SECTION -------
----------- STYLING ------- */

/* Game Image Section */
.game-image-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Or use a percentage or 'auto' */
}

/* Image Layers */
.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Cover the full height of the section */
  background-size: cover;
  /* Ensure images cover the full area */
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
  /* Smooth transition for scaling */
}

/* Layering and Z-index */
.layer-background {
  z-index: 1;
  background-size: 100%;
}

.layer-burst {
  z-index: 2;
  background-size: 80%;
  /* Adjust the burst gradient size if needed */
}

.layer-phone {
  z-index: 4;
  background-size: 70%;
  /* Adjust the phone graphic size if needed */
  background-position: center center;
  /* Center the phone image */
}

.layer-coins-top {
  z-index: 3;
  background-size: 70%;
  position: absolute;
  /* Make sure it's positioned absolutely */
  top: 0;
}

.layer-coins-bottom {
  z-index: 5;
  background-size: 70%;
  position: absolute;
  /* Position the bottom coins */
  bottom: 0;
}

/* Games & Slides */
/* Content container with flex layout */
.lynx-content {
  background-color: transparent;
  /* White background for the whole section */
  padding: 80px;
  flex-direction: column;
  /* Stack items vertically */
  justify-content: flex-start;
  /* Align items to the start */
  align-items: center;
  /* Center items horizontally */
  width: 100%;
  /* Full width */
  max-width: 1200px;
  /* Maximum width */
  margin: auto;
  /* Vertical margin, auto horizontal margin for centering */
  display: flex;
  /* Use flexbox layout */
}

/* Slideshow Container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

/* Slides */
.mySlides {
  display: none;
}

.fade {
  opacity: 1;
  /* Ensure this is set to 1 to make slides fully visible */
  transition: none;
  /* Remove any transition effect to avoid fading */
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.encore-video-slide {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation Arrows */
/* General styles for both buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bolder;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next" button to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "prev" button to the left */
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* Hover effects */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dot Indicators */
.dot-container {
  text-align: center;
  padding: 20px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #7631D8;
}

@media screen and (max-width: 768px) {
  .layer-phone {
      background-position: center bottom; /* Example adjustment */
  }
}

@media screen and (max-width: 480px) {
  .lynx-content h2 { /* Example: Adjust heading size */
      font-size: 1.5rem;
  }

  .prev, .next {
    font-size: 14px;
    padding: 10px;
}

.dot-container {
    padding: 10px 0;
  }
}










/* ----- FOOTER LAYOUT -------
----------- STYLING ------- */

/* Footer styling */
.footer-dark {
  background-image: url('../images/footer-gradient.png');
  background-size: cover;
  background-position: top center;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  /* More transparent white text */
  padding-top: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align items to the top of the flex container */
  z-index: 1;
}

.container-2 {
  width: 100%;
  box-sizing: border-box;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  /* Center-align content in the wrapper */
}

.footer-block {
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  align-items: center;
  /* Center items horizontally */
}

.footer-content {
  display: flex;
  flex-direction: row;
  /* Stack items vertically */
  align-items: center;
  /* Center items horizontally */
  gap: 1rem;
  /* Add gap between rows */
  margin-bottom: 2px;
  /* Space below content */
}

/* Small title styling */
.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
}

/* Footer link styling */
.footer-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  /* More transparent white text */
  margin: 0 0.5rem;
  font-size: 13px;
  text-decoration: none;
}

.footer-link:hover {
  color: #8979ec;
  text-decoration: underline;
}

/* Button styling */
.footer-button {
  display: inline-flex;
  text-align: center;
  border: none;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: auto;
  margin: 0.5rem;
  /* Space around buttons */
}

/* Footer social block */
.footer-social-block {
  display: flex;
  justify-content: center;
  /* Center items horizontally */
  gap: 60px;
  /* Space between social icons */
  margin-bottom: 1rem;
  /* Space below social icons */
}

.footer-legal, .footer-copyright {
  width: 100%;            /* Ensure these blocks take full width */
  max-width: 1200px;      /* Optionally, set a max width for the content */
  text-align: center;     /* Center text within each block */
}

.legal-text {
  margin-bottom: 0;       /* Ensure there's no extra margin on the paragraph */
  text-align: center;     /* Center text within each block */
}

/* Footer copyright styling */
.footer-copyright {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 15px;
  justify-content: center;
}

/* Footer divider */
.footer-divider {
  background-color: #8979ec;
  width: 50%;
  height: 1px;
  margin: 20px auto;
}

/* Footer bottom styling */
.footer-bottom {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center;    /* Center elements horizontally */
  text-align: center;     /* Ensure text within divs is centered */
  width: 100%;            /* Ensure it takes full width of the footer */
}

.footer-legal {
  flex: 1;
  font-size: 10px;
  width: 100%;
  justify-content: center;
}

.footer-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-side-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  padding-right: 25%;
}







/* ----- POLICY SECTION -----
---------- STYLING ------- */

/* Section header styling with background image */
.policy-section {
  background-color: #FFFFFF;
  background-image: url('../images/hero-gradient.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Heading styling */
.policy-heading {
  text-align: center;
  color: #000000;
  /* Text color */
  width: auto;
  /* Automatic width */
  max-width: 900px;
  /* Maximum width */
  margin-top: -300px;
  /* Adjust this value according to how much you want to move it */
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -4px;
  font-family: 'Inter-Tight', sans-serif;
}

/* Paragraph styling */
.policy-paragraph {
  text-align: left;
  color: #000000b4;
  /* Text color */
  max-width: 900px;
  /* Maximum width */
  font-size: 18px;
  font-weight: 450;
  letter-spacing: 1.5px;
  line-height: normal;
  font-family: 'Inter', sans-serif;
}

/* Content container with flex layout */
.policy-content {
  background-color: #ffffff;
  /* White background for the whole section */
  flex-direction: column;
  /* Stack items vertically */
  display: flex;
  /* We use flexbox for better layout control */
  justify-content: flex-start;
  /* Align items to the start */
  align-items: center;
  /* Center items horizontally */
  width: 100%;
  /* Full width */
  max-width: 1200px;
  /* Maximum width */
  margin: auto;
  /* Vertical margin, auto horizontal margin for centering */
  display: flex;
  /* Use flexbox layout */
}

.section-content {
  margin-bottom: 10px;
}

.policy-heading-b3 {
  text-align: left;
  color: #000000;
  width: auto;
  max-width: 100%;
  margin-bottom: 15px;
  font-size: 35px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter-Tight', sans-serif;
}

.policy-heading-b2 {
  text-align: left;
  color: #000000;
  width: auto;
  max-width: 100%;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Inter-Tight', sans-serif;
}

.encore-heading-b3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Header image styling */
.policy-image {
  width: 90%;
  max-width: 450px;
  padding-top: 20px;
  padding-right: 200px;
  animation: bounceMain 2s infinite ease-in-out;
  margin-right: 98%;
  z-index: 4;
}

/* Back to Top Button Container */
.back-to-top {
  display: block;
  text-align: center;
  margin-top: 20px;
  /* Adjust as needed */
  text-decoration: none;
  color: #000;
  /* Adjust as needed */
  font-size: 24px;
  /* Adjust as needed */
}

/* Back to Top Button */
.back-to-top a {
  display: inline-block;
  background-color: #7631D8;
  color: #fff;
  font-size: large;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 50px;
}

.back-to-top a:hover {
  background-color: #962694;
}

/* Basic dropdown styling */
.dropdown {
  position: relative;
  /* Necessary for absolute positioning of content */
}

.dropdown-button {
  /* Style the button as needed */
  background-color: #f1f1f1;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  /* Make the button take up full width */
  text-align: left;
  /* Align text to the left */
}

.dropdown-content {
  display: none;
  /* Hide content by default */
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  /* Ensure it's on top of other elements */
}

/* Show content when hovering over the button */
.dropdown:hover .dropdown-content {
  display: block;
}

ul {
  margin: 10px 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {

  .policy-heading-b,
  .policy-heading-b2 {
    font-size: 20px;
  }

  .policy-paragraph {
    font-size: 14px;
  }
}