
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fdbb3b;
}


.container {
  padding: 20px;
  text-align: center;
}





.navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.content {
  background-color: #fdbb3b;
  padding: 40px;
  border-radius: 10px;
}

.content img {
  width: 100px;
  position: absolute;
  top: 40px;
  left: 30px;
  transform: rotate(15deg);
}

.content img:nth-child(2) {
  top: 120px;
  left: 80px;
  transform: rotate(-20deg);
}

.content img:nth-child(3) {
  top: 200px;
  left: 140px;
  transform: rotate(25deg);
}

.content h1 {
  font-size: 80px;
  color: white;
  margin: 0;
  text-shadow: 3px 3px #f158fc;
}

.earning-ludo-title {
  font-size: 30px;
  color: #246de3;
  margin-top: 10px;
  margin-bottom: 20px;
}
.des {
  font-size: 28px;
  color: #ff33cc; /* A vibrant magenta color to contrast with yellow */
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: bold; /* Makes the text stand out more */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow for depth */
  background: -webkit-linear-gradient(#ff33cc, #ff99cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.description-list {
  list-style-type: unset; /* Removes default bullet points */
  padding: 0;
  margin: 20px 0; /* Adds spacing around the list */
  color: black; /* Sets text color to black */
  text-align: left; /* Aligns text to the left */
}

.description-list li {
  font-size: 18px; /* Adjust font size */
  margin-bottom: 10px; /* Adds spacing between points */
}





.grid-overlay {
  background-image: linear-gradient(90deg, transparent 95%, #ff4dff 95%),
      linear-gradient(0deg, transparent 95%, #ff4dff 95%);
  background-size: 40px 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.content::before {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  background-color: #ab88ff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.content::after {
  content: '';
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #ab88ff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}




.button-56 {
  align-items: center;
  background-color: #fee6e3;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  justify-content: center; /* Center text horizontally */
}
.buttonbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Fixes the buttonbox at a specific position */
  bottom: 20px; /* Adjust this value to control the distance from the bottom */
  left: 0;
  right: 0;
  padding: 10px; /* Add padding if needed */
  z-index: 1000; /* Ensures the button stays on top of other elements */
}

@media (min-width: 768px) {
  .buttonbox {
    position: static; /* Reverts to default positioning on larger screens */
    margin-top: 20px; /* Adjust as needed */
  }
}



.button-56:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: #ffdeda;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-text {
  margin-bottom: 10px; /* Space between the text and the button */
  font-family: Inter, sans-serif;
  font-size: 18px;
  color: #111;
  text-align: center;
}

