
    /* Base styles for the page */
    .page-alo789download {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    /* General section styling */
    .page-alo789download__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-alo789download__section--dark {
      background-color: #1a1a1a;
    }

    .page-alo789download__section-title {
      font-size: 2.5em;
      color: #FFFF00;
      margin-bottom: 25px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-alo789download__section-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-alo789download__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Safe zone for fixed header on desktop */
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .page-alo789download__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px; /* Space between image and content */
    }

    .page-alo789download__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      object-fit: cover; /* Ensure image covers the area without distortion */
      border-radius: 8px;
    }

    .page-alo789download__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-alo789download__hero-title {
      font-size: 3em;
      color: #FFFF00;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-alo789download__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-alo789download__download-button {
      display: inline-block;
      background-color: #FFFF00;
      color: #000000;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-alo789download__download-button:hover {
      background-color: #e6e600;
      transform: translateY(-3px);
    }

    /* Benefits Section */
    .page-alo789download__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-alo789download__benefit-item {
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-alo789download__benefit-item:hover {
      transform: translateY(-5px);
    }
    
    .page-alo789download__benefit-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
        display: flex; /* To align the image if it's smaller than wrapper */
        justify-content: flex-start;
    }
    .page-alo789download__benefit-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }


    .page-alo789download__benefit-title {
      font-size: 1.5em;
      color: #FFFF00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-alo789download__benefit-description {
      font-size: 1em;
      color: #FFFFFF;
    }

    /* Download Guide Section */
    .page-alo789download__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 40px;
    }

    .page-alo789download__guide-step {
      display: flex;
      align-items: center;
      text-align: left;
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-alo789download__guide-step:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-alo789download__step-image-wrapper {
        flex: 1;
        min-width: 250px;
        max-width: 400px; /* Ensure images don't get too large relative to content */
        margin: 0 30px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-alo789download__step-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    .page-alo789download__step-content {
      flex: 2;
    }

    .page-alo789download__step-number {
      font-size: 2em;
      color: #FFFF00;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-alo789download__step-title {
      font-size: 1.8em;
      color: #FFFF00;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-alo789download__step-description {
      font-size: 1.1em;
      color: #FFFFFF;
    }

    /* Game Showcase Section */
    .page-alo789download__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for more columns, but individual images will be larger */
      gap: 20px;
      margin-top: 40px;
    }

    .page-alo789download__game-card {
      background-color: #1a1a1a;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-alo789download__game-card:hover {
      transform: translateY(-5px);
    }

    .page-alo789download__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-alo789download__game-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border-radius: 8px;
    }

    .page-alo789download__game-title {
      font-size: 1.2em;
      color: #FFFF00;
      font-weight: bold;
    }

    /* Promotions Section */
    .page-alo789download__promo-card {
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      margin-top: 40px;
      text-align: center;
    }

    .page-alo789download__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-alo789download__promo-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-alo789download__promo-title {
      font-size: 2em;
      color: #FFFF00;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-alo789download__promo-description {
      font-size: 1.1em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    .page-alo789download__promo-button {
      display: inline-block;
      background-color: #FFFF00;
      color: #000000;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-alo789download__promo-button:hover {
      background-color: #e6e600;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-alo789download__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-alo789download__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-alo789download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      color: #FFFF00;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-alo789download__faq-question:hover {
      background-color: #444444;
    }
    
    .page-alo789download__faq-question h3 {
        margin: 0;
        color: #FFFF00;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-alo789download__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-alo789download__faq-item.active .page-alo789download__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    .page-alo789download__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #FFFFFF;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-alo789download__faq-item.active .page-alo789download__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Floating Login Button */
    .page-alo789download__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700; /* Gold-like yellow */
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      text-decoration: none; /* Ensure no underline for external link */
      border: none;
    }

    .page-alo789download__floating-login-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-alo789download__hero-section {
        padding-top: 10px; /* Safe zone for fixed header on mobile */
        min-height: 300px;
      }

      .page-alo789download__hero-title {
        font-size: 2.2em;
      }

      .page-alo789download__hero-description {
        font-size: 1em;
      }

      .page-alo789download__section-title {
        font-size: 2em;
      }

      .page-alo789download__section-subtitle {
        font-size: 1em;
      }

      .page-alo789download