

/* General Styles */
body {
    font-family: 'Luckiest Guy', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display:flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-size: cover; /* Ensures the image covers the entire screen */
    background-position: center; /* Centers the background */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    
  }

/* Style for the logo */
.logo {
    max-width: 300px; /* Adjust the size as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
  }
  

  /* Headings */
  h1, h2 {
    font-family: 'Luckiest Guy', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Buttons and Interactive Text */
  button, .platform-button, .option-button {
    font-family: 'Luckiest Guy', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
  }

  /* Adjust Container Text */
  p, label {
    font-family: 'Poppins', sans-serif; /* Keep legible body text */
    font-size: 14px;
  }

  h3 {
    font-weight: 100;
  }

  .container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    text-align: center;
    margin-top: 100px; /* Space from the content */
  }

/* Input Field Styling */
input {
    width: 100%;
    padding: 10px 15px; /* Adjust padding for better appearance */
    font-family: 'Luckiest Guy', sans-serif; /* Apply Luckiest Guy font */
    font-size: 16px;
    box-sizing: border-box; /* Ensure padding and borders are included in width */
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
  }
  
  /* Change focus style for better user experience */
  input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
  
  /* Placeholder Styling */
  input::placeholder {
    font-family: 'Luckiest Guy', sans-serif; /* Apply Luckiest Guy font */
    font-size: 16px;
    color: #aaa; /* Adjust color for better visibility */
  }
  

  
  h1 {
    color: #4caf50;
  }
  
  p {
    color: #555;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .green-button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    font-size:30px;
    height: 60px;
  }
  
  .green-button:hover {
    transform: scale(1.1);
    background-color: #3e8e41;
  }
  
  .platform-button {
    background-color: #e0e0e0;
    color: #555;
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .platform-button:hover {
    transform: scale(1.1);
    background-color: #4caf50;
    color: white;
  }
  
  .spinner {
    border: 4px solid #f4f4f4;
    border-top: 4px solid #4caf50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  


/* Make the checkbox larger and green */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px; /* Add space between checkbox and text */
    accent-color: #4caf50; /* Make the checkbox green */
    vertical-align: middle; /* Align the checkbox with the text */
  }
  
  /* Align checkbox and text on the same line */
  .terms {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  /* Style for the 'I agree' text */
  .terms label {
    font-family: 'Luckiest Guy', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: #333;
  }
  
  .terms a {
    color: #4caf50;
    text-decoration: none;
  }
  
  .terms a:hover {
    text-decoration: underline;
  }
  


/* Style for Robux buttons */
.robux-btn {
    align-items: center;      /* Vertically align items */
    flex-direction: column;       /* Stack items vertically */
    align-items: center;          /* Center items horizontally */
    justify-content: center;      /* Center items vertically */
    padding: 10px 15px;           /* Add padding around the button */
    font-size: 25px;              /* Set font size */
    background-color: #e0e0e0;
    color: #333;
    border: none;                 /* Remove border */
    border-radius: 8px;           /* Rounded corners */
    cursor: pointer;             /* Cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width: 120px;                 /* Fixed button width */
    height: 160px;                /* Fixed button height */
  }
  
  .robux-btn:hover {
    transform: scale(1.1);
    background-color: #4caf50;
    color: white;
  }

  .active {
    background-color: #4caf50;
    color: white;
  }

  .robux-btn.active img {
    filter: brightness(0) invert(1); /* Makes the icon white */
  }

  .robux-btn img {
    width: 50x;              /* Adjust size of the icon */
    height: 50px;             /* Keep the icon square */
    filter: grayscale(100%) brightness(50%) contrast(100%); /* Dark gray tint */
    transition: filter 0.3s ease; /* Smooth color change */
  }
  
  
  .robux-btn:hover img {
    filter: brightness(0) invert(1); /* Makes the icon white */
  }
  




  /* Zoom-in animation */
@keyframes zoomIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .zoom-in {
    animation: zoomIn 0.5s ease-in-out;
  }
  

.footer {
  background-color: rgba(0, 0, 0, 0.5); /* Dark background with 50% opacity */
  color: white;
  padding: 20px 0; /* Space around the content */
  text-align: center;
  width: 100%;
  position: relative;
  bottom: 0;
  margin-top: 500px; /* Space from the content */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Horizontal padding */
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer a {
  color: #4CAF50; /* Green color for the link */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}