
    :root {
      --page-333win68-primary-color: #f7b32b; /* Vàng cam */
      --page-333win68-secondary-color: #e04e3b; /* Đỏ cam */
      --page-333win68-dark-bg: #1a1a1a; /* Nền tối */
      --page-333win68-light-text: #ffffff; /* Chữ trắng */
      --page-333win68-gray-text: #cccccc; /* Chữ xám */
      --page-333win68-border-color: #333333; /* Màu viền */
      --page-333win68-hover-color: #ffd700; /* Vàng sáng */
    }

    .page-333win68 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-333win68-dark-bg);
      color: var(--page-333win68-light-text);
      line-height: 1.6;
      padding-top: 10px; /* Adjust for fixed header */
    }

    .page-333win68__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--page-333win68-border-color);
    }

    .page-333win68__section:last-of-type {
      border-bottom: none;
    }

    .page-333win68__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-333win68__heading-primary {
      font-size: 2.5em;
      color: var(--page-333win68-primary-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-333win68__heading-secondary {
      font-size: 2em;
      color: var(--page-333win68-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-333win68__heading-secondary::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-333win68-secondary-color);
    }

    .page-333win68__paragraph {
      font-size: 1.1em;
      color: var(--page-333win68-gray-text);
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-333win68__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,casino,mobile]');
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-333win68__hero-title {
      font-size: 3em;
      color: var(--page-333win68-light-text);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-333win68__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-333win68-primary-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons */
    .page-333win68__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-333win68__button {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-333win68__button--primary {
      background-color: var(--page-333win68-primary-color);
      color: var(--page-333win68-dark-bg);
      box-shadow: 0 4px 15px rgba(247, 179, 43, 0.5);
    }

    .page-333win68__button--primary:hover {
      background-color: var(--page-333win68-hover-color);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }

    .page-333win68__button--secondary {
      background-color: var(--page-333win68-secondary-color);
      color: var(--page-333win68-light-text);
      box-shadow: 0 4px 15px rgba(224, 78, 59, 0.5);
    }

    .page-333win68__button--secondary:hover {
      background-color: #ff6347; /* Tomato */
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 99, 71, 0.6);
    }

    /* Product Showcase */
    .page-333win68__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-333win68__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .page-333win68__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-333win68__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-333win68__game-content {
      padding: 20px;
    }

    .page-333win68__game-title {
      font-size: 1.4em;
      color: var(--page-333win68-light-text);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-333win68__game-description {
      font-size: 0.95em;
      color: var(--page-333win68-gray-text);
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-333win68__promo-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-333win68__promo-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      flex: 1 1 calc(33% - 20px); /* 3 items per row on desktop */
      max-width: calc(33% - 20px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      text-align: center;
    }

    .page-333win68__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-333win68__promo-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-333win68__promo-content {
      padding: 20px;
    }

    .page-333win68__promo-title {
      font-size: 1.3em;
      color: var(--page-333win68-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-333win68__promo-description {
      font-size: 0.95em;
      color: var(--page-333win68-gray-text);
    }

    /* Features / Why Choose Us */
    .page-333win68__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-333win68__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #2a2a2a;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-333win68__feature-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-333win68__feature-icon {
      width: 80px; /* Min size 200x200 not applicable for icons, but this is a placeholder. For actual icons, the system will replace with appropriate images. */
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-333win68__feature-title {
      font-size: 1.3em;
      color: var(--page-333win68-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-333win68__feature-description {
      font-size: 0.95em;
      color: var(--page-333win68-gray-text);
    }

    /* Payment & Providers */
    .page-333win68__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-333win68__logo-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-333win68__logo-item:hover {
      transform: scale(1.05);
    }

    .page-333win68__logo-image {
      max-width: 120px;
      height: auto;
      object-fit: contain;
      max-height: 60px;
      display: block;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-333win68__faq-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
      border-bottom: 1px solid var(--page-333win68-border-color);
    }

    .page-333win68__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

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

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

    .page-333win68__faq-question:hover {
      background-color: #444444;
    }

    .page-333win68__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-333win68-light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-333win68__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-333win68-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-333win68__faq-item.active .page-333win68__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or use '-' directly */
    }

    .page-333win68__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--page-333win68-gray-text);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action */
    .page-333win68__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    }

    .page-333win68__cta-title {
      font-size: 2.2em;
      color: var(--page-333win68-light-text);
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-333win68__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-333win68__hero-title {
        font-size: 2.5em;
      }
      .page-333win68__hero-subtitle {
        font-size: 1.3em;
      }
      .page-333win68__promo-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-333win68__hero-section {
        padding: 60px 15px;
      }
      .page-333win68__hero-title {
        font-size: 2em;
      }
      .page-333win68__hero-subtitle {
        font-size: 1.1em;
      }
      .page-333win68__heading-primary {
        font-size: 2em;
      }
      .page-333win68__heading-secondary {
        font-size: 1.7em;
      }
      .page-333win68__paragraph {
        font-size: 1em;
      }
      .page-333win68__floating-buttons {
        right: 10px;
        gap: 10px;
      }
      .page-333win68__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-333win68__promo-list,
      .page-333win68__game-grid,
      .page-333win68__features-grid,
      .page-333win68__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        grid-template-columns: 1fr; /* Single column layout for grids */
      }
      .page-333win68__promo-item,
      .page-333win68__game-card,
      .page-333win68__feature-item,
      .page-333win68__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-333win68__promo-item .page-333win68__promo-description,
      .page-333win68__game-card .page-333win68__game-description,
      .page-333win68__feature-item .page-333win68__feature-description {
        word-break: break-word !important;
      }

      .page-333win68__section {
        padding: 30px 15px;
      }
      .page-333win68__cta-title {
        font-size: 1.8em;
      }
      .page-333win68__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-333win68__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-333win68__faq-question h3 {
        font-size: 1.1em;
      }
      .page-333win68__faq-answer {
        padding: 0 15px;
      }
      .page-333win68__faq-item.active .page-333win68__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-333win68__hero-title {
        font-size: 1.8em;
      }
      .page-333win68__hero-subtitle {
        font-size: 1em;
      }
      .page-333win68__heading-primary {
        font-size: 1.8em;
      }
      .page-333win68__heading-secondary {
        font-size: 1.5em;
      }
    }
  