
    :root {
      --page-casinothabet88-primary-color: #e44d26; /* Cam đỏ */
      --page-casinothabet88-secondary-color: #2c3e50; /* Xám xanh đậm */
      --page-casinothabet88-accent-color: #f39c12; /* Vàng cam */
      --page-casinothabet88-text-color: #333;
      --page-casinothabet88-light-text-color: #f8f8f8;
      --page-casinothabet88-background-light: #f4f7f6;
      --page-casinothabet88-background-dark: #222;
      --page-casinothabet88-border-color: #ddd;
    }

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

    .page-casinothabet88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-casinothabet88__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-casinothabet88__section--dark {
      background-color: var(--page-casinothabet88-secondary-color);
      color: var(--page-casinothabet88-light-text-color);
    }

    .page-casinothabet88__section-title {
      text-align: center;
      color: var(--page-casinothabet88-primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-casinothabet88__section-title--light {
      color: var(--page-casinothabet88-light-text-color);
    }
    .page-casinothabet88__section-title--light::after {
      background-color: var(--page-casinothabet88-primary-color);
    }

    /* Hero Section */
    .page-casinothabet88__hero-section {
      position: relative;
      text-align: center;
      color: var(--page-casinothabet88-light-text-color);
      padding-top: 10px; /* For fixed header */
      padding-bottom: 40px;
      background-color: var(--page-casinothabet88-background-dark);
    }

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

    .page-casinothabet88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-casinothabet88__hero-content {
      padding: 0 20px;
    }

    .page-casinothabet88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-casinothabet88-primary-color);
    }

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

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

    .page-casinothabet88__cta-button:hover {
      background-color: #e68a00;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-casinothabet88__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-casinothabet88-primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-casinothabet88-pulse 2s infinite;
      white-space: nowrap;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .page-casinothabet88__floating-button:hover {
      background-color: #c93a18;
    }

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

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

    .page-casinothabet88__game-card {
      background-color: var(--page-casinothabet88-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--page-casinothabet88-border-color);
    }

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

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

    .page-casinothabet88__game-card-image {
      width: 100%;
      max-width: 250px; /* Adjust max-width for game logos */
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: contain; /* Ensure logo is contained */
      aspect-ratio: 4/3; /* Maintain aspect ratio for logos */
    }

    .page-casinothabet88__game-card-title {
      font-size: 1.4em;
      color: var(--page-casinothabet88-secondary-color);
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-casinothabet88__game-card-description {
      font-size: 0.95em;
      color: var(--page-casinothabet88-text-color);
      flex-grow: 1;
      margin-bottom: 15px;
    }

    .page-casinothabet88__game-card .page-casinothabet88__cta-button {
      padding: 10px 20px;
      font-size: 0.9em;
    }

    /* About Section */
    .page-casinothabet88__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    .page-casinothabet88__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-casinothabet88__about-text h3 {
      color: var(--page-casinothabet88-primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-casinothabet88__about-text p {
      margin-bottom: 15px;
    }

    .page-casinothabet88__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-casinothabet88__about-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* Benefits Section */
    .page-casinothabet88__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-casinothabet88__benefit-item {
      background-color: var(--page-casinothabet88-background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-casinothabet88-border-color);
    }

    .page-casinothabet88__benefit-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-casinothabet88__benefit-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-casinothabet88__benefit-icon {
      width: 100%;
      max-width: 120px; /* Adjust size for benefit icons */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      object-fit: contain;
      aspect-ratio: 1/1; /* Square aspect ratio */
    }

    .page-casinothabet88__benefit-title {
      font-size: 1.5em;
      color: var(--page-casinothabet88-primary-color);
      margin-bottom: 10px;
    }

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

    /* Why Choose Us */
    .page-casinothabet88__why-choose-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-casinothabet88__why-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-casinothabet88-border-color);
    }

    .page-casinothabet88__why-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-casinothabet88__why-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-casinothabet88__why-icon {
      width: 100%;
      max-width: 100px; /* Adjust size for why icons */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      object-fit: contain;
      aspect-ratio: 1/1;
    }

    .page-casinothabet88__why-title {
      font-size: 1.5em;
      color: var(--page-casinothabet88-secondary-color);
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-casinothabet88__faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-casinothabet88__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-casinothabet88-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-casinothabet88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-casinothabet88-primary-color);
      color: var(--page-casinothabet88-light-text-color);
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-casinothabet88__faq-question:hover {
      background-color: #c93a18;
    }

    .page-casinothabet88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-casinothabet88-light-text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-casinothabet88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #f9f9f9;
      color: var(--page-casinothabet88-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-casinothabet88__faq-answer p {
      margin: 15px 0;
    }

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

    .page-casinothabet88__faq-item.active .page-casinothabet88__faq-toggle {
      content: '−';
    }

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

      .page-casinothabet88__section {
        padding: 30px 0;
      }

      .page-casinothabet88__section-title {
        font-size: 2em;
        margin-bottom: 25px;
      }

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

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

      .page-casinothabet88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-casinothabet88__game-card-title,
      .page-casinothabet88__benefit-title,
      .page-casinothabet88__why-title {
        font-size: 1.3em;
      }

      .page-casinothabet88__faq-question {
        padding: 12px 15px;
      }

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

      .page-casinothabet88__faq-toggle {
        font-size: 1.3em;
      }

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

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

      /* Force responsive image styles with !important */
      .page-casinothabet88__hero-image,
      .page-casinothabet88__game-card-image,
      .page-casinothabet88__about-image,
      .page-casinothabet88__benefit-icon,
      .page-casinothabet88__why-icon {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-casinothabet88__hero-image-wrapper,
      .page-casinothabet88__game-card-image-wrapper,
      .page-casinothabet88__about-image-wrapper,
      .page-casinothabet88__benefit-icon-wrapper,
      .page-casinothabet88__why-icon-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  