
    /* Tổng quan */
    .page-tobet88net {
      font-family: Arial, sans-serif;
      color: #FFFFFF;
      background-color: #000000;
      line-height: 1.6;
    }

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

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

    .page-tobet88net__section-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 30px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 15px;
    }

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

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

    .page-tobet88net__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      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;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-tobet88net__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-tobet88net__hero-section {
      background-color: #1a1a1a;
      padding-top: 10px; /* Safe zone for fixed header on desktop */
      padding-bottom: 50px;
      position: relative;
      overflow: hidden;
    }

    .page-tobet88net__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 20px;
    }

    .page-tobet88net__hero-image-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-tobet88net__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      object-fit: contain; /* Ensure image fits without stretching */
    }

    .page-tobet88net__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-tobet88net__hero-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-tobet88net__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2em;
      text-align: center;
      box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-tobet88net__pulse 2s infinite;
    }

    .page-tobet88net__floating-login-button:hover {
      background-color: #e6c200;
      transform: scale(1.05);
    }

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

    /* Giới Thiệu */
    .page-tobet88net__intro-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1em;
      color: #E0E0E0;
    }

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

    /* Game List */
    .page-tobet88net__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    .page-tobet88net__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-tobet88net__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

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

    .page-tobet88net__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-tobet88net__game-card:hover .page-tobet88net__game-image {
      transform: scale(1.05);
    }

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

    .page-tobet88net__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-tobet88net__game-description {
      font-size: 0.95em;
      color: #E0E0E0;
      margin-bottom: 15px;
    }

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

    .page-tobet88net__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px; /* Ensure a minimum height for logos */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-tobet88net__provider-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    }

    .page-tobet88net__provider-logo {
      max-width: 100%;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* Promotions */
    .page-tobet88net__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    .page-tobet88net__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      box-sizing: border-box;
    }

    .page-tobet88net__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

    .page-tobet88net__promo-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-tobet88net__promo-description {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-tobet88net__promo-button {
      margin-top: auto; /* Push button to bottom */
    }

    /* Why Choose Us */
    .page-tobet88net__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-tobet88net__feature-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-tobet88net__feature-item:hover {
      transform: translateY(-3px);
    }

    .page-tobet88net__feature-icon {
      font-size: 2.5em;
      color: #FFD700;
      line-height: 1;
    }

    .page-tobet88net__feature-content {
      flex-grow: 1;
    }

    .page-tobet88net__feature-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-tobet88net__feature-description {
      font-size: 0.95em;
      color: #E0E0E0;
    }

    /* How to Login */
    .page-tobet88net__steps-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-tobet88net__step-item {
      background-color: #1a1a1a;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-tobet88net__step-number {
      background-color: #FFD700;
      color: #000000;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
    }

    .page-tobet88net__step-text {
      font-size: 1.1em;
      color: #E0E0E0;
      flex-grow: 1;
    }

    /* FAQ Section */
    .page-tobet88net__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .page-tobet88net__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-tobet88net__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      transition: background-color 0.3s ease;
      color: #FFD700;
    }

    .page-tobet88net__faq-question:hover {
      background-color: #333333;
    }

    .page-tobet88net__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-tobet88net__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-tobet88net__faq-item.active .page-tobet88net__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, or just rotate for - */
    }

    .page-tobet88net__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: #E0E0E0;
      text-align: left;
    }

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

    /* Media Queries for Responsiveness */
    @media (max-width: 768px) {
      .page-tobet88net__hero-section {
        padding-top: 10px; /* Safe zone for fixed header on mobile */
      }

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

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

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

      .page-tobet88net__container {
        padding: 15px;
      }

      .page-tobet88net__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List item mobile responsiveness */
      .page-tobet88net__feature-list,
      .page-tobet88net__steps-list,
      .page-tobet88net__faq-list {
        padding: 0 10px !important;
      }

      .page-tobet88net__feature-item,
      .page-tobet88net__step-item,
      .page-tobet88net__game-card,
      .page-tobet88net__promo-card,
      .page-tobet88net__provider-item,
      .page-tobet88net__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-tobet88net__faq-answer {
        padding: 15px !important; /* Adjust padding for smaller screens */
      }

      .page-tobet88net__game-image-wrapper {
        height: 180px;
      }

      .page-tobet88net__game-title {
        font-size: 1.3em;
      }

      .page-tobet88net__promo-title {
        font-size: 1.5em;
      }

      .page-tobet88net__feature-title {
        font-size: 1.2em;
      }

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

      .page-tobet88net__faq-question h3 {
        font-size: 1.1em;
      }
    }

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

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

      .page-tobet88net__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-tobet88net__floating-login-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 1em;
      }

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

      .page-tobet88net__game-image-wrapper {
        height: 150px;
      }
    }
  