
    :root {
      --page-kkwinbet__primary-color: #e44d26; /* Một màu cam đỏ nổi bật */
      --page-kkwinbet__secondary-color: #f7b731; /* Màu vàng cam */
      --page-kkwinbet__dark-bg: #1a1a1a;
      --page-kkwinbet__light-bg: #f5f5f5;
      --page-kkwinbet__text-color: #333;
      --page-kkwinbet__white-text: #ffffff;
      --page-kkwinbet__border-color: #ddd;
      --page-kkwinbet__card-bg: #fff;
    }

    /* Base styles for the specific page */
    .page-kkwinbet {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-kkwinbet__text-color);
      background-color: var(--page-kkwinbet__light-bg);
    }

    .page-kkwinbet__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-kkwinbet__section--dark {
      background-color: var(--page-kkwinbet__dark-bg);
      color: var(--page-kkwinbet__white-text);
    }

    .page-kkwinbet__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-kkwinbet__primary-color);
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-kkwinbet__section-title--dark {
      color: var(--page-kkwinbet__secondary-color);
    }

    /* Hero Section */
    .page-kkwinbet__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      color: var(--page-kkwinbet__white-text);
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      min-height: 450px; /* Ensure hero section has a minimum height */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-kkwinbet__hero-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    .page-kkwinbet__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.7); /* Darken image slightly for text readability */
    }

    .page-kkwinbet__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
    }

    .page-kkwinbet__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-kkwinbet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-kkwinbet__hero-button {
      display: inline-block;
      background-color: var(--page-kkwinbet__primary-color);
      color: var(--page-kkwinbet__white-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .page-kkwinbet__hero-button:hover {
      background-color: var(--page-kkwinbet__secondary-color);
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-kkwinbet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-kkwinbet__primary-color);
      color: var(--page-kkwinbet__white-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-kkwinbet__pulse 2s infinite;
    }

    .page-kkwinbet__floating-button:hover {
      background-color: var(--page-kkwinbet__secondary-color);
      transform: translateY(-5px);
      animation: none;
    }

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

    /* About Section */
    .page-kkwinbet__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
      text-align: center;
    }

    .page-kkwinbet__about-text {
      max-width: 800px;
      font-size: 1.1em;
      line-height: 1.8;
    }

    .page-kkwinbet__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Game Categories */
    .page-kkwinbet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .page-kkwinbet__game-card {
      background-color: var(--page-kkwinbet__card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .page-kkwinbet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-kkwinbet__game-card-image-wrapper {
      width: 100%;
      height: 180px; /* Fixed height for consistency */
      overflow: hidden;
    }

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

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

    .page-kkwinbet__game-card-title {
      font-size: 1.4em;
      font-weight: bold;
      margin: 15px 10px 10px;
      color: var(--page-kkwinbet__primary-color);
    }

    .page-kkwinbet__game-card-description {
      font-size: 0.95em;
      padding: 0 15px 15px;
      flex-grow: 1;
      color: var(--page-kkwinbet__text-color);
    }

    /* Why Choose Us Section */
    .page-kkwinbet__advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-kkwinbet__advantage-item {
      background-color: var(--page-kkwinbet__card-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-kkwinbet__advantage-item:hover {
      transform: translateY(-5px);
    }

    .page-kkwinbet__advantage-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: var(--page-kkwinbet__secondary-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5em;
      color: var(--page-kkwinbet__white-text);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .page-kkwinbet__advantage-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-kkwinbet__primary-color);
    }

    .page-kkwinbet__advantage-description {
      font-size: 1em;
      color: var(--page-kkwinbet__text-color);
    }

    /* Promotions Section */
    .page-kkwinbet__promo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .page-kkwinbet__promo-card {
      background-color: var(--page-kkwinbet__card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-kkwinbet__promo-card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-kkwinbet__border-color);
    }

    .page-kkwinbet__promo-card-content {
      padding: 25px;
    }

    .page-kkwinbet__promo-card-title {
      font-size: 1.8em;
      color: var(--page-kkwinbet__primary-color);
      margin-bottom: 10px;
    }

    .page-kkwinbet__promo-card-description {
      font-size: 1.1em;
      color: var(--page-kkwinbet__text-color);
      margin-bottom: 20px;
    }

    .page-kkwinbet__promo-button {
      display: inline-block;
      background-color: var(--page-kkwinbet__secondary-color);
      color: var(--page-kkwinbet__white-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-kkwinbet__promo-button:hover {
      background-color: var(--page-kkwinbet__primary-color);
    }

    /* FAQ Section */
    .page-kkwinbet__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-kkwinbet__faq-item {
      background-color: var(--page-kkwinbet__card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      overflow: hidden;
      border: 1px solid var(--page-kkwinbet__border-color);
    }

    .page-kkwinbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-kkwinbet__dark-bg);
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      transition: background-color 0.3s ease;
    }

    .page-kkwinbet__faq-question:hover {
      background-color: var(--page-kkwinbet__light-bg);
    }

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

    .page-kkwinbet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-kkwinbet__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

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

    .page-kkwinbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      font-size: 1.0em;
      color: var(--page-kkwinbet__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;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kkwinbet__section {
        padding: 30px 15px;
      }

      .page-kkwinbet__hero-section {
        min-height: 350px;
        padding-top: 10px; /* Adjust for mobile header */
      }

      .page-kkwinbet__hero-title {
        font-size: 2.2em;
      }

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

      .page-kkwinbet__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kkwinbet__floating-button {
        padding: 12px 20px;
        font-size: 0.95em;
        bottom: 15px;
        right: 15px;
      }

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

      .page-kkwinbet__about-content {
        flex-direction: column;
      }

      .page-kkwinbet__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

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

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

      .page-kkwinbet__promo-card-image {
        height: 200px;
      }

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

      .page-kkwinbet__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-kkwinbet__faq-question h3 {
        font-size: 1em;
      }

      .page-kkwinbet__faq-toggle {
        font-size: 1.5em;
      }

      .page-kkwinbet__faq-answer {
        padding: 15px 15px;
      }

      /* Image responsive optimization for mobile */
      .page-kkwinbet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kkwinbet .page-kkwinbet__hero-image-container,
      .page-kkwinbet .page-kkwinbet__game-card-image-wrapper,
      .page-kkwinbet .page-kkwinbet__promo-card-image,
      .page-kkwinbet .page-kkwinbet__about-image,
      .page-kkwinbet .page-kkwinbet__advantage-icon img {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-kkwinbet__hero-title {
        font-size: 1.8em;
      }
      .page-kkwinbet__hero-subtitle {
        font-size: 1em;
      }
      .page-kkwinbet__section-title {
        font-size: 1.8em;
      }
      .page-kkwinbet__floating-button {
        font-size: 0.85em;
        padding: 10px 15px;
      }
    }
  