
    :root {
      --page-bay789club-primary-bg: #1a1a2e;
      --page-bay789club-secondary-bg: #21213e;
      --page-bay789club-accent-color: #ffcc00; /* Gold/Yellow */
      --page-bay789club-text-color: #e0e0e0;
      --page-bay789club-light-text: #ffffff;
      --page-bay789club-border-color: #3a3a5a;
      --page-bay789club-button-hover: #ffd700;
    }

    .page-bay789club {
      font-family: 'Arial', sans-serif;
      color: var(--page-bay789club-text-color);
      background-color: var(--page-bay789club-primary-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-bay789club__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-bay789club__section--dark {
      background-color: var(--page-bay789club-secondary-bg);
    }

    .page-bay789club__title {
      color: var(--page-bay789club-accent-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-bay789club__subtitle {
      color: var(--page-bay789club-light-text);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-bay789club__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      line-height: 1.8;
    }

    /* Hero Section */
    .page-bay789club__hero-section {
      position: relative;
      width: 100%;
      height: auto;
      background-color: var(--page-bay789club-primary-bg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-bay789club__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-bay789club__hero-content {
      position: relative;
      z-index: 10;
      padding: 0 20px 40px;
      text-align: center;
      box-sizing: border-box;
      max-width: 800px;
    }

    .page-bay789club__hero-title {
      font-size: 3em;
      color: var(--page-bay789club-accent-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-bay789club__hero-description {
      font-size: 1.3em;
      color: var(--page-bay789club-light-text);
      margin-bottom: 30px;
      max-width: 700px;
      line-height: 1.5;
    }

    .page-bay789club__button {
      display: inline-block;
      background-color: var(--page-bay789club-accent-color);
      color: var(--page-bay789club-primary-bg);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

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

    /* Floating Login Button */
    .page-bay789club__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #e74c3c; /* Striking color for promotion */
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-bay789club__pulse 2s infinite;
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-bay789club__floating-button:hover {
      background-color: #c0392b;
      transform: scale(1.05);
      animation: none;
    }

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

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

    .page-bay789club__game-card {
      background-color: var(--page-bay789club-primary-bg);
      border: 1px solid var(--page-bay789club-border-color);
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      box-sizing: border-box;
      padding-bottom: 20px;
    }

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

    .page-bay789club__game-image {
      width: 100%;
      height: 200px; /* Minimum height for content images */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-bay789club__game-title {
      font-size: 1.4em;
      color: var(--page-bay789club-accent-color);
      margin: 10px 15px;
      min-height: 3em; /* Ensure consistent height for titles */
    }

    .page-bay789club__game-description {
      font-size: 0.95em;
      color: var(--page-bay789club-text-color);
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

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

    .page-bay789club__promo-card {
      background-color: var(--page-bay789club-primary-bg);
      border: 1px solid var(--page-bay789club-border-color);
      border-radius: 12px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
    }

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

    .page-bay789club__promo-icon {
      width: 200px; /* Enforce min size */
      height: 200px; /* Enforce min size */
      object-fit: cover;
      margin-bottom: 15px;
      border-radius: 8px;
    }

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

    .page-bay789club__promo-description {
      font-size: 1em;
      color: var(--page-bay789club-text-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* How-To Section */
    .page-bay789club__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bay789club__step-card {
      background-color: var(--page-bay789club-primary-bg);
      border: 1px solid var(--page-bay789club-border-color);
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-bay789club__step-number {
      font-size: 2.5em;
      color: var(--page-bay789club-accent-color);
      font-weight: bold;
      margin-bottom: 15px;
      background-color: var(--page-bay789club-secondary-bg);
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      border: 2px solid var(--page-bay789club-accent-color);
    }

    .page-bay789club__step-title {
      font-size: 1.3em;
      color: var(--page-bay789club-light-text);
      margin-bottom: 10px;
    }

    .page-bay789club__step-description {
      font-size: 0.95em;
      color: var(--page-bay789club-text-color);
      flex-grow: 1;
    }

    /* FAQ Section */
    .page-bay789club__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-bay789club__faq-item {
      background-color: var(--page-bay789club-secondary-bg);
      border: 1px solid var(--page-bay789club-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

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

    .page-bay789club__faq-question:hover {
      background-color: #2b2b4d;
    }

    .page-bay789club__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bay789club__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      color: var(--page-bay789club-accent-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-bay789club__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-bay789club-text-color);
      font-size: 1em;
      text-align: left;
    }

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

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

      .page-bay789club__hero-section {
        padding-top: 10px; /* Mobile fixed header padding */
      }

      .page-bay789club__hero-title {
        font-size: 2.2em;
      }

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

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

      .page-bay789club__subtitle {
        font-size: 1.5em;
      }

      .page-bay789club__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-bay789club__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-bay789club__game-grid,
      .page-bay789club__promo-grid,
      .page-bay789club__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-bay789club__game-card,
      .page-bay789club__promo-card,
      .page-bay789club__step-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-bay789club__game-image,
      .page-bay789club__promo-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-bay789club__text,
      .page-bay789club__game-description,
      .page-bay789club__promo-description,
      .page-bay789club__step-description,
      .page-bay789club__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-bay789club__faq-answer {
        padding: 15px 15px !important; /* Adjusted for mobile */
      }
    }
  