
    :root {
      --page-win789betcom-primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-win789betcom-secondary-color: #333;
      --page-win789betcom-accent-color: #f0ad4e; /* A golden yellow for highlights */
      --page-win789betcom-text-color: #333;
      --page-win789betcom-light-text-color: #fff;
      --page-win789betcom-background-color: #f9f9f9;
      --page-win789betcom-card-background: #fff;
      --page-win789betcom-border-color: #eee;
      --page-win789betcom-success-color: #5cb85c;
      --page-win789betcom-error-color: #d9534f;
    }

    /* Base styles for the page content wrapper */
    .page-win789betcom {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-win789betcom-text-color);
      background-color: var(--page-win789betcom-background-color);
      padding-bottom: 80px; /* Space for fixed footer/floating button */
    }

    /* Fixed Header Spacing */
    .page-win789betcom__hero-section {
      padding-top: 10px; /* Ensures content is not hidden by fixed header */
      position: relative;
      overflow: hidden;
      background-color: #222; /* Dark background for banner text */
      color: var(--page-win789betcom-light-text-color);
      text-align: center;
      padding-bottom: 40px;
    }

    .page-win789betcom__hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      opacity: 0.7; /* Slightly dim the image for text readability */
    }

    .page-win789betcom__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      z-index: 1;
      padding: 20px;
      box-sizing: border-box;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
      border-radius: 8px;
    }

    .page-win789betcom__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-win789betcom-light-text-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-win789betcom__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 25px;
      color: var(--page-win789betcom-light-text-color);
    }

    .page-win789betcom__cta-button {
      display: inline-block;
      background-color: var(--page-win789betcom-primary-color);
      color: var(--page-win789betcom-light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-win789betcom__cta-button:hover {
      background-color: #d4421f;
      transform: translateY(-2px);
    }

    /* Floating Promotion Button */
    .page-win789betcom__floating-promo {
      position: fixed;
      bottom: 70px; /* Above the footer */
      right: 15px;
      z-index: 1000;
      display: none; /* Hidden by default, shown on mobile */
    }

    .page-win789betcom__floating-promo-button {
      background-color: var(--page-win789betcom-accent-color);
      color: var(--page-win789betcom-text-color);
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      font-weight: bold;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

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

    .page-win789betcom__floating-promo-icon {
      font-size: 1.2em;
    }

    /* General Section Styling */
    .page-win789betcom__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: var(--page-win789betcom-card-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

    .page-win789betcom__section:first-of-type {
      margin-top: 0; /* Adjust for first section after hero if any */
    }

    .page-win789betcom__section-title {
      font-size: 2em;
      color: var(--page-win789betcom-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-win789betcom__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--page-win789betcom-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-win789betcom__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-win789betcom__highlight {
      color: var(--page-win789betcom-primary-color);
      font-weight: bold;
    }

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

    .page-win789betcom__game-card {
      background-color: var(--page-win789betcom-background-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-win789betcom__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .page-win789betcom__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-win789betcom__game-card:hover .page-win789betcom__game-image {
      transform: scale(1.05);
    }

    .page-win789betcom__game-info {
      padding: 20px;
    }

    .page-win789betcom__game-title {
      font-size: 1.4em;
      color: var(--page-win789betcom-secondary-color);
      margin-bottom: 10px;
    }

    .page-win789betcom__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-win789betcom__game-button {
      display: inline-block;
      background-color: var(--page-win789betcom-accent-color);
      color: var(--page-win789betcom-text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-win789betcom__game-button:hover {
      background-color: #e09f2a;
    }

    /* Promotions Section */
    .page-win789betcom__promo-list {
      list-style: none;
      padding: 0;
      margin: 30px auto 0;
      max-width: 800px;
    }

    .page-win789betcom__promo-item {
      background-color: var(--page-win789betcom-background-color);
      border: 1px solid var(--page-win789betcom-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-win789betcom__promo-icon {
      font-size: 2em;
      color: var(--page-win789betcom-primary-color);
      flex-shrink: 0;
      line-height: 1;
    }

    .page-win789betcom__promo-content {
      flex-grow: 1;
    }

    .page-win789betcom__promo-title {
      font-size: 1.3em;
      color: var(--page-win789betcom-primary-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-win789betcom__promo-description {
      font-size: 1em;
      color: #555;
    }

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

    .page-win789betcom__step-card {
      background-color: var(--page-win789betcom-background-color);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-win789betcom__step-number {
      font-size: 3em;
      color: rgba(var(--page-win789betcom-primary-color), 0.2);
      position: absolute;
      top: 10px;
      left: 15px;
      font-weight: bold;
      z-index: 0;
    }

    .page-win789betcom__step-title {
      font-size: 1.5em;
      color: var(--page-win789betcom-secondary-color);
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .page-win789betcom__step-description {
      font-size: 1em;
      color: #666;
      position: relative;
      z-index: 1;
    }

    /* FAQ Section */
    .page-win789betcom__faq-section {
      margin-top: 20px;
      background-color: var(--page-win789betcom-card-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 40px 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-win789betcom__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-win789betcom__faq-item {
      border: 1px solid var(--page-win789betcom-border-color);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

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

    .page-win789betcom__faq-question:hover {
      background-color: #e8e8e8;
    }

    .page-win789betcom__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: var(--page-win789betcom-secondary-color);
    }

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

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

    .page-win789betcom__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-win789betcom-card-background);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 0.95em;
    }

    .page-win789betcom__faq-item.active .page-win789betcom__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 20px !important;
      opacity: 1;
    }
    
    .page-win789betcom__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .page-win789betcom__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-win789betcom__hero-title {
        font-size: 2em;
      }

      .page-win789betcom__hero-subtitle {
        font-size: 1em;
      }

      .page-win789betcom__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-win789betcom__section {
        padding: 30px 15px;
        margin-top: 15px;
      }

      .page-win789betcom__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-win789betcom__text-content {
        font-size: 1em;
      }

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

      .page-win789betcom__promo-item,
      .page-win789betcom__step-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-win789betcom__promo-list,
      .page-win789betcom__steps-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-win789betcom__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-win789betcom__faq-question h3 {
        font-size: 1em;
      }

      .page-win789betcom__faq-answer {
        padding: 15px 15px !important;
        font-size: 0.9em;
      }

      .page-win789betcom__floating-promo {
        display: block; /* Show floating button on mobile */
      }
      
      /* Ensure images are responsive */
      .page-win789betcom__hero-image,
      .page-win789betcom__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-win789betcom__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-win789betcom__hero-title {
        font-size: 1.8em;
      }
      .page-win789betcom__hero-subtitle {
        font-size: 0.9em;
      }
      .page-win789betcom__cta-button {
        padding: 10px 20px;
        font-size: 0.85em;
      }
      .page-win789betcom__section-title {
        font-size: 1.6em;
      }
      .page-win789betcom__promo-icon {
        font-size: 1.8em;
      }
      .page-win789betcom__promo-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-win789betcom__promo-content {
        text-align: center;
      }
      .page-win789betcom__step-number {
        font-size: 2.5em;
      }
      .page-win789betcom__step-title {
        font-size: 1.3em;
      }
    }
  