
    :root {
      --page-456wi-primary-color: #e44d26; /* Cam đỏ */
      --page-456wi-secondary-color: #333333; /* Xám đen */
      --page-456wi-accent-color: #ffcc00; /* Vàng */
      --page-456wi-text-color: #ffffff; /* Trắng */
      --page-456wi-dark-bg: #1a1a1a; /* Nền rất tối */
      --page-456wi-light-bg: #2a2a2a; /* Nền hơi sáng hơn */
      --page-456wi-border-color: #444444;
      --page-456wi-hover-color: #ff9900; /* Cam sáng khi hover */
    }

    .page-456wi {
      font-family: 'Arial', sans-serif;
      color: var(--page-456wi-text-color);
      background-color: var(--page-456wi-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-456wi__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-456wi__hero-section {
      text-align: center;
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
      padding-bottom: 60px;
      background-image: url('[GALLERY:hero:1920x1080:456wi,hero,banner,gaming]');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 60vh;
    }

    .page-456wi__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 1;
    }

    .page-456wi__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-456wi__brand-title {
      font-size: 3.5em;
      color: var(--page-456wi-primary-color);
      margin-bottom: 10px;
      text-shadow: 0 0 10px rgba(228, 77, 38, 0.7);
      font-weight: bold;
    }

    .page-456wi__slogan {
      font-size: 1.5em;
      color: var(--page-456wi-accent-color);
      margin-bottom: 30px;
    }

    .page-456wi__buttons-container {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-456wi__button {
      background-color: var(--page-456wi-primary-color);
      color: var(--page-456wi-text-color);
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-456wi__button:hover {
      background-color: var(--page-456wi-hover-color);
      transform: translateY(-2px);
    }

    .page-456wi__title {
      font-size: 2.5em;
      color: var(--page-456wi-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-456wi__text-block p {
      margin-bottom: 15px;
      color: #ccc;
    }

    .page-456wi__text-block strong {
      color: var(--page-456wi-accent-color);
    }

    .page-456wi__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-456wi__game-card {
      background-color: var(--page-456wi-light-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

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

    .page-456wi__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-456wi-secondary-color);
    }

    .page-456wi__game-card-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
    }

    .page-456wi__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-456wi__game-card-title {
      font-size: 1.4em;
      color: var(--page-456wi-accent-color);
      margin-bottom: 10px;
    }

    .page-456wi__game-card-description {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-456wi__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-456wi__promotion-card {
      background-color: var(--page-456wi-light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

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

    .page-456wi__promotion-card-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      background-color: var(--page-456wi-secondary-color);
    }

    .page-456wi__promotion-card-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      max-width: 100%;
    }

    .page-456wi__promotion-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-456wi__promotion-card-title {
      font-size: 1.5em;
      color: var(--page-456wi-primary-color);
      margin-bottom: 10px;
    }

    .page-456wi__promotion-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-456wi__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-456wi__list-item {
      background-color: var(--page-456wi-light-bg);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-456wi__list-item-icon {
      flex-shrink: 0;
      width: 60px; /* Min size 200x200, so this icon will be a larger image cropped/scaled */
      height: 60px;
      border-radius: 50%;
      background-color: var(--page-456wi-primary-color);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      color: var(--page-456wi-text-color);
      font-weight: bold;
    }

    .page-456wi__list-item-content h3 {
      font-size: 1.3em;
      color: var(--page-456wi-accent-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-456wi__list-item-content p {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 0;
    }

    .page-456wi__faq-container {
      margin-top: 40px;
    }

    .page-456wi__faq-item {
      background-color: var(--page-456wi-light-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-456wi-border-color);
    }

    .page-456wi__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-456wi-secondary-color);
      color: var(--page-456wi-text-color);
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
    }

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

    .page-456wi__faq-item.active .page-456wi__faq-question {
      border-bottom-color: var(--page-456wi-border-color);
    }

    .page-456wi__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-456wi-accent-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-456wi__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-456wi-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

    .page-456wi__faq-item.active .page-456wi__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, or just rotate */
      color: var(--page-456wi-text-color);
    }

    .page-456wi__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

    .page-456wi__faq-item.active .page-456wi__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 20px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-456wi__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-456wi__floating-button {
      background-color: var(--page-456wi-primary-color);
      color: var(--page-456wi-text-color);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
    }

    .page-456wi__floating-button--login {
      background-color: var(--page-456wi-accent-color);
      color: var(--page-456wi-secondary-color);
    }

    .page-456wi__floating-button:hover {
      background-color: var(--page-456wi-hover-color);
      transform: translateY(-3px);
    }
    .page-456wi__floating-button--login:hover {
      background-color: #ffd700;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-456wi__brand-title {
        font-size: 2.8em;
      }

      .page-456wi__slogan {
        font-size: 1.2em;
      }

      .page-456wi__title {
        font-size: 2em;
      }

      .page-456wi__game-grid,
      .page-456wi__promotion-grid,
      .page-456wi__list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-456wi__game-card-image-wrapper,
      .page-456wi__promotion-card-image-wrapper {
        height: 180px;
      }

      .page-456wi__section {
        padding: 30px 15px;
      }

      .page-456wi__list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
      }

      .page-456wi__list-item-icon {
        margin-bottom: 10px;
      }

      .page-456wi__list-item-content h3 {
        font-size: 1.2em;
      }

      .page-456wi__list-item-content p {
        font-size: 0.85em;
      }

      .page-456wi__faq-question {
        padding: 12px 15px;
      }

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

      .page-456wi__faq-answer {
        padding: 0 15px;
      }

      .page-456wi__faq-item.active .page-456wi__faq-answer {
        padding: 15px 15px !important;
      }

      .page-456wi__floating-buttons {
        bottom: 15px;
        gap: 10px;
      }

      .page-456wi__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      
      /* Image responsive */
      .page-456wi__game-card-image,
      .page-456wi__promotion-card-image {
        max-width: 100%;
        height: auto;
      }

      .page-456wi__game-card-image-wrapper,
      .page-456wi__promotion-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .page-456wi__list-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 mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-456wi__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-456wi__brand-title {
        font-size: 2.2em;
      }
      .page-456wi__slogan {
        font-size: 1em;
      }
      .page-456wi__floating-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        bottom: 10px;
      }
      .page-456wi__floating-button {
        width: 180px; /* Make buttons wider for easier tap */
        text-align: center;
      }
    }
  