
    /* CSS Styles for page-yeu88 */
    :root {
      --page-yeu88__primary-color: #e44d26; /* Vibrant Red/Orange */
      --page-yeu88__secondary-color: #d46f00; /* Darker Orange/Gold for better contrast */
      --page-yeu88__background-dark: #1a1a1a;
      --page-yeu88__background-light: #f5f5f5;
      --page-yeu88__text-color-dark: #333;
      --page-yeu88__text-color-light: #fff;
      --page-yeu88__accent-color: #007bff;
      --page-yeu88__border-radius: 8px;
      --page-yeu88__padding-section: 60px 0;
      --page-yeu88__padding-container: 0 15px;
    }

    .page-yeu88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-yeu88__text-color-dark);
      background-color: var(--page-yeu88__background-light);
      overflow-x: hidden; /* Prevent horizontal scroll from fixed button */
    }

    /* Fixed Header Spacing */
    .page-yeu88__hero-section {
      padding-top: 120px; /* Adjust for fixed header */
      position: relative;
    }
    @media (max-width: 768px) {
      .page-yeu88__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }
    }

    .page-yeu88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--page-yeu88__padding-container);
      box-sizing: border-box;
    }

    .page-yeu88__section {
      padding: var(--page-yeu88__padding-section);
      text-align: center;
    }

    .page-yeu88__section--dark {
      background-color: var(--page-yeu88__background-dark);
      color: var(--page-yeu88__text-color-light);
    }

    .page-yeu88__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-yeu88__primary-color);
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-yeu88__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-yeu88__hero-section {
      background-color: var(--page-yeu88__background-dark);
      color: var(--page-yeu88__text-color-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      text-align: center;
      padding-bottom: 40px;
    }

    .page-yeu88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-yeu88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .page-yeu88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-yeu88__secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-yeu88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ccc;
    }

    .page-yeu88__cta-button {
      display: inline-block;
      background-color: var(--page-yeu88__primary-color);
      color: var(--page-yeu88__text-color-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-yeu88__cta-button:hover {
      background-color: #ff6f42; /* Slightly lighter red/orange */
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-yeu88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-yeu88__primary-color);
      color: var(--page-yeu88__text-color-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-yeu88__pulse 2s infinite;
    }

    .page-yeu88__floating-button:hover {
      background-color: #ff6f42; /* Slightly lighter red/orange */
      transform: scale(1.05);
    }

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

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

    .page-yeu88__game-card {
      background-color: var(--page-yeu88__text-color-light);
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-yeu88__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .page-yeu88__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-yeu88__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area without distortion */
      min-height: 200px; /* Minimum height for images */
      min-width: 200px; /* Minimum width for images */
    }

    .page-yeu88__game-card-title {
      font-size: 1.4em;
      margin: 20px 0 10px;
      color: var(--page-yeu88__text-color-dark);
    }

    .page-yeu88__game-card-link {
      color: var(--page-yeu88__primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-yeu88__game-card-link:hover {
      color: var(--page-yeu88__secondary-color);
    }

    /* Why Choose Yeu88 */
    .page-yeu88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-yeu88__feature-item {
      background-color: var(--page-yeu88__text-color-light);
      padding: 30px;
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

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

    .page-yeu88__feature-item h3 {
      color: var(--page-yeu88__primary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-yeu88__feature-item p {
      color: var(--page-yeu88__text-color-dark);
    }

    /* Game Providers */
    .page-yeu88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-yeu88__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Fixed height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-yeu88__text-color-light);
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .page-yeu88__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-yeu88__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      display: block;
      object-fit: contain;
      min-width: 100px; /* Ensure logos are not too small */
      min-height: 50px;
    }

    /* Guides Section */
    .page-yeu88__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-yeu88__guide-step {
      background-color: var(--page-yeu88__text-color-light);
      padding: 25px;
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      flex: 1 1 300px;
      max-width: 350px;
      text-align: left;
    }

    .page-yeu88__guide-step h3 {
      color: var(--page-yeu88__secondary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-yeu88__guide-step p {
      color: var(--page-yeu88__text-color-dark);
    }

    /* Promotions Section */
    .page-yeu88__promotions-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      text-align: left;
    }

    .page-yeu88__promotion-item {
      background-color: var(--page-yeu88__text-color-light);
      margin-bottom: 20px;
      padding: 25px;
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-yeu88__promotion-item-image-wrapper {
      flex-shrink: 0;
      width: 150px;
      height: 100px;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: var(--page-yeu88__border-radius);
    }

    .page-yeu88__promotion-item-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-width: 150px;
      min-height: 100px;
    }

    .page-yeu88__promotion-content h3 {
      color: var(--page-yeu88__primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-yeu88__promotion-content p {
      color: var(--page-yeu88__text-color-dark);
      margin-bottom: 10px;
    }

    .page-yeu88__promotion-link {
      color: var(--page-yeu88__accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .page-yeu88__promotion-link:hover {
      text-decoration: underline;
    }

    /* FAQ Section */
    .page-yeu88__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-yeu88__faq-item {
      background-color: var(--page-yeu88__text-color-light);
      border: 1px solid #ddd;
      border-radius: var(--page-yeu88__border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

    .page-yeu88__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yeu88__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yeu88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-yeu88__secondary-color); /* Updated for contrast */
    }

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

    .page-yeu88__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-yeu88__text-color-dark);
    }

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

    /* Contact Section */
    .page-yeu88__contact-info {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-yeu88__contact-card {
      background-color: var(--page-yeu88__text-color-light);
      padding: 30px;
      border-radius: var(--page-yeu88__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      flex: 1 1 280px;
      max-width: 350px;
      text-align: center;
    }

    .page-yeu88__contact-card h3 {
      color: var(--page-yeu88__primary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-yeu88__contact-card p {
      margin-bottom: 10px;
      color: var(--page-yeu88__text-color-dark);
    }

    .page-yeu88__contact-card a {
      color: var(--page-yeu88__accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .page-yeu88__contact-card a:hover {
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-yeu88__hero-title {
        font-size: 3em;
      }
      .page-yeu88__hero-subtitle {
        font-size: 1.3em;
      }
      .page-yeu88__section-title {
        font-size: 2em;
      }
      .page-yeu88__game-grid,
      .page-yeu88__features-grid,
      .page-yeu88__providers-grid,
      .page-yeu88__guide-steps,
      .page-yeu88__contact-info {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-yeu88__hero-title {
        font-size: 2.5em;
      }
      .page-yeu88__hero-subtitle {
        font-size: 1.1em;
      }
      .page-yeu88__section {
        padding: 40px 0;
      }
      .page-yeu88__section-title {
        font-size: 1.8em;
      }
      .page-yeu88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-yeu88__floating-button {
        padding: 12px 20px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
      }
      .page-yeu88__game-grid,
      .page-yeu88__features-grid,
      .page-yeu88__guide-steps,
      .page-yeu88__contact-info {
        grid-template-columns: 1fr; /* Stack on mobile */
      }
      .page-yeu88__promotion-item {
        flex-direction: column;
        text-align: center;
      }
      .page-yeu88__promotion-item-image-wrapper {
        width: 100%;
        height: auto;
        min-height: 150px;
      }
      .page-yeu88__promotion-item-image {
        min-width: unset;
      }
      /* Responsive images for all images */
      .page-yeu88 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-yeu88__hero-image-wrapper,
      .page-yeu88__game-card-image-wrapper,
      .page-yeu88__provider-logo-wrapper,
      .page-yeu88__promotion-item-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-yeu88__hero-title {
        font-size: 2em;
      }
      .page-yeu88__hero-subtitle {
        font-size: 1em;
      }
      .page-yeu88__section-title {
        font-size: 1.5em;
      }
      .page-yeu88__game-card,
      .page-yeu88__feature-item,
      .page-yeu88__guide-step,
      .page-yeu88__contact-card {
        padding: 20px;
      }
      .page-yeu88__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-yeu88__faq-answer {
        padding: 15px !important;
      }
    }
  