body {
  margin: 0;
  font-family: 'Unbounded', sans-serif;

  /* Set up gradient for the left half and image for the right half */
  background-image: 
    linear-gradient(to right, rgba(22, 25, 31, 1), rgba(22, 25, 31, 0)), /* Gradient */
    url('images/dice-background.jpg'); /* Background image */
  
  /* Adjust the positioning */
  background-position: 200% 0%, top right; /* Keep gradient as-is, but position the image to the top right */
  
  /* Control the size of each background */
  background-size: 80% 100%, 60%; /* First value for gradient, second for image size */
  
  background-repeat: no-repeat; /* Prevent repeating the background */
  background-color: #16191f;
  display: flex;
  flex-direction: column;
  color: #ffffff; /* Set text color to white for better visibility */
}


.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(22, 25, 32, 0.8);
}

.betaText {
  width: 33.33%;
  font-weight: 100;
}

.betaTextRight {
  width: 66.66%;
  font-weight: 100;
}

.betaTextPadding {
  width: 39%;
  font-weight: 100;
}

.betaTextPadding img {
  width: 100%;
  height: auto;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 70%);
}

.betaTextRightPadding {
  width: 51%;
  font-weight: 100;
  padding: 15px;
}

.logo {
  width: 140px;
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 1;
}

.nav {
  flex-grow: 1;
}

.centerContainer {
  background-color: #2c2f33;
  width: 80%;
  text-align: center;
  margin-left: 10%;
  border: #464a4e;
  border-radius: 6px;
  padding-bottom: 10px;
}

.centerContainer img {
  width: 30px;
  margin-bottom: -60px;
}

.centerContainer h2 {
  font-size: 40px;
  padding: 30px;
}

.centerContainer p {
  font-weight: 100;
  margin-top: -40px;
}

.footer {
  color: #ffffff; /* Text color */
  text-align: center; /* Center the text */
  padding: 20px 0; /* Padding for top and bottom */
  position: relative; /* Ensure it positions correctly */
  bottom: 0; /* Stick to the bottom */
  width: 100%; /* Full width */
  font-size: x-small;
}

.footer-content p {
  margin: 5px 0; /* Space between paragraphs */
}

.footer a {
  color: #1c4ae2; /* Link color */
  text-decoration: none; /* Remove underline */
}

.footer img {
  width: 30px;
}

.footer a:hover {
  text-decoration: underline; /* Underline on hover */
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.nav ul li {
  margin: 0 15px;
}

.nav a {
  color: #ffffff; /* Ensure nav link color is white */
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}

.intro {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 100px;
  text-align: left;
  padding-top: 70px; /* Move content down */
}

.container {
  display: flex;
  flex-direction: row; /* Aligns children (paragraphs) side by side */
  align-items: flex-start;
  justify-content: flex-start; /* Aligns them to the left */
  padding-left: 100px;
  gap: 20px; /* Optional: Adds space between the paragraphs */
  text-align: left;
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between boxes */
  padding: 20px;
  margin-top:60px;
}

.box {
  background-color: #2c2f33; /* Dark background color like in the screenshot */
  color: #fff; /* White text color */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for the raised effect */
  padding: 20px;
  width: 240px; /* Set a fixed width */
  height: 20px; /* Set a fixed height */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 15px; /* Space between icon and text */
  font-size: 14px;
}

.box i {
  font-size: 30px; /* Placeholder size for the icon */
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
}

.box img {
  width: 30px;
}

h2 {
  padding-top: 60px;
}

h1 {
  margin: 0;
  font-weight: 500;
  font-size: 64px;
  line-height: 84px;
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  color: #ffffff; /* Ensure heading color is white */
  margin-bottom: 30px; /* Add space below the heading */
}

.join-button {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 30px;
  font-size: 1em;
  color: #ffffff;
  background-color: #1c4ae2; /* Button background color */
  border: none;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
  font-weight: 500;
  text-transform: uppercase; /* To match all caps text */
  
  /* Clip top-left and bottom-right corners */
  clip-path: polygon(10% 0%, 100% 0%, 100% 65%, 90% 100%, 0% 100%, 0% 35%);
  
  /* Add border-radius to round the other corners */
  border-radius: 5px;
}

.join-button:hover {
  background-color: #5f2fe2; /* Darker shade on hover */
}

/* Mobile-first approach for the background to be full screen */


@media (max-width: 600px) {
  body {
    background-size: cover; /* Ensure the image covers the full screen */
    background-position: center; /* Center the image */
  }
  
  h1 {
    font-size: 1.8em; /* Adjust text for mobile */
    line-height: 1.2em;
  }

  .header {
    height: 40px;
    background-color: rgba(22, 25, 32, 0.8);
  }

  /* Hamburger menu styling */
  .nav ul {
    display: none; /* Hide menu by default */
  }

  .hamburger {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
  }

  .nav.active ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(22, 25, 32, 0.9); /* Mobile menu background */
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
  }

  .container {
    width: 100%;
    padding: 10px; /* Adjust padding for mobile */
    margin: 0; /* Remove any margins that might restrict width */
    flex-direction: column; /* Stack elements vertically on mobile */
  }

  .intro {
    width: 100%;
    padding: 10px; /* Adjust padding for mobile */
    margin: 0; /* Remove any margins that might restrict width */
    flex-direction: column; /* Stack elements vertically on mobile */
    margin-top: 50px;
  }

  /* Ensure betaText takes full width */
  .betaText, .betaTextRight, .betaTextPadding, .betaTextRightPadding {
    width: 90%; /* Make it full-width on mobile */
    padding-left: 10px;
  }

  .box-container {
    gap: 10px; /* Space between boxes */
    padding: 10px;
    margin-top:10px;
  }

  .box {
    background-color: #2c2f33; /* Dark background color like in the screenshot */
    color: #fff; /* White text color */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for the raised effect */
    padding: 20px;
    width: 39%; /* Set a fixed width */
    height: 20px; /* Set a fixed height */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px; /* Space between icon and text */
    font-size: 14px;
  }

  .box i {
    padding: 0px;
  }

  .centerContainer {
    background-color: #2c2f33;
    text-align: center;
    padding-bottom: 10px;
  }
 
  .centerContainer h2 {
    font-size: larger;
    padding: 30px;
  }
  
  .centerContainer p {
    font-weight: 100;
    margin-top: -40px;
    padding: 8px;
  }

  .centerContainer img {
    margin-bottom: -30px;
  }

  .betaTextPadding {
    display: none;
  }
  .nav ul li {
    margin: 10px 0; /* Adjust mobile spacing */
  }
}
