
    :root {
      --page-789win111-primary-color: #e44d26; /* Cam đậm */
      --page-789win111-secondary-color: #ff7f50; /* Cam nhạt */
      --page-789win111-accent-color: #4CAF50; /* Xanh lá */
      --page-789win111-text-color: #333;
      --page-789win111-text-light: #fff;
      --page-789win111-bg-dark: #222;
      --page-789win111-bg-light: #f9f9f9;
      --page-789win111-border-color: #ddd;
    }

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

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

    /* Hero Section */
    .page-789win111__hero-section {
      position: relative;
      background-color: var(--page-789win111-bg-dark);
      color: var(--page-789win111-text-light);
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted for fixed header */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Minimum height for hero */
    }

    .page-789win111__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

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

    .page-789win111__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-789win111-text-light);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789win111__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-789win111-text-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-789win111__button {
      display: inline-block;
      background-color: var(--page-789win111-primary-color);
      color: var(--page-789win111-text-light);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-789win111__button:hover {
      background-color: var(--page-789win111-secondary-color);
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-789win111__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-789win111-bg-light);
    }

    .page-789win111__section--dark {
      background-color: var(--page-789win111-bg-dark);
      color: var(--page-789win111-text-light);
    }

    .page-789win111__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: var(--page-789win111-primary-color);
    }
    .page-789win111__section--dark .page-789win111__section-title {
      color: var(--page-789win111-secondary-color);
    }


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

    .page-789win111__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-789win111__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-789win111__game-card-content {
      padding: 20px;
    }

    .page-789win111__game-card-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-789win111-primary-color);
    }

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

    /* How-to Guide */
    .page-789win111__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-789win111__guide-step {
      display: flex;
      align-items: flex-start;
      text-align: left;
      gap: 20px;
    }

    .page-789win111__guide-step-number {
      background-color: var(--page-789win111-primary-color);
      color: var(--page-789win111-text-light);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-789win111__guide-step-content h3 {
      margin-top: 0;
      color: var(--page-789win111-primary-color);
    }
    .page-789win111__section--dark .page-789win111__guide-step-content h3 {
      color: var(--page-789win111-secondary-color);
    }


    /* Floating Login Button */
    .page-789win111__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789win111-accent-color);
      color: var(--page-789win111-text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1em;
    }

    .page-789win111__floating-button:hover {
      background-color: #5cb85c;
      transform: translateY(-3px);
    }

    .page-789win111__floating-button-icon {
      width: 24px;
      height: 24px;
      vertical-align: middle;
    }

    /* FAQ Section */
    .page-789win111__faq-section {
      text-align: left;
    }

    .page-789win111__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
    }

    .page-789win111__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-789win111-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

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

    .page-789win111__faq-question:hover {
      background-color: var(--page-789win111-secondary-color);
    }

    .page-789win111__faq-question h3 {
      margin: 0;
      color: var(--page-789win111-text-light);
      pointer-events: none; /* Prevents text from blocking click event on parent */
    }

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

    .page-789win111__faq-item.active .page-789win111__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X or - */
    }

    .page-789win111__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: #fefefe;
      color: var(--page-789win111-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* General Image Styling */
    .page-789win111 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      object-fit: cover;
    }

    .page-789win111__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789win111__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        min-height: 300px;
      }

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

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

      .page-789win111__section {
        padding: 40px 15px;
      }

      .page-789win111__section-title {
        font-size: 1.8em;
      }

      .page-789win111__guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-789win111__guide-step-number {
        margin-bottom: 10px;
      }

      .page-789win111__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

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

      .page-789win111 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789win111__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-789win111__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-789win111__faq-answer {
        padding: 0 10px;
      }
      .page-789win111__faq-item.active .page-789win111__faq-answer {
        padding: 15px 10px !important;
      }
    }
  