
    :root {
      --primary-color: #f7b731; /* Màu vàng cam */
      --secondary-color: #2c3e50; /* Màu xanh đậm */
      --accent-color: #e74c3c; /* Màu đỏ nổi bật */
      --text-color-light: #ecf0f1; /* Màu chữ sáng */
      --text-color-dark: #34495e; /* Màu chữ tối */
      --bg-dark: #1a1a2e; /* Nền tối */
      --bg-medium: #22223b; /* Nền trung bình */
      --button-hover: #ffc947;
    }

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

    .page-8bey-login__header-logo {
      text-align: center;
      padding: 20px 0;
      background-color: var(--bg-medium);
    }

    .page-8bey-login__header-logo h1 {
      color: var(--primary-color);
      font-size: 2.5em;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .page-8bey-login__hero-section {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 10px; /* Small decorative padding, assuming body has offset */
    }

    .page-8bey-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-8bey-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-8bey-login__hero-content h1 {
      color: var(--primary-color);
      font-size: 2.2em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-8bey-login__hero-content p {
      font-size: 1.1em;
      color: var(--text-color-light);
    }

    .page-8bey-login__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-8bey-login__section-title {
      color: var(--primary-color);
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8bey-login__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-8bey-login__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8bey-login__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8bey-login__button:hover {
      background-color: var(--button-hover);
    }

    .page-8bey-login__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 0;
      background-color: rgba(0, 0, 0, 0.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-8bey-login__floating-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      flex: 1;
      margin: 0 10px;
      max-width: 150px;
      text-align: center;
    }

    .page-8bey-login__floating-button--register {
      background-color: var(--accent-color);
      color: var(--text-color-light);
    }

    .page-8bey-login__floating-button:hover {
      background-color: var(--button-hover);
    }
    .page-8bey-login__floating-button--register:hover {
      background-color: #c0392b;
    }

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

    .page-8bey-login__feature-item {
      background-color: var(--bg-medium);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8bey-login__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8bey-login__feature-item img {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-8bey-login__feature-item h3 {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-8bey-login__game-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8bey-login__game-card {
      background-color: var(--bg-medium);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      width: 100%;
      max-width: 320px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8bey-login__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8bey-login__game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8bey-login__game-card-content {
      padding: 20px;
      text-align: center;
    }

    .page-8bey-login__game-card-content h3 {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-8bey-login__promotion-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8bey-login__promotion-item {
      background-color: var(--bg-medium);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-8bey-login__promotion-item img {
      width: 150px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      flex-shrink: 0;
    }

    .page-8bey-login__promotion-content h3 {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-8bey-login__promotion-content p {
      font-size: 0.95em;
      color: var(--text-color-light);
    }

    .page-8bey-login__faq-section {
      background-color: var(--bg-medium);
      padding: 40px 20px;
      margin: 40px auto 0 auto;
      max-width: 1200px;
      border-radius: 8px;
    }

    .page-8bey-login__faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-8bey-login__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8bey-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      color: var(--primary-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8bey-login__faq-question:hover {
      color: var(--button-hover);
    }

    .page-8bey-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: inherit;
    }

    .page-8bey-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8bey-login__faq-item.active .page-8bey-login__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8bey-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: var(--text-color-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 0.95em;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8bey-login__hero-section {
        height: 300px;
      }
      .page-8bey-login__hero-content h1 {
        font-size: 1.8em;
      }
      .page-8bey-login__hero-content p {
        font-size: 1em;
      }
      .page-8bey-login__section {
        padding: 30px 15px;
      }
      .page-8bey-login__section-title {
        font-size: 1.8em;
      }
      .page-8bey-login__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-8bey-login__floating-buttons {
        padding: 10px 0;
      }
      .page-8bey-login__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
        margin: 0 5px;
      }
      .page-8bey-login__features-grid,
      .page-8bey-login__game-categories {
        grid-template-columns: 1fr;
      }
      .page-8bey-login__feature-item,
      .page-8bey-login__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8bey-login__promotion-item {
        flex-direction: column;
        text-align: center;
      }
      .page-8bey-login__promotion-item img {
        width: 100%;
        height: auto;
        max-height: 150px;
      }
      .page-8bey-login__promotion-content {
        padding-top: 15px;
      }
      .page-8bey-login__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }
      .page-8bey-login__faq-answer {
        font-size: 0.9em;
        padding: 0 10px;
      }
      .page-8bey-login__faq-item.active .page-8bey-login__faq-answer {
        padding: 15px 10px !important;
      }
      .page-8bey-login__text-content p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8bey-login__features-grid .page-8bey-login__feature-item,
      .page-8bey-login__game-categories .page-8bey-login__game-card,
      .page-8bey-login__promotion-list .page-8bey-login__promotion-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to ensure content fits */
        padding-right: 15px !important;
        box-sizing: border-box !important;
      }
      .page-8bey-login__promotion-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-8bey-login__header-logo h1 {
        font-size: 2em;
      }
      .page-8bey-login__hero-section {
        height: 250px;
      }
      .page-8bey-login__hero-content h1 {
        font-size: 1.5em;
      }
      .page-8bey-login__hero-content p {
        font-size: 0.9em;
      }
      .page-8bey-login__section-title {
        font-size: 1.6em;
      }
      .page-8bey-login__floating-button {
        max-width: 120px;
      }
    }
  