
    /* Reset và biến cơ bản */
    :root {
      --page-789pet-primary-color: #e44d26; /* Cam */
      --page-789pet-secondary-color: #f7b731; /* Vàng */
      --page-789pet-text-color: #333;
      --page-789pet-light-bg: #f5f5f5;
      --page-789pet-dark-bg: #2c3e50; /* Xám đậm */
      --page-789pet-white: #ffffff;
      --page-789pet-black: #000000;
      --page-789pet-border-radius: 8px;
      --page-789pet-transition-speed: 0.3s ease-in-out;
    }

    .page-789pet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789pet-text-color);
      background-color: var(--page-789pet-light-bg);
    }

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

    .page-789pet__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      background-color: var(--page-789pet-white);
      border-radius: var(--page-789pet-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .page-789pet__section--dark {
      background-color: var(--page-789pet-dark-bg);
      color: var(--page-789pet-white);
    }

    .page-789pet__heading {
      color: var(--page-789pet-primary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789pet__section--dark .page-789pet__heading {
      color: var(--page-789pet-secondary-color);
    }

    .page-789pet__sub-heading {
      color: var(--page-789pet-primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-789pet__section--dark .page-789pet__sub-heading {
      color: var(--page-789pet-white);
    }

    .page-789pet__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789pet__button {
      display: inline-block;
      background-color: var(--page-789pet-primary-color);
      color: var(--page-789pet-white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color var(--page-789pet-transition-speed), transform var(--page-789pet-transition-speed);
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-789pet__button:hover {
      background-color: #d13a1e;
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-789pet__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 120px; /* Desktop: Ensure content is not covered by fixed header */
      background-color: var(--page-789pet-dark-bg); /* Fallback background */
      text-align: center;
      color: var(--page-789pet-white);
    }

    .page-789pet__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-789pet__hero-image {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%; /* Ensure image fits container */
      object-fit: contain; /* Maintain aspect ratio without cropping */
      border-radius: var(--page-789pet-border-radius);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-789pet__hero-content {
      position: relative;
      z-index: 2;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-789pet__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: var(--page-789pet-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789pet__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-789pet-white);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-789pet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789pet-primary-color);
      color: var(--page-789pet-white);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform var(--page-789pet-transition-speed), background-color var(--page-789pet-transition-speed);
      animation: pulse 2s infinite;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-789pet__floating-login-button:hover {
      background-color: #d13a1e;
      transform: scale(1.05);
      animation: none;
    }

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

    /* Game Categories */
    .page-789pet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-789pet__game-card {
      background-color: var(--page-789pet-light-bg);
      border-radius: var(--page-789pet-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform var(--page-789pet-transition-speed), box-shadow var(--page-789pet-transition-speed);
      text-align: center;
      text-decoration: none;
      color: var(--page-789pet-text-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789pet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-789pet__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-789pet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform var(--page-789pet-transition-speed);
      max-width: 100%; /* Ensure image fits container */
    }

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

    .page-789pet__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-789pet__game-card-title {
      font-size: 1.4em;
      color: var(--page-789pet-primary-color);
      margin-bottom: 10px;
    }

    .page-789pet__game-card-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Game Providers */
    .page-789pet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-789pet__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: var(--page-789pet-border-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background-color: var(--page-789pet-white);
        padding: 10px;
        transition: transform var(--page-789pet-transition-speed);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px; /* Ensure a minimum height for smaller logos */
    }

    .page-789pet__provider-logo-wrapper:hover {
        transform: translateY(-5px);
    }

    .page-789pet__provider-logo {
      width: 100%;
      height: auto;
      max-width: 100px; /* Max width for logos to keep them consistent */
      max-height: 80px; /* Max height for logos */
      object-fit: contain;
      max-width: 100%; /* Ensure image fits container */
    }

    /* FAQ Section */
    .page-789pet__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-789pet__faq-item {
      background-color: var(--page-789pet-white);
      border: 1px solid #ddd;
      border-radius: var(--page-789pet-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-789pet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      transition: background-color var(--page-789pet-transition-speed);
    }

    .page-789pet__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-789pet__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: var(--page-789pet-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-789pet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-789pet-primary-color);
      transition: transform var(--page-789pet-transition-speed);
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-789pet__faq-item.active .page-789pet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: var(--page-789pet-secondary-color);
    }

    .page-789pet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-789pet-white);
      color: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789pet__hero-section {
        padding-top: 100px; /* Mobile: Ensure content is not covered by fixed header */
      }

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

      .page-789pet__hero-description {
        font-size: 1em;
      }

      .page-789pet__heading {
        font-size: 2em;
      }

      .page-789pet__sub-heading {
        font-size: 1.5em;
      }

      .page-789pet__text {
        font-size: 1em;
      }

      .page-789pet__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-789pet__game-grid {
        grid-template-columns: 1fr;
      }

      .page-789pet__game-card-image {
        height: 180px;
      }

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

      .page-789pet__provider-logo {
        max-width: 80px;
        max-height: 60px;
      }

      .page-789pet__faq-question {
        padding: 15px 20px;
      }

      .page-789pet__faq-question h3 {
        font-size: 1.1em;
      }

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

      .page-789pet__faq-answer {
        padding: 0 20px;
      }

      .page-789pet__faq-item.active .page-789pet__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive important */
      .page-789pet__hero-image,
      .page-789pet__game-card-image,
      .page-789pet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789pet__hero-image-wrapper,
      .page-789pet__game-card-image-wrapper,
      .page-789pet__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  