
    :root {
      --page-new88011-primary-color: #ff4500; /* Cam đỏ */
      --page-new88011-secondary-color: #ffd700; /* Vàng kim */
      --page-new88011-accent-color: #00bfff; /* Xanh da trời */
      --page-new88011-text-color: #333;
      --page-new88011-bg-color: #f8f8f8;
      --page-new88011-dark-bg: #2c3e50; /* Xám xanh đậm */
      --page-new88011-white: #ffffff;
      --page-new88011-dark-text: #1a1a1a;
      --page-new88011-light-text: #f0f0f0;
    }

    .page-new88011 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-new88011-text-color);
      background-color: var(--page-new88011-bg-color);
      padding-bottom: 80px; /* Space for fixed footer/floating buttons */
    }

    /* Fixed Navbar Spacing */
    .page-new88011__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
    }

    @media (max-width: 768px) {
      .page-new88011__hero-section {
        padding-top: 100px; /* Mobile spacing for fixed header */
      }
    }

    .page-new88011__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-new88011__section--dark {
      background-color: var(--page-new88011-dark-bg);
      color: var(--page-new88011-light-text);
    }

    .page-new88011__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-new88011-dark-text);
      position: relative;
      padding-bottom: 10px;
    }

    .page-new88011__section-title--light {
      color: var(--page-new88011-white);
    }

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

    /* Hero Section */
    .page-new88011__hero-section {
      position: relative;
      background-color: var(--page-new88011-dark-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      min-height: 400px;
    }

    .page-new88011__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .page-new88011__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-new88011__hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-new88011-white);
      max-width: 800px;
      padding: 0 15px;
    }

    .page-new88011__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-new88011-secondary-color);
      line-height: 1.2;
    }

    .page-new88011__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-new88011-light-text);
    }

    .page-new88011__button {
      display: inline-block;
      background-color: var(--page-new88011-primary-color);
      color: var(--page-new88011-white);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-new88011__button:hover {
      background-color: #e03c00;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-new88011__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-new88011-accent-color);
      color: var(--page-new88011-white);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: pulse 2s infinite;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-new88011__floating-login:hover {
      background-color: #0099e6;
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

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

    .page-new88011__game-card {
      background-color: var(--page-new88011-white);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-new88011__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .page-new88011__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;
        background-color: #e9ecef; /* Placeholder background */
    }

    .page-new88011__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-new88011__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-new88011__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-new88011-primary-color);
      text-decoration: none;
      display: block; /* Make the whole title clickable area */
      font-weight: bold;
    }

    .page-new88011__game-card-title:hover {
      text-decoration: underline;
    }

    .page-new88011__game-card-description {
      font-size: 0.95em;
      color: var(--page-new88011-text-color);
      margin-bottom: 15px;
    }

    /* Game Providers */
    .page-new88011__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-content: center;
    }

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

    .page-new88011__provider-logo-wrapper:hover {
      transform: scale(1.08);
    }

    .page-new88011__provider-logo {
      max-width: 100%;
      max-height: 60px; /* Adjust max-height to fit wrapper */
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Promotions */
    .page-new88011__promo-card {
      background-color: var(--page-new88011-white);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      margin-bottom: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-new88011__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }

    .page-new88011__promo-title {
      font-size: 2em;
      color: var(--page-new88011-primary-color);
      margin-bottom: 15px;
    }

    .page-new88011__promo-description {
      font-size: 1.1em;
      color: var(--page-new88011-text-color);
      margin-bottom: 20px;
    }

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

    .page-new88011__feature-item {
      background-color: var(--page-new88011-white);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-new88011__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-new88011__feature-icon-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
        background-color: var(--page-new88011-accent-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden; /* Ensure image fits */
        box-sizing: border-box;
    }

    .page-new88011__feature-icon {
        max-width: 80%;
        max-height: 80%;
        height: auto;
        display: block;
        object-fit: contain;
    }

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

    .page-new88011__feature-description {
      font-size: 0.95em;
      color: var(--page-new88011-text-color);
    }

    /* Testimonials */
    .page-new88011__testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-new88011__testimonial-card {
      background-color: var(--page-new88011-white);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-new88011__testimonial-quote {
      font-style: italic;
      color: var(--page-new88011-text-color);
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .page-new88011__testimonial-author {
      font-weight: bold;
      color: var(--page-new88011-primary-color);
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-new88011__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-new88011__faq-item {
      background-color: var(--page-new88011-white);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-new88011__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-new88011-primary-color);
      color: var(--page-new88011-white);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px; /* Apply border-radius to question for initial state */
      transition: background-color 0.3s ease;
    }

    .page-new88011__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Adjust font size for H3 within question */
      color: inherit; /* Inherit color from parent */
      pointer-events: none; /* Prevent H3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-new88011__faq-question:hover {
      background-color: #e03c00;
    }

    .page-new88011__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-new88011__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Keep padding for consistency */
      background-color: var(--page-new88011-white);
      color: var(--page-new88011-dark-text);
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
    }

    .page-new88011__faq-item.active .page-new88011__faq-question {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

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

    .page-new88011__faq-item.active .page-new88011__faq-toggle {
      content: '−'; /* Change to minus sign when active */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-new88011__section {
        padding: 30px 0;
      }

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

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

      .page-new88011__hero-subtitle {
        font-size: 1.1em;
      }

      .page-new88011__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-new88011__floating-login {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

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

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

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

      .page-new88011__feature-item {
        padding: 20px;
      }

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

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

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

      .page-new88011__faq-answer {
        padding: 0 15px;
      }
      .page-new88011__faq-item.active .page-new88011__faq-answer {
        padding: 15px !important;
      }
    }

    /* Ensure all images are responsive and their containers are correct */
    .page-new88011 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    .page-new88011__hero-image,
    .page-new88011__game-card-image,
    .page-new88011__provider-logo,
    .page-new88011__feature-icon {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-new88011__hero-image-wrapper,
    .page-new88011__game-card-image-wrapper,
    .page-new88011__provider-logo-wrapper,
    .page-new88011__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
  