/* --- Global Styles and Background --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh; /* Better for full height background */
    /* Dark Gradient Background */
    background: linear-gradient(180deg, #25235c, #100D36);
    background-attachment: fixed;
    background-size: cover;
    color: white; /* Default text color */
}

/* --- Layout and Content Wrapper --- */
.content-wrapper {
    /* Added bottom padding to make space for the fixed button */
    padding: 20px 20px 0; 
    max-width: 600px; /* Optional: Sets a max width for large screens */
    margin: 0 auto; /* Centers the content wrapper */
}

.top-logo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.main-logo-image {
    width: 200px; /* Set a specific size for the main logo */
    height: auto;
    
    object-fit: contain;
}

.main-image {
    margin-top: 30px;
    text-align: center;
}

.responsive-main-image {
    width: 100%;
    max-width: 450px; /* Ensures it doesn't get too big on desktop */
    height: auto;
    object-fit: contain;
}

/* --- Typography and Headings --- */
.title-info {
    margin-top: 30px;
    text-align: center;
}

/* Sub-heading style - Green */
.title-info .section-heading-small {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #75ff93;
    text-transform: uppercase;
}

/* Main Heading Style - Gradient Text */
.title-info .section-heading-large {
    margin-top: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    background: linear-gradient(85.98deg, #ffe974 10.89%, #d06cff 91.16%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Paragraph Style */
.title-info p {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 100;
    line-height: 15px;
    color: rgba(255, 255, 255, .7);
    margin-top: 10px;
}

/* --- Game Logos Container --- */
.logo-container {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Simplified spacing */
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- Payment and Certification Sections --- */

.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  margin-top: 30px; 
}

.section-container .section-heading {
  font-size: 28px;
  font-weight: bold;
  color: #fa3333;
}

.section-container .section-sub-heading {
  font-size: 20px;
  color: #e62828;
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.payment-icons img {
  width: 110px;
  height: 70px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.payment-icons img:hover {
  transform: scale(1.1);
}

.certificate-container {
    display: flex;
    margin-top: 50px;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; 
}

.certificate-container img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.made-by {
    margin-top: 40px;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

/* --- Fixed Bottom Button (CTA) --- */

/* Spacer to prevent content from being hidden by the fixed button */
.bottom-spacer {
    height: 120px; /* Ensures enough space for the fixed button area */
}

.bottom-button {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    /* Gradient Shadow/Background */
    background: linear-gradient(180deg, rgba(27, 0, 41, 0) 0, #1b0029 30.73%);
    padding-top: 30px; /* Space above the button due to gradient */
    z-index: 999;
}

.cta-container {
    margin: 0 20px 20px; /* 20px side padding and bottom margin */
}

.cta-container button {
    /* Main Button Styling */
    width: 100%;
    height: 50px; 
    border-radius: 6px;
    border: 1px solid #ffffffa1;
    cursor: pointer;

    /* Green Gradient Background */
    background: linear-gradient(180deg, #00d047 0, #00a040 100%);
    box-shadow: 0 4px 12px -5px rgba(40, 153, 83, .12);

    /* Text Styling */
    font-family: Rubik, sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .12);
    border: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 450px) {
  .content-wrapper {
      padding-left: 10px;
      padding-right: 10px;
  }
  
  .title-info .section-heading-large {
      font-size: 22px;
      line-height: 26px;
  }
  
  .logo-container .logo {
    width: 80px;
    height: 80px;
  }

  .certificate-container {
    gap: 15px; 
  }
  
  .section-container .section-heading {
    font-size: 24px;
  }
  .section-container .section-sub-heading {
    font-size: 18px;
  }
  .payment-icons img {
    width: 80px;
  }
  
  .cta-container button {
    font-size: 16px;
  }
  
}