
    .page-888az {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-top: 10px; /* Adhering to fixed navbar spacing, light top padding */
    }

    .page-888az__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Vibrant gradient */
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .page-888az__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin-bottom: 30px;
    }

    .page-888az__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-888az__highlight {
      color: #fdbb2d; /* Highlight color */
    }

    .page-888az__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-888az__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-888az__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-888az__button--primary {
      background-color: #fdbb2d;
      color: #1a2a6c;
    }

    .page-888az__button--primary:hover {
      background-color: #e6a700;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-888az__button--secondary {
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .page-888az__button--secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-888az__button--large {
      padding: 15px 35px;
      font-size: 1.1em;
      border-radius: 35px;
    }

    .page-888az__button--small {
      padding: 8px 18px;
      font-size: 0.9em;
      border-radius: 20px;
    }

    .page-888az__hero-image {
      max-width: 100%;
      height: auto;
      margin-top: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
      box-sizing: border-box; /* Ensure padding/border is included in width */
    }

    .page-888az__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-888az__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #fdbb2d;
      border-radius: 2px;
    }

    .page-888az__intro-section,
    .page-888az__games-section,
    .page-888az__promotions-section,
    .page-888az__why-choose-section,
    .page-888az__partners-section,
    .page-888az__faq-section,
    .page-888az__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-888az__text-content {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-888az__features-grid,
    .page-888az__game-categories,
    .page-888az__promo-grid,
    .page-888az__why-choose-grid {
      display: grid;
      gap: 30px;
      justify-content: center;
    }

    .page-888az__features-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-888az__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-888az__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-888az__feature-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      box-sizing: border-box; /* Ensure padding/border is included in width */
    }

    .page-888az__feature-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-888az__feature-description {
      color: #666;
      font-size: 0.95em;
    }

    .page-888az__game-categories,
    .page-888az__promo-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-888az__game-card,
    .page-888az__promo-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-888az__game-card:hover,
    .page-888az__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-888az__game-image,
    .page-888az__promo-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      box-sizing: border-box; /* Ensure padding/border is included in width */
    }

    .page-888az__game-title,
    .page-888az__promo-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-888az__game-description,
    .page-888az__promo-description {
      color: #666;
      font-size: 0.95em;
      flex-grow: 1;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-888az__why-choose-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-888az__why-choose-item {
      background-color: #eef7ff;
      border-left: 5px solid #1a2a6c;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-888az__why-choose-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-888az__why-choose-description {
      color: #555;
      font-size: 0.95em;
    }

    .page-888az__partner-type {
      margin-top: 40px;
    }

    .page-888az__partner-subtitle {
      font-size: 1.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-888az__partner-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-888az__partner-item {
      background-color: #f0f0f0;
      padding: 10px 20px;
      border-radius: 25px;
      color: #333;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Required for list items */
      max-width: 100%; /* Ensure it doesn't overflow */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-888az__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-888az__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-888az__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      color: #1a2a6c;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-888az__faq-question:hover {
      background-color: #eef7ff;
    }

    .page-888az__faq-title {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for FAQ */
    }

    .page-888az__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for FAQ */
    }

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

    .page-888az__faq-answer p {
      margin: 0;
      padding-bottom: 20px;
    }

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

    .page-888az__faq-item.active .page-888az__faq-toggle {
        transform: rotate(0deg); /* Reset rotation if using '-' */
        /* content: '−'; // This will be handled by JS for direct text */
    }

    .page-888az__cta-section {
      text-align: center;
      background-color: #1a2a6c;
      color: #fff;
      padding: 80px 20px;
    }

    .page-888az__cta-section .page-888az__section-title {
      color: #fff;
    }

    .page-888az__cta-section .page-888az__section-title::after {
      background-color: #fdbb2d;
    }

    .page-888az__cta-section .page-888az__text-content {
      color: #eee;
    }

    .page-888az__cta-buttons {
      margin-top: 40px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-888az__hero-title {
        font-size: 2.5em;
      }
      .page-888az__section-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-888az__hero-section {
        padding: 40px 15px;
      }
      .page-888az__hero-title {
        font-size: 2em;
      }
      .page-888az__hero-description {
        font-size: 1em;
      }
      .page-888az__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-888az__button {
        width: 100%;
        max-width: 300px;
      }

      .page-888az__intro-section,
      .page-888az__games-section,
      .page-888az__promotions-section,
      .page-888az__why-choose-section,
      .page-888az__partners-section,
      .page-888az__faq-section,
      .page-888az__cta-section {
        padding: 40px 15px;
        margin-bottom: 20px;
      }

      .page-888az__section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
      }

      .page-888az__text-content {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-888az__features-grid,
      .page-888az__game-categories,
      .page-888az__promo-grid,
      .page-888az__why-choose-grid {
        grid-template-columns: 1fr;
      }

      .page-888az__feature-item,
      .page-888az__game-card,
      .page-888az__promo-card,
      .page-888az__why-choose-item {
        width: 100%;
        box-sizing: border-box !important; /* Ensure proper width calculation */
      }

      /* List items responsiveness */
      .page-888az__partner-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .page-888az__partner-item {
        width: 100% !important;
        max-width: 90% !important; /* A bit smaller to have some side padding */
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center;
      }

      /* Image responsiveness */
      .page-888az__hero-image,
      .page-888az__feature-image,
      .page-888az__game-image,
      .page-888az__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-888az__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-888az__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

      .page-888az__faq-item.active .page-888az__faq-answer {
        padding: 15px 20px !important;
      }

      .page-888az__cta-section {
        padding: 60px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-888az__hero-title {
        font-size: 1.8em;
      }
      .page-888az__section-title {
        font-size: 1.4em;
      }
      .page-888az__button--large {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  