
    /* CSS reset for consistency within the page scope */
    .page-68gb25 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-68gb25__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-68gb25__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-68gb25__section--grey {
      background-color: #f0f2f5;
    }

    .page-68gb25__title {
      text-align: center;
      color: #1a2a6c; /* Dark blue */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-68gb25__subtitle {
      text-align: center;
      color: #38a169; /* Green */
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-68gb25__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
      color: #444;
    }

    .page-68gb25__button {
      display: inline-block;
      background-color: #ff4d4f; /* Red for action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-68gb25__button:hover {
      background-color: #e60000;
    }

    /* Hero Section */
    .page-68gb25__hero-section {
      padding-top: 10px; /* Safety area for fixed header */
      text-align: center;
      background-color: #1a2a6c; /* Dark blue */
      color: #fff;
      padding-bottom: 40px;
      border-radius: 0 0 8px 8px;
      margin-bottom: 20px;
      overflow: hidden; /* Ensure image doesn't overflow */
    }

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

    .page-68gb25__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .page-68gb25__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffeb3b; /* Yellow for prominence */
    }

    .page-68gb25__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #f0f2f5;
    }

    /* Floating Promo Button */
    .page-68gb25__floating-promo-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ff4d4f; /* Red */
      color: #fff;
      text-align: center;
      padding: 15px 10px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-size: 1.2em;
      font-weight: bold;
      animation: page-68gb25__pulse 1.5s infinite;
    }

    .page-68gb25__floating-promo-button-text {
        flex-grow: 1;
        text-align: right;
        padding-right: 10px;
    }

    .page-68gb25__floating-promo-button-cta {
        background-color: #ffeb3b; /* Yellow */
        color: #1a2a6c; /* Dark blue */
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        white-space: nowrap;
        text-align: left;
    }

    .page-68gb25__floating-promo-button-cta:hover {
        background-color: #fdd835;
    }

    @keyframes page-68gb25__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }


    /* Game Categories */
    .page-68gb25__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-68gb25__game-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-68gb25__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .page-68gb25__game-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

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

    .page-68gb25__game-name {
      font-weight: bold;
      color: #1a2a6c; /* Dark blue */
      font-size: 1.1em;
      margin-top: auto; /* Push name to bottom if icon is smaller */
    }

    /* Download Section */
    .page-68gb25__download-steps {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-68gb25__download-step {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      background-color: #e8f5e9; /* Light green */
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .page-68gb25__step-number {
      background-color: #38a169; /* Green */
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-68gb25__step-content {
      flex-grow: 1;
    }

    .page-68gb25__step-title {
      color: #1a2a6c; /* Dark blue */
      font-size: 1.3em;
      margin-bottom: 5px;
    }

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

    .page-68gb25__promo-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

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

    .page-68gb25__promo-title {
      color: #ff4d4f; /* Red */
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-68gb25__promo-description {
      color: #555;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-68gb25__faq-list {
      margin-top: 30px;
    }

    .page-68gb25__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-68gb25__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e0f2f7; /* Light blue */
      color: #1a2a6c; /* Dark blue */
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-68gb25__faq-question:hover {
      background-color: #c0e0e8;
    }

    .page-68gb25__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-68gb25__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-68gb25__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fff;
    }

    .page-68gb25__faq-item.active .page-68gb25__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Images general responsive */
    .page-68gb25 img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-68gb25__hero-section {
        padding-top: 10px; /* Safety area for fixed header on mobile */
      }

      .page-68gb25__title {
        font-size: 2em;
      }

      .page-68gb25__subtitle {
        font-size: 1.5em;
      }

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

      .page-68gb25__hero-description {
        font-size: 1.1em;
      }

      .page-68gb25__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-68gb25__game-item {
        padding: 10px;
      }

      .page-68gb25__game-name {
        font-size: 0.9em;
      }

      .page-68gb25__download-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-68gb25__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-68gb25__floating-promo-button {
          font-size: 1em;
          flex-direction: column;
          gap: 5px;
          padding: 10px;
      }

      .page-68gb25__floating-promo-button-text {
          text-align: center;
          padding-right: 0;
      }

      .page-68gb25__floating-promo-button-cta {
          width: 90%;
          text-align: center;
      }

      /* Force image responsive for mobile */
      .page-68gb25 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-68gb25__hero-image-wrapper,
      .page-68gb25__game-icon-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
    @media (max-width: 480px) {
        .page-68gb25__hero-title {
            font-size: 1.8em;
        }
        .page-68gb25__hero-description {
            font-size: 1em;
        }
        .page-68gb25__title {
            font-size: 1.8em;
        }
        .page-68gb25__subtitle {
            font-size: 1.3em;
        }
        .page-68gb25__game-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
        .page-68gb25__faq-question h3 {
            font-size: 1em;
        }
        .page-68gb25__faq-toggle {
            font-size: 1.2em;
        }
    }
  