
    /* Reset và biến cơ bản */
    :root {
      --page-789betlogin__primary-color: #e44d26; /* Cam đậm */
      --page-789betlogin__secondary-color: #f7931e; /* Cam sáng */
      --page-789betlogin__dark-background: #1a1a1a; /* Nền tối */
      --page-789betlogin__light-text: #ffffff; /* Chữ sáng */
      --page-789betlogin__gray-text: #cccccc; /* Chữ xám */
      --page-789betlogin__border-color: #333333; /* Màu viền */
      --page-789betlogin__button-hover: #ff6600; /* Hover button */
      --page-789betlogin__spacing-unit: 20px;
    }

    .page-789betlogin {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789betlogin__light-text);
      background-color: var(--page-789betlogin__dark-background);
      overflow-x: hidden;
      padding-top: 120px; /* Cho desktop, để tránh bị header cố định che */
    }

    @media (max-width: 768px) {
      .page-789betlogin {
        padding-top: 100px; /* Cho mobile */
      }
    }

    /* Các phần chung */
    .page-789betlogin__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--page-789betlogin__spacing-unit);
    }

    .page-789betlogin__section {
      padding: calc(var(--page-789betlogin__spacing-unit) * 2) 0;
      text-align: center;
    }

    .page-789betlogin__section-title {
      font-size: 2.5em;
      color: var(--page-789betlogin__primary-color);
      margin-bottom: var(--page-789betlogin__spacing-unit);
      text-transform: uppercase;
      font-weight: bold;
    }
    
    .page-789betlogin__section-title span {
      color: var(--page-789betlogin__secondary-color);
    }

    .page-789betlogin__text-center {
      text-align: center;
    }

    .page-789betlogin__button {
      display: inline-block;
      background-color: var(--page-789betlogin__primary-color);
      color: var(--page-789betlogin__light-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-789betlogin__button:hover {
      background-color: var(--page-789betlogin__button-hover);
    }

    /* Hero Section */
    .page-789betlogin__hero-section {
      text-align: center;
      padding: var(--page-789betlogin__spacing-unit) 0;
      background-color: #000;
      position: relative;
      overflow: hidden;
    }

    .page-789betlogin__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: var(--page-789betlogin__spacing-unit);
    }

    .page-789betlogin__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain; /* Đảm bảo hình ảnh giữ tỷ lệ và không bị cắt */
    }

    .page-789betlogin__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 var(--page-789betlogin__spacing-unit);
    }

    .page-789betlogin__hero-title {
      font-size: 3em;
      color: var(--page-789betlogin__light-text);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-789betlogin__hero-subtitle {
      font-size: 1.2em;
      color: var(--page-789betlogin__gray-text);
      margin-bottom: var(--page-789betlogin__spacing-unit);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Floating Login/Register Buttons */
    .page-789betlogin__floating-buttons {
      position: fixed;
      bottom: var(--page-789betlogin__spacing-unit);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: var(--page-789betlogin__spacing-unit);
      z-index: 1000;
      width: calc(100% - var(--page-789betlogin__spacing-unit) * 2);
      max-width: 500px;
      justify-content: center;
    }

    .page-789betlogin__floating-button {
      flex: 1;
      padding: 15px 20px;
      font-size: 1.1em;
      white-space: nowrap;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-789betlogin__floating-button--login {
      background-color: var(--page-789betlogin__primary-color);
    }

    .page-789betlogin__floating-button--login:hover {
      background-color: var(--page-789betlogin__button-hover);
    }

    .page-789betlogin__floating-button--register {
      background-color: #28a745; /* Màu xanh lá cây */
    }

    .page-789betlogin__floating-button--register:hover {
      background-color: #218838;
    }

    /* Game Categories */
    .page-789betlogin__game-categories {
      background-color: #0d0d0d;
    }

    .page-789betlogin__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-789betlogin__spacing-unit);
      margin-top: var(--page-789betlogin__spacing-unit);
    }

    .page-789betlogin__game-item {
      background-color: #222;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-789betlogin__light-text);
    }

    .page-789betlogin__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-789betlogin__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 150px; /* Fixed height for consistency */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-789betlogin__game-image {
        max-width: 100%;
        height: auto;
        object-fit: cover; /* Cover the container */
        display: block;
    }

    .page-789betlogin__game-title {
      padding: 15px 10px;
      font-weight: bold;
      font-size: 1.1em;
      color: var(--page-789betlogin__light-text);
    }

    /* Game Providers */
    .page-789betlogin__providers {
      background-color: #1a1a1a;
    }

    .page-789betlogin__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: var(--page-789betlogin__spacing-unit);
      margin-top: var(--page-789betlogin__spacing-unit);
      align-items: center;
      justify-content: center;
    }

    .page-789betlogin__provider-item {
      background-color: #222;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px; /* Ensure logos have enough space */
      transition: transform 0.2s ease;
    }
    
    .page-789betlogin__provider-item:hover {
        transform: scale(1.05);
    }

    .page-789betlogin__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 60px; /* Limit logo height */
      object-fit: contain;
      display: block;
    }

    /* About and How-to Sections */
    .page-789betlogin__content-block {
      background-color: #0d0d0d;
      padding: var(--page-789betlogin__spacing-unit);
      border-radius: 10px;
      text-align: left;
      margin-bottom: var(--page-789betlogin__spacing-unit);
    }

    .page-789betlogin__content-block h3 {
      color: var(--page-789betlogin__secondary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-789betlogin__content-block p {
      margin-bottom: 10px;
      color: var(--page-789betlogin__gray-text);
    }

    .page-789betlogin__content-block ul {
      list-style-type: disc;
      padding-left: 25px;
      color: var(--page-789betlogin__gray-text);
    }

    .page-789betlogin__content-block li {
      margin-bottom: 8px;
    }
    
    .page-789betlogin__content-block a {
        color: var(--page-789betlogin__primary-color);
        text-decoration: none;
    }
    
    .page-789betlogin__content-block a:hover {
        text-decoration: underline;
    }

    /* FAQ Section */
    .page-789betlogin__faq-section {
      background-color: #0d0d0d;
    }

    .page-789betlogin__faq-item {
      background-color: #222;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-789betlogin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid var(--page-789betlogin__border-color);
      transition: background-color 0.3s ease;
    }

    .page-789betlogin__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-789betlogin__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-789betlogin__light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-789betlogin__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-789betlogin__primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-789betlogin__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
      color: var(--page-789betlogin__gray-text);
    }

    .page-789betlogin__faq-item.active .page-789betlogin__faq-answer {
      max-height: 2000px !important; /* Enough to show all content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789betlogin__section-title {
        font-size: 2em;
      }

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

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

      .page-789betlogin__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
      }

      .page-789betlogin__floating-button {
        width: 100%;
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-789betlogin__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      
      .page-789betlogin__game-image-wrapper {
        height: 120px;
      }

      .page-789betlogin__game-title {
        font-size: 1em;
        padding: 10px;
      }

      .page-789betlogin__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }
      
      .page-789betlogin__provider-item {
        min-height: 60px;
      }

      .page-789betlogin__provider-logo {
        max-height: 40px;
      }

      .page-789betlogin__content-block h3 {
        font-size: 1.5em;
      }
      
      .page-789betlogin__faq-question {
        padding: 12px 15px;
      }
      
      .page-789betlogin__faq-question h3 {
        font-size: 1.1em;
      }
      
      .page-789betlogin__faq-answer {
        padding: 15px 15px !important;
      }
    }
    
    /* Ensure all images are responsive */
    .page-789betlogin img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    @media (max-width: 768px) {
        .page-789betlogin img {
            max-width: 100% !important;
            height: auto !important;
        }
    }

  