
    /* Reset & Base Styles */
    :root {
      --page-bj66casino-primary-color: #e44d26; /* A vibrant orange/red, common in gaming sites */
      --page-bj66casino-secondary-color: #333;
      --page-bj66casino-accent-color: #ffcc00; /* Gold/yellow for highlights */
      --page-bj66casino-text-color: #f0f0f0;
      --page-bj66casino-bg-color: #1a1a1a; /* Dark background */
      --page-bj66casino-card-bg: #2a2a2a;
      --page-bj66casino-border-color: #444;
      --page-bj66casino-button-hover-color: #ff6f42;
      --page-bj66casino-shadow-light: rgba(255, 255, 255, 0.1);
      --page-bj66casino-shadow-dark: rgba(0, 0, 0, 0.5);
    }

    .page-bj66casino {
      font-family: 'Arial', sans-serif;
      color: var(--page-bj66casino-text-color);
      background-color: var(--page-bj66casino-bg-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    @media (max-width: 768px) {
      .page-bj66casino__container {
        padding: 10px;
      }
    }

    /* Hero Section */
    .page-bj66casino__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height as needed */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-size: cover;
      background-position: center;
      color: white;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      overflow: hidden; /* Ensure banner image does not overflow */
    }

    .page-bj66casino__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-bj66casino__hero-content {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.6);
      padding: 20px 40px;
      border-radius: 10px;
      max-width: 90%;
    }

    .page-bj66casino__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-bj66casino-accent-color);
      text-shadow: 2px 2px 4px var(--page-bj66casino-shadow-dark);
      line-height: 1.2;
    }

    .page-bj66casino__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-bj66casino-text-color);
    }

    .page-bj66casino__cta-button {
      display: inline-block;
      background-color: var(--page-bj66casino-primary-color);
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 10px var(--page-bj66casino-shadow-dark);
    }

    .page-bj66casino__cta-button:hover {
      background-color: var(--page-bj66casino-button-hover-color);
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-bj66casino__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-bj66casino-accent-color);
      color: var(--page-bj66casino-secondary-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-bj66casino__pulse 2s infinite;
      border: none;
    }

    .page-bj66casino__floating-promo-button:hover {
      background-color: #ffd700;
      transform: scale(1.05);
    }

    @keyframes page-bj66casino__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Sections */
    .page-bj66casino__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-bj66casino__section--dark {
      background-color: var(--page-bj66casino-card-bg);
    }

    .page-bj66casino__section-title {
      font-size: 2.5em;
      color: var(--page-bj66casino-primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-bj66casino__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: justify;
    }

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

    .page-bj66casino__game-card {
      background-color: var(--page-bj66casino-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-bj66casino-shadow-dark);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-bj66casino-border-color);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-bj66casino__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-bj66casino-shadow-dark);
    }

    .page-bj66casino__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-bj66casino__game-card-title {
      font-size: 1.5em;
      color: var(--page-bj66casino-accent-color);
      margin-bottom: 10px;
    }

    .page-bj66casino__game-card-description {
      font-size: 0.95em;
      color: var(--page-bj66casino-text-color);
    }

    /* USP Section */
    .page-bj66casino__usp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-bj66casino__usp-item {
      background-color: var(--page-bj66casino-card-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px var(--page-bj66casino-shadow-dark);
      text-align: center;
      border: 1px solid var(--page-bj66casino-border-color);
      box-sizing: border-box;
    }

    .page-bj66casino__usp-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px auto; /* Center the icon */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-bj66casino__usp-icon-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      max-width: 100%;
    }

    .page-bj66casino__usp-title {
      font-size: 1.4em;
      color: var(--page-bj66casino-primary-color);
      margin-bottom: 15px;
    }

    .page-bj66casino__usp-description {
      font-size: 1em;
      color: var(--page-bj66casino-text-color);
    }

    /* How to Play Section */
    .page-bj66casino__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-bj66casino__step-item {
      background-color: var(--page-bj66casino-card-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px var(--page-bj66casino-shadow-dark);
      width: calc(33% - 20px); /* 3 items per row on desktop */
      min-width: 280px;
      text-align: center;
      border: 1px solid var(--page-bj66casino-border-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-bj66casino__step-number {
      font-size: 2.5em;
      color: var(--page-bj66casino-accent-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-bj66casino__step-title {
      font-size: 1.3em;
      color: var(--page-bj66casino-primary-color);
      margin-bottom: 10px;
    }

    .page-bj66casino__step-description {
      font-size: 1em;
      color: var(--page-bj66casino-text-color);
    }

    /* FAQ Section */
    .page-bj66casino__faq-section {
      background-color: var(--page-bj66casino-bg-color);
      padding: 60px 0;
    }

    .page-bj66casino__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-bj66casino-border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--page-bj66casino-card-bg);
      box-shadow: 0 2px 5px var(--page-bj66casino-shadow-dark);
      box-sizing: border-box;
    }

    .page-bj66casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-bj66casino-secondary-color);
      color: var(--page-bj66casino-text-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-bj66casino__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-bj66casino-accent-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-bj66casino__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: var(--page-bj66casino-primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-bj66casino__faq-item.active .page-bj66casino__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-bj66casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-bj66casino-card-bg);
      color: var(--page-bj66casino-text-color);
      text-align: justify;
      box-sizing: border-box;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-bj66casino__hero-title {
        font-size: 3em;
      }
      .page-bj66casino__hero-subtitle {
        font-size: 1.3em;
      }
      .page-bj66casino__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-bj66casino__usp-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
      .page-bj66casino__step-item {
        width: calc(50% - 15px); /* 2 items per row */
      }
    }

    @media (max-width: 768px) {
      .page-bj66casino__hero-section {
        height: 50vh;
        padding-top: 10px; /* For fixed header */
      }
      .page-bj66casino__hero-title {
        font-size: 2.2em;
      }
      .page-bj66casino__hero-subtitle {
        font-size: 1em;
      }
      .page-bj66casino__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-bj66casino__section-title {
        font-size: 2em;
      }
      .page-bj66casino__text-content {
        font-size: 1em;
        padding: 0 10px;
      }
      .page-bj66casino__game-grid,
      .page-bj66casino__usp-grid {
        grid-template-columns: 1fr; /* Single column */
      }
      .page-bj66casino__game-card,
      .page-bj66casino__usp-item {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
      }
      .page-bj66casino__step-item {
        width: 100% !important; /* Full width for steps */
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }
      .page-bj66casino__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-bj66casino__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-bj66casino__faq-answer {
        padding: 15px 15px;
      }
      .page-bj66casino__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-bj66casino__game-card-image-wrapper {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .page-bj66casino__hero-title {
        font-size: 1.8em;
      }
      .page-bj66casino__hero-subtitle {
        font-size: 0.9em;
      }
      .page-bj66casino__hero-content {
        padding: 15px 20px;
      }
      .page-bj66casino__section-title {
        font-size: 1.8em;
      }
      .page-bj66casino__floating-promo-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    /* Image responsive and box-sizing for all images and containers */
    .page-bj66casino img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-bj66casino__game-card-image,
    .page-bj66casino__usp-icon-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-bj66casino__game-card-image-wrapper,
    .page-bj66casino__usp-icon {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-bj66casino img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-bj66casino__game-card-image-wrapper,
        .page-bj66casino__usp-icon {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  