
    :root {
      --page-909win__primary-color: #FFD700; /* Gold */
      --page-909win__secondary-color: #FF4500; /* Orange Red */
      --page-909win__dark-background: #1a1a1a;
      --page-909win__light-text: #ffffff;
      --page-909win__dark-text: #333333;
      --page-909win__accent-color: #00BFFF; /* Deep Sky Blue */
      --page-909win__border-color: #333333;
    }

    /* Base styles for the page-909win scope */
    .page-909win {
      font-family: 'Arial', sans-serif;
      color: var(--page-909win__light-text);
      background-color: var(--page-909win__dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined in shared.css */
    }

    .page-909win__section-title {
      font-size: 2.2em;
      color: var(--page-909win__primary-color);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-909win__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ccc;
    }

    .page-909win__keyword-highlight {
      color: var(--page-909win__primary-color);
      font-weight: bold;
    }

    .page-909win__keyword-strong {
      color: var(--page-909win__primary-color);
      font-weight: bold;
    }

    /* Hero Section */
    .page-909win__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,betting,background,vietnam]') no-repeat center center/cover;
      padding: 80px 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Adjusting for header offset, as per instructions */
    }

    .page-909win__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-909win__hero-title {
      font-size: 3em;
      color: var(--page-909win__primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 700;
    }

    .page-909win__brand-highlight {
      color: var(--page-909win__secondary-color);
    }

    .page-909win__hero-description {
      font-size: 1.3em;
      color: #eee;
      margin-bottom: 40px;
    }

    .page-909win__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-909win__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .page-909win__button--primary {
      background-color: var(--page-909win__primary-color);
      color: var(--page-909win__dark-background);
    }

    .page-909win__button--primary:hover {
      background-color: #FFC107; /* Slightly darker gold */
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .page-909win__button--secondary {
      background-color: transparent;
      color: var(--page-909win__primary-color);
      border: 2px solid var(--page-909win__primary-color);
    }

    .page-909win__button--secondary:hover {
      background-color: var(--page-909win__primary-color);
      color: var(--page-909win__dark-background);
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .page-909win__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
      border-radius: 25px;
    }

    /* Floating Buttons */
    .page-909win__floating-buttons-wrapper {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: center;
      /* pointer-events: none; Remove this, buttons should be clickable */
    }

    .page-909win__floating-buttons {
      display: flex;
      gap: 15px;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      /* pointer-events: auto; No longer needed if wrapper doesn't have pointer-events: none */
    }

    .page-909win__floating-button {
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .page-909win__floating-button--register {
      background-color: var(--page-909win__secondary-color);
      color: var(--page-909win__light-text);
    }

    .page-909win__floating-button--register:hover {
      background-color: #FF6347; /* Slightly lighter orange red */
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .page-909win__floating-button--login {
      background-color: var(--page-909win__primary-color);
      color: var(--page-909win__dark-background);
    }

    .page-909win__floating-button--login:hover {
      background-color: #FFC107;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    /* Products Section */
    .page-909win__products-section {
      padding: 60px 20px;
      background-color: #1a1a1a;
    }

    .page-909win__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-909win__product-item {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      padding-bottom: 20px; /* Add some padding at the bottom */
      display: flex;
      flex-direction: column;
    }

    .page-909win__product-item:hover {
      transform: translateY(-5px);
    }

    .page-909win__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 3px solid var(--page-909win__primary-color);
      object-fit: cover;
      width: 100%; /* Ensure image fills its container */
      height: 200px; /* Fixed height for consistency */
    }

    .page-909win__product-title {
      font-size: 1.5em;
      color: var(--page-909win__primary-color);
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-909win__product-text {
      font-size: 1em;
      color: #ccc;
      padding: 0 15px;
      flex-grow: 1; /* Allow text to grow and push title/image up */
    }

    /* Promotions Section */
    .page-909win__promotions-section {
      padding: 60px 20px;
      background-color: #222222;
    }

    .page-909win__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-909win__promotion-item {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-909win__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-909win__promotion-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 3px solid var(--page-909win__secondary-color);
      object-fit: cover;
      width: 100%;
      height: 220px; /* Fixed height for consistency */
    }

    .page-909win__promotion-title {
      font-size: 1.4em;
      color: var(--page-909win__primary-color);
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-909win__promotion-text {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-909win__promotion-action {
      margin-top: 20px;
      padding-bottom: 20px;
    }

    /* About Section */
    .page-909win__about-section {
      padding: 60px 20px;
      background-color: #1a1a1a;
    }

    .page-909win__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-909win__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-909win__about-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      min-height: 250px;
    }

    .page-909win__about-list {
      flex: 2;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-909win__about-list-item {
      background-color: #2a2a2a;
      border-left: 5px solid var(--page-909win__primary-color);
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-909win__about-list-item:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-909win__about-list-title {
      font-size: 1.3em;
      color: var(--page-909win__accent-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-909win__about-list-text {
      font-size: 1em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-909win__faq-section {
      padding: 60px 20px;
      background-color: #222222;
    }

    .page-909win__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-909win__faq-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-909win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      color: var(--page-909win__primary-color);
      border-bottom: 1px solid var(--page-909win__border-color);
      transition: background-color 0.3s ease;
    }

    .page-909win__faq-question:hover {
      background-color: #444444;
    }

    .page-909win__faq-question-title {
      font-size: 1.2em;
      margin: 0;
      pointer-events: none; /* Crucial for click handling */
      color: var(--page-909win__primary-color);
      font-weight: bold;
    }

    .page-909win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-909win__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-909win__faq-item.active .page-909win__faq-toggle {
      transform: rotate(135deg); /* Changes '+' to '-' */
    }

    .page-909win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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: #2a2a2a;
      color: #ccc;
    }

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

    .page-909win__faq-answer p {
      margin-top: 0;
      margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-909win__hero-section {
        padding: 60px 15px;
        min-height: 50vh;
      }

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

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

      .page-909win__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-909win__button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 25px;
      }

      .page-909win__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }

      .page-909win__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-909win__product-grid,
      .page-909win__promotion-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .page-909win__product-item,
      .page-909win__promotion-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-909win__product-image,
      .page-909win__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        min-height: 180px !important; /* Adjust height for mobile */
        object-fit: cover !important;
      }

      .page-909win__about-content {
        flex-direction: column;
        gap: 30px;
      }

      .page-909win__about-image-wrapper {
        width: 100% !important;
        min-width: unset;
      }

      .page-909win__about-list {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important; /* Ensure list container has no extra padding */
        box-sizing: border-box !important;
      }

      .page-909win__about-list-item {
        padding: 15px;
        width: 100% !important; /* Ensure list item takes full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-909win__about-list-title {
        font-size: 1.1em;
      }

      .page-909win__about-list-text {
        font-size: 0.9em;
      }

      .page-909win__faq-question {
        padding: 15px 20px;
      }

      .page-909win__faq-question-title {
        font-size: 1.1em;
      }

      .page-909win__faq-answer {
        padding: 0 20px;
      }

      .page-909win__faq-item.active .page-909win__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-909win__hero-title {
        font-size: 1.8em;
      }

      .page-909win__hero-description {
        font-size: 1em;
      }

      .page-909win__button {
        width: 90%;
        font-size: 1em;
      }

      .page-909win__section-title {
        font-size: 1.6em;
      }

      .page-909win__floating-buttons {
        padding: 8px 15px;
        gap: 10px;
      }

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