
    :root {
      --primary-color: #e44d26; /* A vibrant orange/red */
      --secondary-color: #f7931e; /* A lighter orange */
      --dark-background: #1a1a1a;
      --light-text: #f0f0f0;
      --gray-text: #b0b0b0;
      --border-color: #333;
      --button-bg: var(--primary-color);
      --button-hover-bg: var(--secondary-color);
      --button-text: #fff;
      --header-offset: 122px; /* Default value if not set by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--dark-background);
      color: var(--light-text);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-3bet-vc {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px; /* Small padding top, relying on body padding for header offset */
      box-sizing: border-box;
      color: var(--light-text);
    }

    .page-3bet-vc__section {
      padding: 40px 0;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border-color);
    }

    .page-3bet-vc__section:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-3bet-vc__heading-primary {
      font-size: 2.8em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-3bet-vc__heading-secondary {
      font-size: 2em;
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

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

    .page-3bet-vc__paragraph {
      margin-bottom: 15px;
      color: var(--gray-text);
      text-align: justify;
    }

    .page-3bet-vc__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--button-bg);
      color: var(--button-text);
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-3bet-vc__button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-3bet-vc__button--secondary {
      background-color: #555;
      color: var(--light-text);
    }

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

    /* 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:betting,casino,vietnam]') no-repeat center center / cover;
      color: var(--light-text);
      padding: 80px 20px;
      text-align: center;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      position: relative;
      overflow: hidden;
    }

    .page-3bet-vc__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

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

    .page-3bet-vc__hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

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

    .page-3bet-vc__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-3bet-vc__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-3bet-vc__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-3bet-vc__game-card:hover .page-3bet-vc__game-card-image {
      transform: scale(1.05);
    }

    .page-3bet-vc__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-3bet-vc__game-card-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-3bet-vc__game-card-description {
      font-size: 0.9em;
      color: var(--gray-text);
    }

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

    .page-3bet-vc__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-3bet-vc__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-3bet-vc__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-3bet-vc__promo-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-3bet-vc__promo-card-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-3bet-vc__promo-card-description {
      font-size: 0.9em;
      color: var(--gray-text);
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-3bet-vc__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-3bet-vc__feature-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-3bet-vc__feature-item:hover {
      background-color: #3a3a3a;
      transform: translateY(-3px);
    }

    .page-3bet-vc__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

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

    .page-3bet-vc__feature-description {
      color: var(--gray-text);
      font-size: 0.95em;
    }

    /* Payment and Provider Logos */
    .page-3bet-vc__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for more logos */
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-3bet-vc__logo-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Fixed height for consistency */
      box-sizing: border-box;
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 150px; /* Limit max width for larger screens */
    }

    .page-3bet-vc__logo-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .page-3bet-vc__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      filter: grayscale(50%);
      transition: filter 0.3s ease;
    }

    .page-3bet-vc__logo-item:hover .page-3bet-vc__logo-image {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-3bet-vc__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-3bet-vc__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box; /* Required for list items */
    }

    .page-3bet-vc__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: var(--light-text);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

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

    .page-3bet-vc__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: var(--secondary-color);
    }

    .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; /* Adjusted padding for better visual */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #2a2a2a;
      color: var(--gray-text);
    }

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

    /* Floating Buttons */
    .page-3bet-vc__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-3bet-vc__floating-button {
      background-color: var(--primary-color);
      color: var(--button-text);
      border: none;
      border-radius: 50px;
      padding: 15px 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-3bet-vc__floating-button:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
    }

    .page-3bet-vc__floating-button--login {
      background-color: #4CAF50; /* Green for login */
    }

    .page-3bet-vc__floating-button--login:hover {
      background-color: #66BB6A;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-3bet-vc {
        padding: 10px;
      }

      .page-3bet-vc__heading-primary {
        font-size: 2.2em;
      }

      .page-3bet-vc__heading-secondary {
        font-size: 1.6em;
      }

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

      .page-3bet-vc__hero-subtitle {
        font-size: 1.2em;
      }

      .page-3bet-vc__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-3bet-vc__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }

      /* List item mobile responsiveness */
      .page-3bet-vc__game-categories,
      .page-3bet-vc__promotions-grid,
      .page-3bet-vc__features-list,
      .page-3bet-vc__logo-grid,
      .page-3bet-vc__faq-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-3bet-vc__game-card,
      .page-3bet-vc__promo-card,
      .page-3bet-vc__feature-item,
      .page-3bet-vc__logo-item,
      .page-3bet-vc__faq-item {
        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;
        word-break: break-word !important;
      }
      .page-3bet-vc__faq-answer {
        padding: 15px !important;
      }
      .page-3bet-vc__faq-question {
        padding: 15px !important;
      }
      .page-3bet-vc__logo-item {
        height: 70px;
      }

      /* Image responsiveness */
      .page-3bet-vc__game-card-image,
      .page-3bet-vc__promo-card-image,
      .page-3bet-vc__feature-icon,
      .page-3bet-vc__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-3bet-vc__game-card-image,
      .page-3bet-vc__promo-card-image {
        height: 180px !important;
      }
      .page-3bet-vc__feature-icon {
        width: 80px !important;
        height: 80px !important;
      }

      .page-3bet-vc__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

      .page-3bet-vc__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-3bet-vc__hero-title {
        font-size: 2.2em;
      }
      .page-3bet-vc__hero-subtitle {
        font-size: 1em;
      }
      .page-3bet-vc__heading-primary {
        font-size: 1.8em;
      }
      .page-3bet-vc__heading-secondary {
        font-size: 1.4em;
      }
    }
  