
    :root {
      --page-game-66-com-primary-color: #e02b2b; /* A vibrant red, common in betting sites */
      --page-game-66-com-secondary-color: #ffc107; /* Gold/yellow for highlights */
      --page-game-66-com-dark-background: #1a1a1a;
      --page-game-66-com-light-background: #f8f9fa;
      --page-game-66-com-text-color: #ffffff;
      --page-game-66-com-dark-text-color: #333333;
      --page-game-66-com-border-color: #444444;
      --page-game-66-com-card-background: #2a2a2a;
    }

    /* Fallback for header offset if not set by shared.css */
    .page-game-66-com {
      padding-top: var(--header-offset, 122px); /* Default 122px if --header-offset is not defined */
      background-color: var(--page-game-66-com-dark-background);
      color: var(--page-game-66-com-text-color);
      font-family: 'Arial', sans-serif;
    }

    .page-game-66-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-game-66-com__highlight {
      color: var(--page-game-66-com-secondary-color);
    }

    .page-game-66-com__section-title {
      font-size: 2.5em;
      color: var(--page-game-66-com-text-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      font-weight: 700;
    }

    .page-game-66-com__text-content {
      font-size: 1.1em;
      line-height: 1.6;
      color: #cccccc;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-game-66-com__main-cta,
    .page-game-66-com__hero-cta {
      display: inline-block;
      background-color: var(--page-game-66-com-primary-color);
      color: var(--page-game-66-com-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-game-66-com__main-cta:hover,
    .page-game-66-com__hero-cta:hover {
      background-color: #c02222;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-game-66-com__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-game-66-com__register-button,
    .page-game-66-com__login-button {
      background-color: var(--page-game-66-com-primary-color);
      color: var(--page-game-66-com-text-color);
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 100px; /* Ensure buttons have a minimum width */
    }

    .page-game-66-com__register-button:hover,
    .page-game-66-com__login-button:hover {
      background-color: #c02222;
      transform: scale(1.05);
    }

    /* Hero Section */
    .page-game-66-com__hero-section {
      background: linear-gradient(135deg, var(--page-game-66-com-dark-background) 0%, #333333 100%);
      color: var(--page-game-66-com-text-color);
      padding: 10px 0 60px 0; /* Add 10px top padding for hero, assuming body handles main offset */
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
    }

    .page-game-66-com__hero-content {
      max-width: 800px;
      padding: 0 15px;
    }

    .page-game-66-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 800;
      line-height: 1.2;
    }

    .page-game-66-com__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      line-height: 1.6;
      color: #e0e0e0;
    }

    .page-game-66-com__hero-image-wrapper {
      width: 100%;
      max-width: 900px; /* Adjust max-width for image */
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 20px;
    }

    .page-game-66-com__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    /* About Section */
    .page-game-66-com__about-section {
      background-color: var(--page-game-66-com-card-background);
      padding: 80px 0;
    }

    /* Products Section */
    .page-game-66-com__products-section {
      background-color: var(--page-game-66-com-dark-background);
      padding: 80px 0;
    }

    .page-game-66-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center; /* Center items in grid */
    }

    .page-game-66-com__product-card {
      background-color: var(--page-game-66-com-card-background);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

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

    .page-game-66-com__product-image {
      width: 100%;
      height: 200px; /* Fixed height for product images */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-game-66-com-border-color);
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box; /* Include padding/border in width */
    }

    .page-game-66-com__product-title {
      font-size: 1.8em;
      color: var(--page-game-66-com-secondary-color);
      margin: 20px 15px 10px 15px;
      font-weight: 700;
    }

    .page-game-66-com__product-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      line-height: 1.5;
    }

    /* Promotions Section */
    .page-game-66-com__promotions-section {
      background-color: #222222;
      padding: 80px 0;
    }

    .page-game-66-com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-game-66-com__promo-card {
      background-color: var(--page-game-66-com-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

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

    .page-game-66-com__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-game-66-com-border-color);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-game-66-com__promo-title {
      font-size: 1.7em;
      color: var(--page-game-66-com-primary-color);
      margin: 20px 15px 10px 15px;
      font-weight: 700;
    }

    .page-game-66-com__promo-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      line-height: 1.5;
    }

    .page-game-66-com__cta-wrapper {
      text-align: center;
      margin-top: 40px;
    }

    /* Why Choose Us Section */
    .page-game-66-com__why-choose-us-section {
      background-color: var(--page-game-66-com-dark-background);
      padding: 80px 0;
    }

    .page-game-66-com__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-game-66-com__feature-item {
      background-color: var(--page-game-66-com-card-background);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-game-66-com__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-game-66-com__feature-icon {
      width: 200px; /* Minimum 200px */
      height: 200px; /* Minimum 200px */
      object-fit: contain;
      margin: 0 auto 20px auto; /* Center the icon */
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }


    .page-game-66-com__feature-title {
      font-size: 1.5em;
      color: var(--page-game-66-com-secondary-color);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-game-66-com__feature-description {
      font-size: 1em;
      color: #cccccc;
      line-height: 1.5;
    }

    /* FAQ Section */
    .page-game-66-com__faq-section {
      background-color: #222222;
      padding: 80px 0;
    }

    .page-game-66-com__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-game-66-com__faq-item {
      background-color: var(--page-game-66-com-card-background);
      border: 1px solid var(--page-game-66-com-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-game-66-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      color: var(--page-game-66-com-text-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-game-66-com__faq-question:hover {
      background-color: #444444;
    }

    .page-game-66-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-game-66-com-text-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-game-66-com__faq-question .page-game-66-com__question-text {
      pointer-events: none; /* Ensure text doesn't block click */
    }

    .page-game-66-com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-game-66-com-secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

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

    .page-game-66-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #cccccc;
      font-size: 1em;
      line-height: 1.6;
    }

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

    .page-game-66-com__faq-answer p {
      margin: 0 0 10px 0;
    }

    /* Call to Action Bottom Section */
    .page-game-66-com__cta-bottom-section {
      background-color: var(--page-game-66-com-primary-color);
      padding: 60px 0;
      text-align: center;
      color: var(--page-game-66-com-text-color);
    }

    .page-game-66-com__cta-bottom-section .page-game-66-com__section-title {
      color: var(--page-game-66-com-text-color);
      margin-bottom: 20px;
    }

    .page-game-66-com__cta-bottom-section .page-game-66-com__text-content {
      color: var(--page-game-66-com-text-color);
      margin-bottom: 40px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-game-66-com__hero-title {
        font-size: 3em;
      }
      .page-game-66-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-game-66-com__hero-section {
        flex-direction: column;
        padding-bottom: 40px;
      }

      .page-game-66-com__hero-title {
        font-size: 2.2em;
      }

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

      .page-game-66-com__main-cta,
      .page-game-66-com__hero-cta {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-game-66-com__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-game-66-com__text-content {
        font-size: 1em;
      }

      .page-game-66-com__product-grid,
      .page-game-66-com__promo-grid,
      .page-game-66-com__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-game-66-com__feature-list {
          width: 100% !important;
          max-width: 100% !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
      }
      .page-game-66-com__feature-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;
      }
      .page-game-66-com__feature-description {
          word-break: break-word !important;
      }

      /* Image responsiveness for mobile */
      .page-game-66-com__hero-image,
      .page-game-66-com__product-image,
      .page-game-66-com__promo-image,
      .page-game-66-com__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-game-66-com__hero-image-wrapper,
      .page-game-66-com__product-card,
      .page-game-66-com__promo-card,
      .page-game-66-com__feature-item {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-game-66-com__floating-buttons {
        flex-direction: row;
        bottom: 15px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        left: auto;
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-game-66-com__register-button,
      .page-game-66-com__login-button {
        flex: 1;
        max-width: 150px;
        padding: 10px 15px;
        font-size: 0.95em;
      }

      .page-game-66-com__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-game-66-com__faq-question h3 {
        font-size: 1.1em;
      }

      .page-game-66-com__faq-answer {
        padding: 0 20px;
      }

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

    @media (max-width: 480px) {
      .page-game-66-com__hero-title {
        font-size: 1.8em;
      }
      .page-game-66-com__section-title {
        font-size: 1.6em;
      }
      .page-game-66-com__floating-buttons {
        width: calc(100% - 20px);
        right: 10px;
        transform: translateX(0);
        left: 10px;
        justify-content: space-around;
        gap: 5px;
      }
      .page-game-66-com__register-button,
      .page-game-66-com__login-button {
          max-width: 130px;
          font-size: 0.9em;
          padding: 8px 10px;
      }
      .page-game-66-com__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-game-66-com__faq-question h3 {
        font-size: 1em;
      }
      .page-game-66-com__faq-toggle {
          font-size: 1.5em;
      }
      .page-game-66-com__faq-item.active .page-game-66-com__faq-answer {
          padding: 10px 15px !important;
      }
    }
  