
    :root {
      --page-pg66game__primary-bg: #1a1a1a;
      --page-pg66game__secondary-bg: #2a2a2a;
      --page-pg66game__text-color: #f0f0f0;
      --page-pg66game__accent-color: #ffcc00; /* Gold */
      --page-pg66game__button-hover-bg: #e6b800;
      --page-pg66game__border-color: #3a3a3a;
      --page-pg66game__success-color: #00cc66; /* Green */
      --page-pg66game__error-color: #ff4444;
    }

    .page-pg66game {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-pg66game__primary-bg);
      color: var(--page-pg66game__text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer/floating button */
    }

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

    .page-pg66game__hero-section {
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      margin-bottom: 30px;
    }

    .page-pg66game__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-pg66game__hero-content {
      padding: 20px 15px;
      background: linear-gradient(135deg, var(--page-pg66game__secondary-bg), #1f1f1f);
      border-radius: 0 0 8px 8px;
      margin-top: -5px; /* Overlap slightly with image */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-pg66game__hero-title {
      font-size: 2.5em;
      color: var(--page-pg66game__accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-pg66game__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-pg66game__text-color);
    }

    .page-pg66game__cta-button {
      display: inline-block;
      background-color: var(--page-pg66game__accent-color);
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      border: none;
      cursor: pointer;
    }

    .page-pg66game__cta-button:hover {
      background-color: var(--page-pg66game__button-hover-bg);
      transform: translateY(-2px);
    }

    .page-pg66game__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-pg66game__success-color);
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-pg66game__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.3;
      transition: background-color 0.3s ease;
    }

    .page-pg66game__floating-promo-button:hover {
      background-color: #00b359;
    }

    @keyframes page-pg66game__pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 204, 102, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 204, 102, 0); }
    }

    .page-pg66game__section {
      background-color: var(--page-pg66game__secondary-bg);
      border-radius: 8px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-pg66game__section-title {
      color: var(--page-pg66game__accent-color);
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-pg66game__text-block p {
      margin-bottom: 15px;
      color: var(--page-pg66game__text-color);
    }
    .page-pg66game__text-block strong {
      color: var(--page-pg66game__accent-color);
    }

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

    .page-pg66game__game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-pg66game__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-pg66game__game-card-link {
      display: block;
      color: inherit;
      text-decoration: none;
      padding-bottom: 15px;
    }

    .page-pg66game__game-card-image-wrapper {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #222;
    }
    .page-pg66game__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Use contain for game logos */
      display: block;
    }

    .page-pg66game__game-card-title {
      font-size: 1.1em;
      color: var(--page-pg66game__text-color);
      margin-top: 15px;
      padding: 0 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-pg66game__game-card-button {
      background-color: var(--page-pg66game__accent-color);
      color: #1a1a1a;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      margin-top: 10px;
      display: inline-block;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .page-pg66game__game-card-button:hover {
      background-color: var(--page-pg66game__button-hover-bg);
    }

    .page-pg66game__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-pg66game__promo-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-pg66game__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-pg66game__promo-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-pg66game__promo-card-content {
      padding: 20px;
    }

    .page-pg66game__promo-card-title {
      font-size: 1.3em;
      color: var(--page-pg66game__accent-color);
      margin-bottom: 10px;
    }

    .page-pg66game__promo-card-description {
      font-size: 0.95em;
      color: var(--page-pg66game__text-color);
      margin-bottom: 15px;
    }

    .page-pg66game__promo-card-link {
      display: inline-block;
      background-color: var(--page-pg66game__success-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-pg66game__promo-card-link:hover {
      background-color: #00b359;
    }

    .page-pg66game__feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-pg66game__feature-item {
      background-color: #333;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-pg66game__feature-icon {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      object-fit: contain;
      border-radius: 4px;
    }

    .page-pg66game__feature-content h3 {
      color: var(--page-pg66game__accent-color);
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-pg66game__feature-content p {
      font-size: 0.95em;
      color: var(--page-pg66game__text-color);
      margin-bottom: 0;
    }

    .page-pg66game__faq-section {
      background-color: var(--page-pg66game__secondary-bg);
      border-radius: 8px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-pg66game__faq-item {
      border-bottom: 1px solid var(--page-pg66game__border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

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

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

    .page-pg66game__faq-question:hover {
      background-color: #444;
    }

    .page-pg66game__faq-question h3 {
      font-size: 1.1em;
      color: var(--page-pg66game__text-color);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-pg66game__faq-toggle {
      font-size: 1.5em;
      color: var(--page-pg66game__accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-pg66game__faq-item.active .page-pg66game__faq-toggle {
      transform: rotate(45deg); /* Plus to X for close, or just rotate */
      content: '−'; /* Change to minus */
    }

    .page-pg66game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #2a2a2a;
      border-radius: 0 0 5px 5px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-pg66game__text-color);
      font-size: 0.95em;
    }

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

    .page-pg66game__faq-answer p {
      margin-bottom: 10px;
    }
    .page-pg66game__faq-answer p:last-child {
      margin-bottom: 0;
    }

    .page-pg66game__final-cta {
      text-align: center;
      padding: 40px 15px;
      background: linear-gradient(90deg, #00cc66, var(--page-pg66game__accent-color));
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      margin-top: 30px;
    }

    .page-pg66game__final-cta h2 {
      color: #1a1a1a;
      font-size: 2.2em;
      margin-bottom: 15px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .page-pg66game__final-cta p {
      color: #333;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-pg66game__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
      }
      .page-pg66game__hero-title {
        font-size: 2em;
      }
      .page-pg66game__hero-description {
        font-size: 1em;
      }
      .page-pg66game__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-pg66game__section {
        padding: 20px;
      }
      .page-pg66game__section-title {
        font-size: 1.8em;
      }
      .page-pg66game__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
      .page-pg66game__game-card-image-wrapper {
        height: 100px;
      }
      .page-pg66game__game-card-title {
        font-size: 1em;
      }
      .page-pg66game__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-pg66game__feature-list {
        grid-template-columns: 1fr;
      }
      .page-pg66game__feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      .page-pg66game__feature-icon {
        margin-bottom: 10px;
      }
      .page-pg66game__faq-question {
        padding: 12px;
      }
      .page-pg66game__faq-question h3 {
        font-size: 1em;
      }
      .page-pg66game__faq-answer {
        padding: 15px 12px;
      }
      .page-pg66game__final-cta h2 {
        font-size: 1.8em;
      }
      .page-pg66game__final-cta p {
        font-size: 1em;
      }
      .page-pg66game__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      /* Ensure images are responsive on mobile */
      .page-pg66game img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-pg66game__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-pg66game__promo-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-pg66game__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  