
    /* CSS Styles for page-kubet */
    :root {
      --page-kubet-primary-color: #e44d26; /* Cam đỏ */
      --page-kubet-secondary-color: #f7b731; /* Vàng cam */
      --page-kubet-dark-background: #1a1a1a; /* Nền tối */
      --page-kubet-light-background: #ffffff; /* Nền sáng */
      --page-kubet-text-color: #e0e0e0; /* Màu chữ sáng */
      --page-kubet-dark-text-color: #333333; /* Màu chữ tối */
      --page-kubet-border-color: #333333; /* Màu viền */
      --page-kubet-gradient-start: #3a1c71; /* Gradient tím */
      --page-kubet-gradient-end: #d76d77; /* Gradient hồng */
    }

    .page-kubet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-kubet-text-color);
      background: linear-gradient(135deg, var(--page-kubet-gradient-start) 0%, var(--page-kubet-gradient-end) 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

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

    .page-kubet__hero-section {
      position: relative;
      text-align: center;
      padding: 140px 0 60px; /* Adjusted for fixed header */
      background-color: var(--page-kubet-dark-background);
      overflow: hidden;
    }

    .page-kubet__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
      margin: 0 auto;
    }

    .page-kubet__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      margin-top: -80px; /* Overlap image slightly */
    }

    .page-kubet__hero-title {
      font-size: 2.8em;
      color: var(--page-kubet-secondary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-kubet__hero-subtitle {
      font-size: 1.4em;
      color: var(--page-kubet-text-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-kubet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-kubet-primary-color);
      color: var(--page-kubet-light-background);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-width: 180px;
    }

    .page-kubet__floating-button:hover {
      background-color: #ff6a00;
      transform: translateY(-3px);
    }

    .page-kubet__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-kubet__section--alt {
      background-color: rgba(0, 0, 0, 0.2);
    }

    .page-kubet__section-title {
      font-size: 2.2em;
      color: var(--page-kubet-secondary-color);
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

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

    .page-kubet__intro-text {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px;
      color: var(--page-kubet-text-color);
    }

    .page-kubet__game-grid,
    .page-kubet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-kubet__game-item,
    .page-kubet__provider-item {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 4px 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;
      justify-content: space-between;
      align-items: center;
    }

    .page-kubet__game-item:hover,
    .page-kubet__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-kubet__game-item img,
    .page-kubet__provider-item img {
      width: 100%;
      height: 150px; /* Fixed height for consistency */
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 15px;
      background-color: rgba(255, 255, 255, 0.05);
      padding: 10px;
      box-sizing: border-box;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-kubet__game-item-title,
    .page-kubet__provider-item-title {
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-kubet-secondary-color);
      margin-bottom: 10px;
    }

    .page-kubet__game-item p {
      font-size: 0.95em;
      color: var(--page-kubet-text-color);
    }

    .page-kubet__button {
      display: inline-block;
      background-color: var(--page-kubet-primary-color);
      color: var(--page-kubet-light-background);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
      font-size: 1em;
    }

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

    .page-kubet__benefits-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-kubet__benefit-item {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-kubet__benefit-item img {
      width: 200px; /* Minimum size requirement */
      height: auto;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 10px;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-kubet__benefit-item h3 {
      font-size: 1.5em;
      color: var(--page-kubet-primary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-kubet__benefit-item p {
      font-size: 1em;
      color: var(--page-kubet-text-color);
      text-align: center;
    }

    .page-kubet__guide-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kubet__step-item {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      position: relative;
      padding-top: 80px;
    }

    .page-kubet__step-item::before {
      content: attr(data-step);
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-kubet-primary-color);
      color: var(--page-kubet-light-background);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .page-kubet__step-item h3 {
      font-size: 1.4em;
      color: var(--page-kubet-secondary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-kubet__step-item p {
      font-size: 1em;
      color: var(--page-kubet-text-color);
    }

    .page-kubet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kubet__promo-card {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-kubet__promo-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-kubet__promo-card h3 {
      font-size: 1.5em;
      color: var(--page-kubet-primary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-kubet__promo-card p {
      font-size: 1em;
      color: var(--page-kubet-text-color);
      text-align: center;
      flex-grow: 1;
    }

    .page-kubet__faq-section {
      background-color: rgba(0, 0, 0, 0.2);
      padding: 60px 0;
      text-align: center;
    }

    .page-kubet__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-kubet__faq-item {
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-kubet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-kubet-primary-color);
      color: var(--page-kubet-light-background);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-kubet__faq-question:hover {
      background-color: #ff6a00;
    }

    .page-kubet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-kubet-light-background);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

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

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

    .page-kubet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: rgba(0, 0, 0, 0.2);
      color: var(--page-kubet-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-kubet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    .page-kubet__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* General image responsiveness */
    .page-kubet img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Media Queries for responsiveness */
    @media (max-width: 992px) {
      .page-kubet__hero-title {
        font-size: 2.2em;
      }
      .page-kubet__hero-subtitle {
        font-size: 1.2em;
      }
      .page-kubet__section-title {
        font-size: 1.8em;
      }
      .page-kubet__game-grid,
      .page-kubet__provider-grid,
      .page-kubet__benefits-list,
      .page-kubet__guide-steps,
      .page-kubet__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-kubet__container {
        padding: 15px;
      }
      .page-kubet__hero-section {
        padding: 120px 0 40px; /* Adjusted for mobile fixed header */
      }
      .page-kubet__hero-title {
        font-size: 1.8em;
      }
      .page-kubet__hero-subtitle {
        font-size: 1em;
      }
      .page-kubet__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
        min-width: 160px;
      }
      .page-kubet__section {
        padding: 40px 0;
      }
      .page-kubet__section-title {
        font-size: 1.6em;
      }
      .page-kubet__intro-text {
        font-size: 0.95em;
      }
      .page-kubet__game-grid,
      .page-kubet__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
      }
      .page-kubet__game-item img,
      .page-kubet__provider-item img {
        height: 120px;
      }
      .page-kubet__game-item-title,
      .page-kubet__provider-item-title {
        font-size: 1.1em;
      }
      .page-kubet__benefits-list,
      .page-kubet__guide-steps,
      .page-kubet__promo-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }
      .page-kubet__benefit-item img {
        width: 180px;
      }
      .page-kubet__step-item {
        padding-top: 70px;
      }
      .page-kubet__step-item::before {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
      }
      .page-kubet__promo-card img {
        height: 200px;
      }
      .page-kubet__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-kubet__faq-answer {
        padding: 0 20px;
      }
      .page-kubet__faq-item.active .page-kubet__faq-answer {
        padding: 15px 20px !important;
      }
      
      /* Force responsive image styles with !important for mobile */
      .page-kubet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kubet__game-item,
      .page-kubet__provider-item,
      .page-kubet__benefit-item,
      .page-kubet__step-item,
      .page-kubet__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-kubet__hero-title {
        font-size: 1.6em;
      }
      .page-kubet__hero-subtitle {
        font-size: 0.9em;
      }
      .page-kubet__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
        min-width: 140px;
      }
      .page-kubet__game-grid,
      .page-kubet__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }
  