
    :root {
      --page-bg-dark: #1a1a1a;
      --page-text-light: #f0f0f0;
      --page-accent-gold: #FFD700; /* Gold */
      --page-button-bg: #E6B800; /* Slightly darker gold for buttons */
      --page-button-hover: #CCA300;
      --page-card-bg: #2a2a2a;
      --page-border-color: #444;
      --page-padding-section: 60px;
      --page-padding-mobile: 30px;
    }

    /* Base styles for the page wrapper */
    .page-app-di-ng-1xbit-2026 {
      font-family: 'Arial', sans-serif;
      color: var(--page-text-light);
      background-color: var(--page-bg-dark);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-app-di-ng-1xbit-2026__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-app-di-ng-1xbit-2026__section {
      padding: var(--page-padding-section) 0;
      text-align: center;
    }

    .page-app-di-ng-1xbit-2026__section--dark {
      background-color: var(--page-card-bg);
    }

    .page-app-di-ng-1xbit-2026__heading {
      font-size: 3em;
      color: var(--page-accent-gold);
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-app-di-ng-1xbit-2026__subheading {
      font-size: 2em;
      color: var(--page-text-light);
      margin-bottom: 15px;
    }

    .page-app-di-ng-1xbit-2026__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-app-di-ng-1xbit-2026__hero-section {
      position: relative;
      padding: 100px 0 60px; /* Adjusted padding-top assuming body has offset */
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:mobile_betting,app_download,1xbit]') no-repeat center center/cover;
      color: var(--page-text-light);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      box-sizing: border-box;
    }

    .page-app-di-ng-1xbit-2026__hero-title {
      font-size: 4em;
      color: var(--page-accent-gold);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-app-di-ng-1xbit-2026__hero-description {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 900px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-app-di-ng-1xbit-2026__hero-button {
      display: inline-block;
      background-color: var(--page-button-bg);
      color: #000;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-app-di-ng-1xbit-2026__hero-button:hover {
      background-color: var(--page-button-hover);
    }

    /* Features Section */
    .page-app-di-ng-1xbit-2026__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-app-di-ng-1xbit-2026__feature-card {
      background-color: var(--page-card-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-border-color);
    }

    .page-app-di-ng-1xbit-2026__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-app-di-ng-1xbit-2026__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 5px; /* Ensure images are not filtered */
    }

    .page-app-di-ng-1xbit-2026__feature-title {
      font-size: 1.5em;
      color: var(--page-accent-gold);
      margin-bottom: 10px;
    }

    .page-app-di-ng-1xbit-2026__feature-description {
      font-size: 1em;
      color: var(--page-text-light);
    }

    /* Download Steps Section */
    .page-app-di-ng-1xbit-2026__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-app-di-ng-1xbit-2026__step-item {
      background-color: var(--page-card-bg);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      width: calc(33% - 20px); /* Three items per row */
      min-width: 280px;
      box-sizing: border-box;
      text-align: left;
      border: 1px solid var(--page-border-color);
    }

    .page-app-di-ng-1xbit-2026__step-number {
      font-size: 2em;
      color: var(--page-accent-gold);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-app-di-ng-1xbit-2026__step-title {
      font-size: 1.3em;
      color: var(--page-text-light);
      margin-bottom: 10px;
    }

    .page-app-di-ng-1xbit-2026__step-description {
      font-size: 1em;
      color: var(--page-text-light);
    }

    /* Games Section */
    .page-app-di-ng-1xbit-2026__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-app-di-ng-1xbit-2026__game-card {
      background-color: var(--page-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-border-color);
    }

    .page-app-di-ng-1xbit-2026__game-card:hover {
      transform: translateY(-5px);
    }

    .page-app-di-ng-1xbit-2026__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-app-di-ng-1xbit-2026__game-content {
      padding: 20px;
    }

    .page-app-di-ng-1xbit-2026__game-title {
      font-size: 1.4em;
      color: var(--page-accent-gold);
      margin-bottom: 10px;
    }

    .page-app-di-ng-1xbit-2026__game-provider {
      font-size: 0.9em;
      color: #bbb;
    }

    /* Payment Methods Section */
    .page-app-di-ng-1xbit-2026__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-app-di-ng-1xbit-2026__payment-item {
      background-color: var(--page-card-bg);
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
      color: var(--page-text-light);
      font-size: 1.1em;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--page-border-color);
    }

    .page-app-di-ng-1xbit-2026__payment-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 5px; /* Ensure images are not filtered */
    }

    /* FAQ Section */
    .page-app-di-ng-1xbit-2026__faq-section {
      text-align: left;
    }

    .page-app-di-ng-1xbit-2026__faq-container {
      max-width: 900px;
      margin: 40px auto 0;
    }

    .page-app-di-ng-1xbit-2026__faq-item {
      background-color: var(--page-card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-border-color);
    }

    .page-app-di-ng-1xbit-2026__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333;
      color: var(--page-text-light);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-app-di-ng-1xbit-2026__faq-question:hover {
      background-color: #444;
    }

    .page-app-di-ng-1xbit-2026__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-app-di-ng-1xbit-2026__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-accent-gold);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-app-di-ng-1xbit-2026__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.4s ease;
      color: #ccc;
      font-size: 1.1em;
      text-align: justify;
    }

    .page-app-di-ng-1xbit-2026__faq-item.active .page-app-di-ng-1xbit-2026__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-app-di-ng-1xbit-2026__faq-item.active .page-app-di-ng-1xbit-2026__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    /* Call to Action Section */
    .page-app-di-ng-1xbit-2026__cta-section {
      background-color: var(--page-card-bg);
      padding: var(--page-padding-section) 0;
      text-align: center;
    }

    .page-app-di-ng-1xbit-2026__cta-title {
      font-size: 2.5em;
      color: var(--page-accent-gold);
      margin-bottom: 20px;
    }

    .page-app-di-ng-1xbit-2026__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-app-di-ng-1xbit-2026__hero-title {
        font-size: 3.5em;
      }
      .page-app-di-ng-1xbit-2026__hero-description {
        font-size: 1.3em;
      }
      .page-app-di-ng-1xbit-2026__heading {
        font-size: 2.5em;
      }
      .page-app-di-ng-1xbit-2026__subheading {
        font-size: 1.8em;
      }
      .page-app-di-ng-1xbit-2026__step-item {
        width: calc(50% - 20px); /* Two items per row */
      }
    }

    @media (max-width: 768px) {
      .page-app-di-ng-1xbit-2026__hero-section {
        padding: 80px 0 40px;
        min-height: 500px;
      }
      .page-app-di-ng-1xbit-2026__hero-title {
        font-size: 2.5em;
      }
      .page-app-di-ng-1xbit-2026__hero-description {
        font-size: 1.1em;
      }
      .page-app-di-ng-1xbit-2026__hero-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-app-di-ng-1xbit-2026__section {
        padding: var(--page-padding-mobile) 0;
      }
      .page-app-di-ng-1xbit-2026__heading {
        font-size: 2em;
      }
      .page-app-di-ng-1xbit-2026__subheading {
        font-size: 1.5em;
      }
      .page-app-di-ng-1xbit-2026__paragraph {
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-app-di-ng-1xbit-2026__features-grid,
      .page-app-di-ng-1xbit-2026__steps-list,
      .page-app-di-ng-1xbit-2026__games-grid,
      .page-app-di-ng-1xbit-2026__payment-methods-list {
        display: flex; /* Ensure it's still flex for gap, but items take full width */
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-app-di-ng-1xbit-2026__feature-card,
      .page-app-di-ng-1xbit-2026__step-item,
      .page-app-di-ng-1xbit-2026__game-card,
      .page-app-di-ng-1xbit-2026__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-app-di-ng-1xbit-2026__feature-icon,
      .page-app-di-ng-1xbit-2026__game-image,
      .page-app-di-ng-1xbit-2026__payment-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-app-di-ng-1xbit-2026__game-image {
        height: 180px;
      }
      .page-app-di-ng-1xbit-2026__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-app-di-ng-1xbit-2026__faq-answer {
        font-size: 1em;
        padding: 0 20px;
      }
      .page-app-di-ng-1xbit-2026__faq-item.active .page-app-di-ng-1xbit-2026__faq-answer {
        padding: 15px 20px !important;
      }
      .page-app-di-ng-1xbit-2026__cta-title {
        font-size: 2em;
      }
      .page-app-di-ng-1xbit-2026__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-app-di-ng-1xbit-2026__hero-title {
        font-size: 2em;
      }
      .page-app-di-ng-1xbit-2026__hero-description {
        font-size: 0.9em;
      }
      .page-app-di-ng-1xbit-2026__heading {
        font-size: 1.8em;
      }
      .page-app-di-ng-1xbit-2026__subheading {
        font-size: 1.3em;
      }
    }
  