
    :root {
      --page-28abet-primary-color: #e44d26; /* Cam đỏ */
      --page-28abet-secondary-color: #f7b731; /* Vàng cam */
      --page-28abet-background-dark: #1a1a1a; /* Nền tối */
      --page-28abet-background-light: #2c2c2c; /* Nền sáng hơn */
      --page-28abet-text-light: #ffffff; /* Chữ trắng */
      --page-28abet-text-dark: #eeeeee; /* Chữ xám nhạt */
      --page-28abet-border-color: #444444; /* Màu viền */
      --page-28abet-button-hover: #ff6f40; /* Màu hover nút */
    }

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

    .page-28abet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: var(--page-28abet-background-light);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-28abet__section--dark {
      background-color: var(--page-28abet-background-dark);
      border-radius: 0;
    }

    .page-28abet__section-title {
      font-size: 2.5em;
      color: var(--page-28abet-primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
    }

    .page-28abet__section-subtitle {
      font-size: 1.2em;
      color: var(--page-28abet-text-light);
      margin-bottom: 30px;
      text-align: center;
    }

    .page-28abet__button {
      display: inline-block;
      background-color: var(--page-28abet-primary-color);
      color: var(--page-28abet-text-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-28abet__button:hover {
      background-color: var(--page-28abet-button-hover);
    }

    /* Hero Section */
    .page-28abet__hero-section {
      padding: 10px 0 60px 0; /* Rely on body padding for header offset, add small top padding */
      background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,online_casino,mobile_app,vietnam]');
      background-size: cover;
      background-position: center;
      color: var(--page-28abet-text-light);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
    }

    .page-28abet__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-28abet-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-28abet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: var(--page-28abet-text-light);
    }

    /* Floating Buttons */
    .page-28abet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 26, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-28abet__floating-button {
      flex: 1;
      text-align: center;
      margin: 0 5px;
      padding: 12px 0;
      font-size: 1.1em;
      border-radius: 5px;
      background-color: var(--page-28abet-primary-color);
      color: var(--page-28abet-text-light);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-28abet__floating-button:hover {
      background-color: var(--page-28abet-button-hover);
    }

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

    .page-28abet__game-card {
      background-color: var(--page-28abet-background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-28abet-border-color);
    }

    .page-28abet__game-card:hover {
      transform: translateY(-5px);
    }

    .page-28abet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
      box-sizing: border-box;
    }

    .page-28abet__game-card-content {
      padding: 20px;
    }

    .page-28abet__game-card-title {
      font-size: 1.4em;
      color: var(--page-28abet-primary-color);
      margin-bottom: 10px;
    }

    .page-28abet__game-card-description {
      font-size: 0.95em;
      color: var(--page-28abet-text-dark);
    }

    /* Promotions Section */
    .page-28abet__promotion-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 800px;
      margin: 30px auto 0 auto;
    }

    .page-28abet__promotion-item {
      display: flex;
      align-items: center;
      background-color: var(--page-28abet-background-dark);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      text-align: left;
      border: 1px solid var(--page-28abet-border-color);
    }

    .page-28abet__promotion-image {
      width: 150px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 20px;
      flex-shrink: 0;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
      box-sizing: border-box;
    }

    .page-28abet__promotion-content h3 {
      font-size: 1.3em;
      color: var(--page-28abet-secondary-color);
      margin-bottom: 5px;
    }

    .page-28abet__promotion-content p {
      font-size: 0.95em;
      color: var(--page-28abet-text-dark);
    }

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

    .page-28abet__feature-card {
      background-color: var(--page-28abet-background-dark);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      text-align: center;
      border: 1px solid var(--page-28abet-border-color);
    }

    .page-28abet__feature-icon {
      width: 80px; /* Min size for image placeholders */
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
      box-sizing: border-box;
    }
    /* Override for placeholder, ensure it's at least 200x200 */
    .page-28abet__feature-icon {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 15px;
    }


    .page-28abet__feature-card h3 {
      font-size: 1.3em;
      color: var(--page-28abet-primary-color);
      margin-bottom: 10px;
    }

    .page-28abet__feature-card p {
      font-size: 0.95em;
      color: var(--page-28abet-text-dark);
    }

    /* App Download Section */
    .page-28abet__app-download-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-28abet__app-download-image {
      width: 300px;
      height: 200px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
      box-sizing: border-box;
    }

    .page-28abet__app-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* FAQ Section */
    .page-28abet__faq-container {
      max-width: 900px;
      margin: 30px auto;
      text-align: left;
    }

    .page-28abet__faq-item {
      background-color: var(--page-28abet-background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--page-28abet-border-color);
    }

    .page-28abet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: var(--page-28abet-primary-color);
      color: var(--page-28abet-text-light);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-28abet__faq-question:hover {
      background-color: var(--page-28abet-button-hover);
    }

    .page-28abet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

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

    .page-28abet__faq-item.active .page-28abet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-28abet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      background-color: var(--page-28abet-background-light);
      color: var(--page-28abet-text-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-28abet__faq-item.active .page-28abet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-28abet__text-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      color: var(--page-28abet-text-dark);
      font-size: 1em;
    }

    .page-28abet__text-content p {
      margin-bottom: 15px;
    }

    .page-28abet__text-content ul {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-28abet__text-content li {
      margin-bottom: 8px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-28abet__section {
        padding: 30px 15px;
      }

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

      .page-28abet__hero-title {
        font-size: 2.5em;
      }

      .page-28abet__hero-subtitle {
        font-size: 1.2em;
      }

      .page-28abet__floating-buttons {
        padding: 8px 0;
      }

      .page-28abet__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 3px;
      }

      .page-28abet__game-grid,
      .page-28abet__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-28abet__promotion-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .page-28abet__promotion-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 15px;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-28abet__promotion-content h3 {
        font-size: 1.2em;
      }

      .page-28abet__faq-question {
        padding: 15px 20px;
      }

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

      .page-28abet__faq-answer {
        padding: 0 20px;
      }

      .page-28abet__faq-item.active .page-28abet__faq-answer {
        padding: 15px 20px !important;
      }

      .page-28abet__app-download-image {
        width: 100%;
        height: auto;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-28abet__app-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
      }

      .page-28abet__button {
        width: 100%;
        box-sizing: border-box;
      }

      /* List item responsive rules */
      .page-28abet__text-content ul,
      .page-28abet__text-content ol {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 20px !important; /* Adjust padding for mobile */
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-28abet__text-content li {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-28abet__hero-title {
        font-size: 2em;
      }

      .page-28abet__hero-subtitle {
        font-size: 1em;
      }
    }
  