
    :root {
      --page-pg66__primary-color: #e44d26; /* Orange-red for action */
      --page-pg66__secondary-color: #ffb74d; /* Lighter orange for highlights */
      --page-pg66__dark-bg: #1a1a1a; /* Dark background */
      --page-pg66__light-text: #f0f0f0; /* Light text on dark bg */
      --page-pg66__gray-text: #b0b0b0; /* Subtler text */
      --page-pg66__accent-color: #4CAF50; /* Green for success/promo */
      --page-pg66__border-color: #333;
    }

    .page-pg66 {
      font-family: 'Arial', sans-serif;
      color: var(--page-pg66__light-text);
      background-color: var(--page-pg66__dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Space for fixed footer */
    }

    .page-pg66__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-pg66__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #222;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .page-pg66__section--dark {
      background-color: var(--page-pg66__dark-bg);
      border-radius: 0;
      padding: 60px 20px;
    }

    .page-pg66__title {
      color: var(--page-pg66__primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-pg66__subtitle {
      color: var(--page-pg66__secondary-color);
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-pg66__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-pg66__gray-text);
    }

    .page-pg66__text strong {
      color: var(--page-pg66__light-text);
    }

    /* Hero Section */
    .page-pg66__hero-section {
      text-align: center;
      padding: 120px 0 40px; /* Desktop padding-top to clear fixed header */
      background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    }

    .page-pg66__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-pg66__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-pg66__hero-title {
      font-size: 3em;
      color: var(--page-pg66__secondary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-pg66__hero-description {
      font-size: 1.3em;
      color: var(--page-pg66__light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-pg66__cta-button {
      display: inline-block;
      background-color: var(--page-pg66__primary-color);
      color: var(--page-pg66__light-text);
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      border: none;
      cursor: pointer;
    }

    .page-pg66__cta-button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-pg66__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-pg66__accent-color);
      color: white;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-pg66__floating-login-button:hover {
      background-color: #5cb85c;
      transform: scale(1.05);
    }

    /* Game Categories */
    .page-pg66__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-pg66__game-category-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-pg66__game-category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-pg66__game-category-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent cards */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-pg66__game-category-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 200px; /* Ensure image covers the height */
    }

    .page-pg66__game-category-title {
      font-size: 1.4em;
      color: var(--page-pg66__light-text);
      padding: 15px;
      background-color: #333;
      margin: 0;
    }

    .page-pg66__game-category-title a {
      color: var(--page-pg66__light-text);
      text-decoration: none;
      display: block;
    }

    .page-pg66__game-category-title a:hover {
      color: var(--page-pg66__primary-color);
    }

    /* Game Providers */
    .page-pg66__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-pg66__provider-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 200px; /* Max width for individual provider logos */
      height: 120px; /* Fixed height for provider logo cards */
    }

    .page-pg66__provider-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-pg66__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 80px; /* Height for the image */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-pg66__provider-logo {
      max-width: 90%; /* Fit logo within the card */
      max-height: 90%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Promotions */
    .page-pg66__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--page-pg66__accent-color);
    }

    .page-pg66__promo-title {
      color: var(--page-pg66__accent-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-pg66__promo-description {
      color: var(--page-pg66__gray-text);
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-pg66__faq-list {
      margin-top: 30px;
    }

    .page-pg66__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-pg66__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      border-bottom: 1px solid var(--page-pg66__border-color);
      transition: background-color 0.3s ease;
    }

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

    .page-pg66__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-pg66__light-text);
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-pg66__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-pg66__primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-pg66__faq-item.active .page-pg66__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: var(--page-pg66__accent-color);
    }

    .page-pg66__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-pg66__gray-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-pg66__faq-item.active .page-pg66__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-pg66__hero-section {
        padding-top: 100px; /* Mobile padding-top to clear fixed header */
        padding-bottom: 20px;
      }

      .page-pg66__hero-title {
        font-size: 2em;
      }

      .page-pg66__hero-description {
        font-size: 1em;
      }

      .page-pg66__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-pg66__title {
        font-size: 2em;
      }

      .page-pg66__subtitle {
        font-size: 1.4em;
      }

      .page-pg66__text {
        font-size: 1em;
      }

      .page-pg66__game-categories-grid {
        grid-template-columns: 1fr;
      }

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

      .page-pg66__provider-item {
        max-width: 150px;
        height: 100px;
      }

      .page-pg66__section {
        padding: 30px 15px;
      }

      .page-pg66__section--dark {
        padding: 40px 15px;
      }

      .page-pg66__faq-question {
        padding: 15px 20px;
      }

      .page-pg66__faq-question h3 {
        font-size: 1.1em;
      }

      .page-pg66__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsive optimization for mobile */
      .page-pg66__hero-image,
      .page-pg66__game-category-image,
      .page-pg66__provider-logo,
      .page-pg66__full-width-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
      }

      .page-pg66__hero-image-wrapper,
      .page-pg66__game-category-image-wrapper,
      .page-pg66__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  