
    /* Page-specific CSS for 2as9 */
    .page-2as9 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

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

    .page-2as9__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-2as9__hero-section {
      background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0;
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }

    .page-2as9__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      font-weight: bold;
    }

    .page-2as9__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-2as9__button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin: 5px;
    }

    .page-2as9__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-2as9__button--secondary {
      background-color: #f39c12;
    }

    .page-2as9__button--secondary:hover {
      background-color: #e67e22;
    }

    .page-2as9__heading {
      font-size: 2em;
      color: #2c3e50;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-2as9__heading--light {
      color: #ecf0f1;
    }

    .page-2as9__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #e74c3c;
    }

    .page-2as9__text {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-2as9__text--light {
      color: #bdc3c7;
    }

    .page-2as9__image-container {
      margin-top: 30px;
      text-align: center;
    }

    .page-2as9__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: block; /* Ensures centering with margin auto */
      margin: 0 auto;
    }

    .page-2as9__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-2as9__card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-2as9__card:hover {
      transform: translateY(-5px);
    }

    .page-2as9__card-icon {
      width: 150px; /* Min size */
      height: 150px; /* Min size */
      margin-bottom: 15px;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-2as9__card-title {
      font-size: 1.3em;
      color: #34495e;
      margin-bottom: 10px;
    }

    .page-2as9__card-description {
      font-size: 0.95em;
      color: #7f8c8d;
    }

    .page-2as9__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-2as9__promotion-card {
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 250px;
    }

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

    .page-2as9__promotion-title {
      font-size: 1.4em;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-2as9__promotion-description {
      font-size: 1em;
      color: #34495e;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-2as9__promotion-date {
      font-size: 0.9em;
      color: #7f8c8d;
    }

    .page-2as9__payment-methods,
    .page-2as9__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-2as9__logo-item {
      background-color: #f9f9f9;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      max-width: 200px;
      box-sizing: border-box;
    }

    .page-2as9__logo-image {
      max-width: 100%;
      height: auto;
      max-height: 60px;
      object-fit: contain;
    }

    /* FAQ Styles */
    .page-2as9__faq-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-2as9__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-2as9__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-2as9__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px;
      background-color: #f5f5f5;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-2as9__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-2as9__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #34495e;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-2as9__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-2as9__faq-item.active .page-2as9__faq-toggle {
      transform: rotate(45deg);
    }

    .page-2as9__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-2as9__hero-title {
        font-size: 2.2em;
      }

      .page-2as9__hero-subtitle {
        font-size: 1.1em;
      }

      .page-2as9__heading {
        font-size: 1.8em;
      }

      .page-2as9__section {
        padding: 30px 15px;
      }

      .page-2as9__grid,
      .page-2as9__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-2as9__card {
        padding: 20px;
      }

      .page-2as9__card-icon {
        width: 100px;
        height: 100px;
      }

      .page-2as9__logo-item {
        min-width: 120px;
        max-width: 150px;
        padding: 10px 15px;
      }

      /* List item responsiveness for FAQ */
      .page-2as9__faq-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
      .page-2as9__faq-question {
        padding: 10px 15px;
      }
      .page-2as9__faq-question h3 {
        font-size: 1em;
      }
      .page-2as9__faq-answer {
        padding: 15px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-2as9__faq-section {
        padding: 30px 15px;
      }

      /* General image responsiveness */
      .page-2as9__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-2as9__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-2as9__hero-title {
        font-size: 1.8em;
      }

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

      .page-2as9__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-2as9__heading {
        font-size: 1.5em;
      }

      .page-2as9__text {
        font-size: 1em;
      }
    }
  