
    :root {
      --page-69-primary-color: #FFD700; /* Yellow */
      --page-69-secondary-color: #FFFFFF; /* White */
      --page-69-background-color: #000000; /* Black */
      --page-69-dark-gray: #1a1a1a;
      --page-69-light-gray: #333333;
    }

    .page-69 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-69-background-color);
      color: var(--page-69-secondary-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-69__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: 140px; /* Safe area for fixed header */
      margin-bottom: 30px;
      background-color: var(--page-69-dark-gray);
    }

    .page-69__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-69__hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 15px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
      color: var(--page-69-secondary-color);
      text-align: center;
    }

    .page-69__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-69-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-69__hero-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto;
      color: var(--page-69-secondary-color);
    }

    .page-69__section {
      padding: 40px 0;
      margin-bottom: 20px;
    }

    .page-69__section--dark {
      background-color: var(--page-69-dark-gray);
    }

    .page-69__section-title {
      font-size: 2em;
      color: var(--page-69-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-69__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-69-primary-color);
    }

    .page-69__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-69__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-69__game-card {
      background-color: var(--page-69-light-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-69__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-69__game-card-image {
      width: 100%;
      height: 200px; /* Ensure minimum size */
      object-fit: cover;
      display: block;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-69__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-69__game-card-title {
      font-size: 1.4em;
      color: var(--page-69-primary-color);
      margin-bottom: 10px;
    }

    .page-69__game-card-description {
      font-size: 0.95em;
      color: var(--page-69-secondary-color);
      margin-bottom: 15px;
      text-align: left;
    }

    .page-69__button {
      display: inline-block;
      background-color: var(--page-69-primary-color);
      color: var(--page-69-background-color);
      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;
    }

    .page-69__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-69__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-69__provider-item {
      background-color: var(--page-69-light-gray);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-69__provider-item:hover {
      transform: scale(1.05);
    }

    .page-69__provider-logo {
      width: 100%;
      max-width: 120px; /* Adjust based on desired logo size */
      height: auto;
      display: block;
      margin: 0 auto 10px auto;
      object-fit: contain;
      max-height: 80px;
      min-height: 50px; /* Ensure minimum size */
      min-width: 50px;
    }

    .page-69__provider-name {
      font-size: 0.9em;
      color: var(--page-69-secondary-color);
      font-weight: bold;
    }

    .page-69__faq-section {
      padding: 40px 0;
      margin-bottom: 20px;
    }

    .page-69__faq-item {
      background-color: var(--page-69-dark-gray);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-69__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-69-light-gray);
      color: var(--page-69-primary-color);
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-69__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-69-primary-color);
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-69__faq-question:hover {
      background-color: #444444;
    }

    .page-69__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-69__faq-item.active .page-69__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
    }

    .page-69__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-69-secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-69__sticky-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-69-primary-color);
      color: var(--page-69-background-color);
      padding: 10px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      text-align: center;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-69__sticky-promo:hover {
      transform: translateY(-5px);
    }

    .page-69__sticky-promo-icon {
      font-size: 1.5em;
      line-height: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-69__hero-section {
        padding-top: 140px; /* Adjust for mobile header */
      }
      .page-69__hero-title {
        font-size: 1.8em;
      }
      .page-69__hero-description {
        font-size: 0.9em;
      }
      .page-69__section-title {
        font-size: 1.6em;
      }
      .page-69__game-grid {
        grid-template-columns: 1fr;
      }
      .page-69__game-card-image {
        height: 180px;
      }
      .page-69__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-69__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-69__faq-question h3 {
        font-size: 1em;
      }
      .page-69__faq-answer {
        padding: 0 10px;
      }
      .page-69__faq-item.active .page-69__faq-answer {
        padding: 15px 10px !important;
      }
      .page-69__sticky-promo {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 1em;
      }
      .page-69__game-card-image,
      .page-69__provider-logo,
      .page-69__hero-image {
          max-width: 100% !important;
          height: auto !important;
      }
    }

    /* General image responsiveness */
    .page-69 img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
      overflow: hidden;
    }
  