
    :root {
      --page-3bet-vc-primary-color: #e44d26; /* Cam đỏ */
      --page-3bet-vc-secondary-color: #f7b731; /* Vàng cam */
      --page-3bet-vc-dark-background: #1a1a1a; /* Nền tối */
      --page-3bet-vc-light-background: #ffffff; /* Nền sáng */
      --page-3bet-vc-text-color: #e0e0e0; /* Màu chữ sáng */
      --page-3bet-vc-heading-color: #ffffff; /* Màu tiêu đề */
      --page-3bet-vc-border-radius: 8px;
      --page-3bet-vc-spacing-md: 20px;
      --page-3bet-vc-spacing-lg: 40px;
    }

    .page-3bet-vc {
      font-family: 'Arial', sans-serif;
      color: var(--page-3bet-vc-text-color);
      background-color: var(--page-3bet-vc-dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding, relies on body padding-top for header offset */
    }

    .page-3bet-vc__section {
      padding: var(--page-3bet-vc-spacing-lg) var(--page-3bet-vc-spacing-md);
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-3bet-vc__section--dark {
      background-color: #222222;
    }

    .page-3bet-vc__section--light {
      background-color: #333333;
    }

    .page-3bet-vc__heading {
      color: var(--page-3bet-vc-heading-color);
      text-align: center;
      margin-bottom: var(--page-3bet-vc-spacing-lg);
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-3bet-vc__sub-heading {
      color: var(--page-3bet-vc-secondary-color);
      text-align: center;
      margin-bottom: var(--page-3bet-vc-spacing-md);
      font-size: 1.8em;
    }

    .page-3bet-vc__text-center {
      text-align: center;
    }

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

    .page-3bet-vc__button:hover {
      background-color: #d13a1a;
    }

    /* Hero Section */
    .page-3bet-vc__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,casino,mobile_betting,3bet_vc]') center center no-repeat;
      background-size: cover;
      padding: 80px var(--page-3bet-vc-spacing-md);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
    }

    .page-3bet-vc__hero-title {
      font-size: 3em;
      color: var(--page-3bet-vc-heading-color);
      margin-bottom: 20px;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-3bet-vc__hero-description {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
      max-width: 800px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Features Section */
    .page-3bet-vc__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-3bet-vc-spacing-md);
    }

    .page-3bet-vc__feature-item {
      background-color: #2a2a2a;
      padding: var(--page-3bet-vc-spacing-md);
      border-radius: var(--page-3bet-vc-border-radius);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-3bet-vc__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-3bet-vc__feature-icon {
      width: 250px; /* Min size */
      height: auto;
      margin-bottom: 15px;
      border-radius: var(--page-3bet-vc-border-radius);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3bet-vc__feature-title {
      color: var(--page-3bet-vc-secondary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-3bet-vc__feature-description {
      font-size: 0.95em;
      color: #b0b0b0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Game Categories Section */
    .page-3bet-vc__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-3bet-vc-spacing-md);
    }

    .page-3bet-vc__game-card {
      background-color: #2a2a2a;
      border-radius: var(--page-3bet-vc-border-radius);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-3bet-vc__game-card:hover {
      transform: translateY(-5px);
    }

    .page-3bet-vc__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3bet-vc__game-content {
      padding: var(--page-3bet-vc-spacing-md);
    }

    .page-3bet-vc__game-title {
      color: var(--page-3bet-vc-secondary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-3bet-vc__game-description {
      font-size: 0.9em;
      color: #b0b0b0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-3bet-vc__promo-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-3bet-vc__promo-item {
      background-color: #2a2a2a;
      padding: var(--page-3bet-vc-spacing-md);
      border-radius: var(--page-3bet-vc-border-radius);
      display: flex;
      align-items: center;
      gap: var(--page-3bet-vc-spacing-md);
      box-sizing: border-box;
    }

    .page-3bet-vc__promo-image-container {
      flex-shrink: 0;
      width: 200px; /* Min size */
      height: 150px;
      overflow: hidden;
      border-radius: var(--page-3bet-vc-border-radius);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3bet-vc__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-3bet-vc__promo-details {
      flex-grow: 1;
    }

    .page-3bet-vc__promo-title {
      color: var(--page-3bet-vc-primary-color);
      font-size: 1.5em;
      margin-bottom: 8px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-3bet-vc__promo-description {
      color: #b0b0b0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Payment & Providers Section */
    .page-3bet-vc__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-3bet-vc-spacing-md);
      justify-items: center;
      align-items: center;
    }

    .page-3bet-vc__logo-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: var(--page-3bet-vc-border-radius);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-3bet-vc__logo-item:hover {
      transform: scale(1.05);
    }

    .page-3bet-vc__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-3bet-vc__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-3bet-vc__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      border-radius: var(--page-3bet-vc-border-radius);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3bet-vc__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: var(--page-3bet-vc-heading-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-3bet-vc__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-3bet-vc__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-3bet-vc__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-3bet-vc-primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-3bet-vc__faq-item.active .page-3bet-vc__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-3bet-vc__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: #b0b0b0;
      font-size: 0.95em;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-3bet-vc__section {
        padding: var(--page-3bet-vc-spacing-md) 15px;
      }

      .page-3bet-vc__hero-title {
        font-size: 2em;
      }

      .page-3bet-vc__hero-description {
        font-size: 1em;
      }

      .page-3bet-vc__heading {
        font-size: 2em;
        margin-bottom: var(--page-3bet-vc-spacing-md);
      }

      .page-3bet-vc__sub-heading {
        font-size: 1.5em;
      }

      .page-3bet-vc__promo-item {
        flex-direction: column;
        text-align: center;
      }

      .page-3bet-vc__promo-image-container {
        width: 100%;
        height: auto;
        max-height: 200px;
      }

      .page-3bet-vc__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-3bet-vc__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-3bet-vc__features-grid,
      .page-3bet-vc__game-grid,
      .page-3bet-vc__logos-grid {
        grid-template-columns: 1fr;
      }

      .page-3bet-vc__feature-item,
      .page-3bet-vc__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-3bet-vc__faq-answer,
      .page-3bet-vc__faq-question {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-3bet-vc__faq-question h3 {
        font-size: 1em;
      }

      /* Ensure all images are responsive */
      .page-3bet-vc img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-3bet-vc__promo-image-container,
      .page-3bet-vc__feature-icon,
      .page-3bet-vc__game-image,
      .page-3bet-vc__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  