
    /* Base styles for the page */
    .page-66-g {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
      padding-top: 10px; /* Minimal top padding, assuming body handles header offset */
    }

    .page-66-g__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-66-g__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-66-g__section--dark {
      background-color: #2a2a4a;
      border-radius: 15px;
      margin: 20px 0;
    }

    .page-66-g__section--light {
      background-color: #3a3a5a;
      border-radius: 15px;
      margin: 20px 0;
    }

    .page-66-g__title {
      font-size: 2.8em;
      color: #ffcc00; /* Yellow accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-66-g__subtitle {
      font-size: 1.8em;
      color: #ffffff;
      margin-bottom: 15px;
    }

    .page-66-g__text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-66-g__button {
      display: inline-block;
      background-color: #e60000; /* Red accent */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

    .page-66-g__button:hover {
      background-color: #cc0000;
    }

    .page-66-g__button--secondary {
      background-color: #007bff;
    }

    .page-66-g__button--secondary:hover {
      background-color: #0056b3;
    }

    /* Hero Section */
    .page-66-g__hero-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
      padding: 60px 20px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      margin: 20px;
    }

    .page-66-g__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-66-g__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-66-g__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-66-g__hero-description {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      font-weight: 300;
    }

    /* Floating Register/Login Buttons */
    .page-66-g__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(26, 26, 46, 0.8);
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-66-g__floating-button {
      display: inline-block;
      background-color: #e60000;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-66-g__floating-button--login {
      background-color: #007bff;
    }

    .page-66-g__floating-button:hover {
      background-color: #cc0000;
    }

    .page-66-g__floating-button--login:hover {
      background-color: #0056b3;
    }

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

    .page-66-g__game-card {
      background-color: #3a3a5a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid #4a4a7a;
    }

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

    .page-66-g__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-66-g__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-66-g__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-66-g__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-66-g__game-card-description {
      font-size: 0.95em;
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-66-g__promotion-item {
      background-color: #3a3a5a;
      border-radius: 15px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: left;
      border: 1px solid #4a4a7a;
      transition: transform 0.3s ease;
    }
    .page-66-g__promotion-item:hover {
        transform: translateY(-3px);
    }

    .page-66-g__promotion-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-66-g__promotion-description {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    /* Payment and Providers */
    .page-66-g__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-66-g__logo-item {
      background-color: #3a3a5a;
      padding: 15px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid #4a4a7a;
      transition: transform 0.3s ease;
    }

    .page-66-g__logo-item:hover {
        transform: scale(1.05);
    }

    .page-66-g__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(20%); /* Slight grayscale for consistency, not color change */
      transition: filter 0.3s ease;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    .page-66-g__logo-item:hover .page-66-g__logo-image {
        filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-66-g__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-66-g__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid #4a4a7a;
    }

    .page-66-g__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-66-g__faq-question:hover {
      background-color: #4a4a7a;
    }

    .page-66-g__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-66-g__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
    }

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

    .page-66-g__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #e0e0e0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-66-g__faq-item.active .page-66-g__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-66-g__container {
        padding: 15px;
      }

      .page-66-g__title {
        font-size: 2.2em;
      }

      .page-66-g__subtitle {
        font-size: 1.5em;
      }

      .page-66-g__hero-title {
        font-size: 2.5em;
      }

      .page-66-g__hero-description {
        font-size: 1.1em;
      }

      .page-66-g__game-categories {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }

      .page-66-g__game-card-image {
        height: 180px; /* Adjust height for mobile */
      }

      .page-66-g__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-66-g__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-66-g__faq-answer {
        padding: 0 15px;
      }

      .page-66-g__faq-item.active .page-66-g__faq-answer {
        padding: 15px 15px !important;
      }

      .page-66-g__floating-buttons {
        gap: 10px;
        padding: 8px 15px;
        bottom: 10px;
      }

      .page-66-g__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      /* List item responsiveness for game categories, payment, providers */
      .page-66-g__game-card,
      .page-66-g__logo-item,
      .page-66-g__promotion-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-66-g__game-card-description,
      .page-66-g__promotion-description,
      .page-66-g__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-66-g__hero-title {
        font-size: 2em;
      }

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

      .page-66-g__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  