
    :root {
      --page-789be-primary-color: #ffcc00; /* Vàng sáng */
      --page-789be-secondary-color: #333333; /* Xám đậm */
      --page-789be-accent-color: #e60000; /* Đỏ rực */
      --page-789be-text-light: #ffffff;
      --page-789be-text-dark: #333333;
      --page-789be-background-dark: #1a1a1a;
      --page-789be-background-light: #f5f5f5;
      --page-789be-border-color: #555555;
      --page-789be-transition-speed: 0.3s;
    }

    .page-789be {
      font-family: 'Arial', sans-serif;
      color: var(--page-789be-text-light);
      background-color: var(--page-789be-background-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-7789be__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-789be__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-789be__section--dark {
      background-color: var(--page-789be-background-dark);
    }

    .page-789be__section--light {
      background-color: var(--page-789be-secondary-color);
    }

    .page-789be__title {
      color: var(--page-789be-primary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-789be__subtitle {
      color: var(--page-789be-text-light);
      font-size: 1.8em;
      margin-bottom: 30px;
    }

    .page-789be__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-789be-text-light);
    }

    /* Hero Section */
    .page-789be__hero-section {
      position: relative;
      width: 100%;
      padding-top: 10px; /* For fixed header */
      background-color: #000; /* Fallback */
      overflow: hidden;
    }

    .page-789be__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000; /* Ensure black background if image doesn't fill */
    }

    .page-789be__hero-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain; /* Maintain aspect ratio without cropping */
    }

    .page-789be__hero-content {
      position: absolute;
      bottom: 0; /* Changed from top to bottom as per requirement */
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      padding: 20px;
      width: 100%;
      box-sizing: border-box;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); /* Gradient for text readability */
    }

    .page-789be__hero-title {
      font-size: 2.8em;
      color: var(--page-789be-primary-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789be__hero-description {
      font-size: 1.2em;
      color: var(--page-789be-text-light);
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-789be__login-button-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789be-accent-color);
      color: var(--page-789be-text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-789be__login-button-fixed:hover {
      background-color: #cc0000;
      transform: translateY(-3px);
    }

    /* Game Categories Section */
    .page-789be__game-categories {
      padding-bottom: 60px;
    }

    .page-789be__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      padding: 20px 0;
    }

    .page-789be__game-card {
      background-color: var(--page-789be-secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-789be-text-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      min-height: 200px; /* Ensure minimum size for cards */
    }

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

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

    .page-789be__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Ensure images fit without cropping */
      border-radius: 5px;
    }

    .page-789be__game-card-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-789be-primary-color);
      margin-top: 10px;
      text-align: center;
    }

    /* Promotions Section */
    .page-789be__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-789be__promo-card {
      background-color: var(--page-789be-secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      min-height: 300px;
      display: flex;
      flex-direction: column;
    }

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

    .page-789be__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 180px; /* Fixed height for promo images */
    }

    .page-789be__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-789be__promo-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789be__promo-title {
      font-size: 1.3em;
      color: var(--page-789be-primary-color);
      margin-bottom: 10px;
    }

    .page-789be__promo-description {
      font-size: 0.95em;
      color: var(--page-789be-text-light);
      margin-bottom: 15px;
    }

    .page-789be__promo-button {
      display: inline-block;
      background-color: var(--page-789be-accent-color);
      color: var(--page-789be-text-light);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .page-789be__promo-button:hover {
      background-color: #cc0000;
    }

    /* Game Providers Section */
    .page-789be__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller minmax for logos */
      gap: 15px;
      padding: 20px 0;
    }

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

    .page-789be__provider-logo-wrapper:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .page-789be__provider-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(1.2); /* Slightly brighten logos for visibility */
    }

    /* Why Choose Us Section */
    .page-789be__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-789be__feature-card {
      background-color: var(--page-789be-secondary-color);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 220px; /* Ensure minimum size */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

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

    .page-789be__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      border-radius: 50%;
      background-color: var(--page-789be-accent-color);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-789be__feature-icon {
      width: 60px;
      height: 60px;
      object-fit: contain;
      filter: invert(0); /* Ensure no color inversion */
    }

    .page-789be__feature-title {
      font-size: 1.3em;
      color: var(--page-789be-primary-color);
      margin-bottom: 10px;
    }

    .page-789be__feature-description {
      font-size: 0.95em;
      color: var(--page-789be-text-light);
    }

    /* FAQ Section */
    .page-789be__faq-section {
      text-align: left;
    }

    .page-789be__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789be__faq-item {
      background-color: var(--page-789be-secondary-color);
      border: 1px solid var(--page-789be-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-789be__faq-question:hover {
      background-color: #555;
    }

    .page-789be__faq-question h3 {
      margin: 0;
      color: var(--page-789be-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-789be__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

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

    .page-789be__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-789be-secondary-color);
      color: var(--page-789be-text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action */
    .page-789be__cta-section {
      background-color: var(--page-789be-accent-color);
      padding: 50px 0;
    }

    .page-789be__cta-title {
      color: var(--page-789be-text-light);
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-789be__cta-button {
      display: inline-block;
      background-color: var(--page-789be-primary-color);
      color: var(--page-789be-text-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-789be__cta-button:hover {
      background-color: #ffdb4d;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789be__title {
        font-size: 2em;
      }

      .page-789be__subtitle {
        font-size: 1.5em;
      }

      .page-789be__hero-title {
        font-size: 2em;
      }

      .page-789be__hero-description {
        font-size: 1em;
      }

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

      .page-789be__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }

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

      .page-789be__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

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

      .page-789be__feature-card {
        padding: 20px;
      }

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

      .page-789be__faq-answer {
        padding: 0 15px;
      }

      .page-789be__faq-item.active .page-789be__faq-answer {
        padding: 15px !important;
      }

      .page-789be__cta-title {
        font-size: 1.8em;
      }

      .page-789be__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Mobile image responsiveness */
      .page-789be__hero-image,
      .page-789be__game-card-image,
      .page-789be__promo-image,
      .page-789be__provider-logo,
      .page-789be__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-789be__hero-image-wrapper,
      .page-789be__game-card-image-wrapper,
      .page-789be__promo-image-wrapper,
      .page-789be__provider-logo-wrapper,
      .page-789be__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  