
    :root {
      --primary-color: #e44d26; /* Cam đỏ */
      --secondary-color: #ffcc00; /* Vàng */
      --dark-background: #1a1a1a; /* Nền tối */
      --light-text: #ffffff; /* Chữ sáng */
      --gray-text: #cccccc; /* Chữ xám */
      --button-hover: #ff6633; /* Cam sáng hơn khi hover */
      --border-color: #333333; /* Màu viền */
      --spacing-unit: 1rem;
      --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
    }

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

    .page-v188v__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
      box-sizing: border-box;
    }

    .page-v188v__section {
      padding: 3rem 0;
      text-align: center;
      position: relative;
    }

    .page-v188v__section--dark {
      background-color: #222222;
    }

    .page-v188v__title {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .page-v188v__subtitle {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .page-v188v__text {
      font-size: 1rem;
      color: var(--gray-text);
      margin-bottom: 1rem;
    }

    .page-v188v__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 0.8rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

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

    /* Hero Section */
    .page-v188v__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,casino,mobile,vietnam]') center center/cover no-repeat;
      padding: 6rem 0;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .page-v188v__hero-content {
      max-width: 800px;
      text-align: center;
    }

    .page-v188v__hero-title {
      font-size: 3.5rem;
      color: var(--light-text);
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-v188v__hero-description {
      font-size: 1.2rem;
      color: var(--gray-text);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-v188v__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .page-v188v__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Game Categories */
    .page-v188v__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-v188v__game-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-v188v__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-v188v__game-card-image {
      width: 100%;
      height: 200px; /* Minimum height as per requirements */
      object-fit: cover;
      display: block;
      margin-bottom: 1rem;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-v188v__game-card-title {
      font-size: 1.5rem;
      color: var(--secondary-color);
      margin-bottom: 0.5rem;
    }

    .page-v188v__game-card-description {
      font-size: 0.9rem;
      color: var(--gray-text);
      padding: 0 1rem;
    }

    /* Promotions Section */
    .page-v188v__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .page-v188v__promotion-item {
      background-color: #2c2c2c;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      display: flex;
      flex-direction: column;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-v188v__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-v188v__promotion-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-v188v__promotion-title {
      font-size: 1.6rem;
      color: var(--primary-color);
      margin-bottom: 0.8rem;
      font-weight: bold;
    }

    .page-v188v__promotion-description {
      font-size: 0.95rem;
      color: var(--gray-text);
      margin-bottom: 1.2rem;
      flex-grow: 1;
    }

    .page-v188v__promotion-date {
      font-size: 0.85rem;
      color: #999999;
      text-align: right;
    }

    /* Why Choose Us Section */
    .page-v188v__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-v188v__feature-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-v188v__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-v188v__feature-icon {
      width: 80px; /* Min 200x200 requirement applies to images, but this is a conceptual icon, will use a placeholder for an image */
      height: 80px;
      object-fit: contain;
      margin-bottom: 1rem;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-v188v__feature-title {
      font-size: 1.4rem;
      color: var(--secondary-color);
      margin-bottom: 0.8rem;
    }

    .page-v188v__feature-description {
      font-size: 0.95rem;
      color: var(--gray-text);
    }

    /* FAQ Section */
    .page-v188v__faq-list {
      margin-top: 2rem;
      text-align: left;
    }

    .page-v188v__faq-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

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

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

    .page-v188v__faq-question h3 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--light-text);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-v188v__faq-toggle {
      font-size: 1.5rem;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-v188v__faq-item.active .page-v188v__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

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

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

    /* Payment Methods & Game Providers */
    .page-v188v__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
      justify-content: center;
      align-items: center;
    }

    .page-v188v__partner-logo {
      width: 100%;
      max-width: 200px; /* Ensure logos don't get too big */
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      margin: 0 auto; /* Center individual logos */
      box-sizing: border-box;
    }

    .page-v188v__partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-v188v__hero-title {
        font-size: 3rem;
      }
      .page-v188v__title {
        font-size: 2rem;
      }
      .page-v188v__subtitle {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .page-v188v {
        padding-top: var(--header-offset, 122px) !important; /* Ensure padding for smaller screens */
      }
      .page-v188v__hero-section {
        padding: 4rem 0;
      }
      .page-v188v__hero-title {
        font-size: 2.5rem;
      }
      .page-v188v__hero-description {
        font-size: 1rem;
      }
      .page-v188v__title {
        font-size: 1.8rem;
      }
      .page-v188v__subtitle {
        font-size: 1.3rem;
      }
      .page-v188v__section {
        padding: 2rem 0;
      }
      .page-v188v__game-categories,
      .page-v188v__promotions-grid,
      .page-v188v__features-grid,
      .page-v188v__partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .page-v188v__game-card,
      .page-v188v__promotion-item,
      .page-v188v__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 1rem; /* Adjust padding for smaller screens */
      }
      .page-v188v__game-card-image,
      .page-v188v__promotion-image,
      .page-v188v__feature-icon,
      .page-v188v__partner-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-v188v__faq-answer {
        padding: 0 15px !important; /* Adjust padding for mobile */
      }
      .page-v188v__faq-item.active .page-v188v__faq-answer {
        padding: 15px 15px !important;
      }
      .page-v188v__floating-buttons {
        bottom: 10px;
        right: 10px;
      }
      .page-v188v__floating-button {
        padding: 8px 12px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .page-v188v__hero-title {
        font-size: 2rem;
      }
      .page-v188v__title {
        font-size: 1.5rem;
      }
      .page-v188v__subtitle {
        font-size: 1.2rem;
      }
      .page-v188v__button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
    }
  