
    /* Base styles for the page */
    .page-08-win {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 100px; /* Space for floating buttons */
    }

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

    .page-08-win__section--dark {
      background-color: #2a2a2a;
    }

    .page-08-win__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold/Yellow for headings */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-08-win__section-subtitle {
      font-size: 1.2em;
      color: #bbb;
      margin-bottom: 30px;
    }

    .page-08-win__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-08-win__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:casino,gaming,vietnam]') no-repeat center center/cover;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 60vh;
      color: #ffffff;
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
      box-sizing: border-box;
    }

    .page-08-win__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-08-win__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-08-win__cta-button {
      background-color: #007bff; /* Blue for CTA */
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

    .page-08-win__cta-button:hover {
      background-color: #0056b3;
    }

    /* Floating Buttons */
    .page-08-win__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-08-win__floating-button {
      flex: 1;
      max-width: 180px;
      background-color: #ffcc00; /* Gold for buttons */
      color: #1a1a1a;
      padding: 12px 20px;
      border: none;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-08-win__floating-button--register {
      background-color: #007bff; /* Blue for register */
      color: white;
    }
    
    .page-08-win__floating-button--register:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-08-win__floating-button--login {
      background-color: #ffcc00; /* Gold for login */
      color: #1a1a1a;
    }

    .page-08-win__floating-button--login:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

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

    .page-08-win__product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-08-win__product-card:hover {
      transform: translateY(-5px);
    }

    .page-08-win__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-08-win__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-08-win__product-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-08-win__product-description {
      font-size: 0.95em;
      color: #e0e0e0;
      flex-grow: 1;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-08-win__promotions-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      max-width: 800px;
      text-align: left;
    }

    .page-08-win__promotions-item {
      background-color: #2a2a2a;
      border-left: 5px solid #ffcc00;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      width: 100%; /* Ensure mobile responsiveness */
      word-wrap: break-word !important; /* Text wrapping */
      overflow-wrap: break-word !important; /* Text wrapping */
    }

    .page-08-win__promotions-item-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-08-win__promotions-item-description {
      color: #e0e0e0;
      font-size: 1em;
    }

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

    .page-08-win__news-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-08-win__news-card:hover {
      transform: translateY(-5px);
    }

    .page-08-win__news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-08-win__news-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-08-win__news-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-08-win__news-date {
      font-size: 0.85em;
      color: #bbb;
      margin-bottom: 10px;
    }

    .page-08-win__news-summary {
      font-size: 0.95em;
      color: #e0e0e0;
      flex-grow: 1;
    }

    /* Why Choose Us Section */
    .page-08-win__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-08-win__feature-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word !important; /* Text wrapping */
      overflow-wrap: break-word !important; /* Text wrapping */
    }

    .page-08-win__feature-item:hover {
      background-color: #3a3a3a;
    }

    .page-08-win__feature-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-08-win__feature-description {
      font-size: 1em;
      color: #e0e0e0;
    }

    /* FAQ Section */
    .page-08-win__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

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

    .page-08-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #3a3a3a;
      color: #ffcc00;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-08-win__faq-question:hover {
      background-color: #4a4a4a;
    }

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

    .page-08-win__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-08-win__faq-item.active .page-08-win__faq-toggle {
      transform: rotate(45deg); /* Plus to X for active state */
    }

    .page-08-win__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;
      color: #e0e0e0;
      font-size: 1em;
      background-color: #2a2a2a;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-08-win__hero-section {
        padding: 80px 15px;
      }

      .page-08-win__hero-title {
        font-size: 2.5em;
      }

      .page-08-win__hero-description {
        font-size: 1.2em;
      }

      .page-08-win__section-title {
        font-size: 2em;
      }

      .page-08-win__section {
        padding: 30px 15px;
      }

      .page-08-win__floating-buttons {
        bottom: 15px;
        gap: 10px;
        padding: 0 10px;
      }

      .page-08-win__floating-button {
        max-width: 150px;
        font-size: 1em;
        padding: 10px 15px;
      }

      /* List item mobile responsiveness */
      .page-08-win__promotions-list,
      .page-08-win__features-grid,
      .page-08-win__product-grid,
      .page-08-win__news-grid {
        display: block; /* Stack items */
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-08-win__promotions-item,
      .page-08-win__feature-item,
      .page-08-win__product-card,
      .page-08-win__news-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 20px; /* Add some space between stacked items */
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important; /* Ensure text wrapping */
        overflow-wrap: break-word !important; /* Ensure text wrapping */
        word-break: break-word !important; /* Break long words */
      }

      .page-08-win__product-image,
      .page-08-win__news-image {
        height: 150px; /* Adjust image height for mobile */
      }
      
      .page-08-win__product-title,
      .page-08-win__news-title,
      .page-08-win__feature-title {
        font-size: 1.3em;
      }

      .page-08-win__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-08-win__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-08-win__hero-title {
        font-size: 2em;
      }
      .page-08-win__hero-description {
        font-size: 1em;
      }
      .page-08-win__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-08-win__floating-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      .page-08-win__floating-button {
        width: 80%;
        max-width: 250px;
      }
    }
  