
    :root {
      --primary-color: #ffcc00; /* Vàng rực rỡ */
      --secondary-color: #333333; /* Xám đậm */
      --accent-color: #007bff; /* Xanh dương */
      --text-light: #ffffff;
      --text-dark: #222222;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #555555;
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    /* Base styles for the page content */
    .page-3bet-tech-3bet {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding */
    }

    /* Utility classes */
    .page-3bet-tech-3bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-3bet-tech-3bet__section-title {
      text-align: center;
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    /* Hero Section */
    .page-3bet-tech-3bet__hero-section {
      background-color: var(--background-light);
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
      padding-top: 10px; /* Small decorative top padding, body has main offset */
    }

    .page-3bet-tech-3bet__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
      z-index: 1;
    }

    .page-3bet-tech-3bet__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-3bet-tech-3bet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-3bet-tech-3bet__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-3bet-tech-3bet__hero-description {
      font-size: 1.2em;
      color: var(--text-light);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-3bet-tech-3bet__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-3bet-tech-3bet__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

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

    .page-3bet-tech-3bet__floating-button {
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-3bet-tech-3bet__floating-button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

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

    .page-3bet-tech-3bet__game-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-3bet-tech-3bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-3bet-tech-3bet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

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

    .page-3bet-tech-3bet__game-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-3bet-tech-3bet__game-card-description {
      font-size: 0.95em;
      color: #bbbbbb;
    }

    /* Promotions and News sections */
    .page-3bet-tech-3bet__list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-3bet-tech-3bet__list-item {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Important for responsive lists */
    }

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

    .page-3bet-tech-3bet__list-item-title {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-3bet-tech-3bet__list-item-text {
      color: #cccccc;
      font-size: 0.9em;
    }
    
    .page-3bet-tech-3bet__list-item-date {
        color: #999999;
        font-size: 0.8em;
        margin-top: 10px;
        display: block;
    }

    /* Why Choose Us Section */
    .page-3bet-tech-3bet__why-choose-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3bet-tech-3bet__benefit-card {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-3bet-tech-3bet__benefit-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-3bet-tech-3bet__benefit-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-3bet-tech-3bet__benefit-description {
      color: #bbbbbb;
      font-size: 0.95em;
    }

    /* Payment Methods & Game Providers */
    .page-3bet-tech-3bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-3bet-tech-3bet__logo-item {
      background-color: #3a3a3a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }
    
    .page-3bet-tech-3bet__logo-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .page-3bet-tech-3bet__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    
    .page-3bet-tech-3bet__logo-item:hover .page-3bet-tech-3bet__logo-image {
        transform: scale(1.05);
    }

    /* FAQ Section */
    .page-3bet-tech-3bet__faq-section {
      background-color: var(--background-light);
      padding: 60px 0;
      margin-top: 50px;
    }

    .page-3bet-tech-3bet__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-3bet-tech-3bet__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-3bet-tech-3bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      transition: background-color 0.3s ease;
    }

    .page-3bet-tech-3bet__faq-question:hover {
      background-color: #444444;
    }

    .page-3bet-tech-3bet__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-3bet-tech-3bet__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-3bet-tech-3bet__faq-item.active .page-3bet-tech-3bet__faq-toggle {
      transform: rotate(45deg); /* For '-' symbol */
    }

    .page-3bet-tech-3bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-3bet-tech-3bet__hero-title {
        font-size: 3em;
      }
      .page-3bet-tech-3bet__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-3bet-tech-3bet__container {
        padding: 15px;
      }

      .page-3bet-tech-3bet__hero-section {
        padding: 40px 15px;
      }

      .page-3bet-tech-3bet__hero-title {
        font-size: 2.5em;
      }

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

      .page-3bet-tech-3bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-3bet-tech-3bet__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      /* Floating buttons for mobile */
      .page-3bet-tech-3bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Row for mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
      }
      .page-3bet-tech-3bet__floating-button {
        flex-grow: 1;
        min-width: unset;
      }

      /* Images responsiveness */
      .page-3bet-tech-3bet__game-card-image,
      .page-3bet-tech-3bet__benefit-icon,
      .page-3bet-tech-3bet__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }

      /* Image containers responsiveness */
      .page-3bet-tech-3bet__game-card,
      .page-3bet-tech-3bet__benefit-card,
      .page-3bet-tech-3bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* List item responsiveness */
      .page-3bet-tech-3bet__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !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-tech-3bet__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 15px;
      }

      .page-3bet-tech-3bet__faq-question {
        padding: 15px 20px;
      }
      .page-3bet-tech-3bet__faq-question h3 {
        font-size: 1.1em;
      }
      .page-3bet-tech-3bet__faq-answer {
        padding: 0 20px;
      }
      .page-3bet-tech-3bet__faq-item.active .page-3bet-tech-3bet__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-3bet-tech-3bet__hero-title {
        font-size: 2em;
      }
      .page-3bet-tech-3bet__section-title {
        font-size: 1.6em;
      }
      .page-3bet-tech-3bet__floating-buttons {
        flex-direction: column;
      }
    }
  