
    :root {
      --page-365bet-primary-color: #e44d26; /* Cam đậm */
      --page-365bet-secondary-color: #f7a73a; /* Cam nhạt */
      --page-365bet-accent-color: #4CAF50; /* Xanh lá cây */
      --page-365bet-dark-bg: #1a1a1a; /* Nền tối */
      --page-365bet-light-bg: #2a2a2a; /* Nền nhạt hơn */
      --page-365bet-text-color: #ffffff; /* Chữ trắng */
      --page-365bet-text-secondary: #cccccc; /* Chữ xám nhạt */
      --page-365bet-border-color: #3a3a3a; /* Màu viền */
      --page-365bet-button-hover: #ff6f3c; /* Màu nút hover */
    }

    .page-365bet {
      font-family: 'Arial', sans-serif;
      color: var(--page-365bet-text-color);
      background-color: var(--page-365bet-dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Adjust for fixed header, 10px for visual spacing */
    }

    .page-365bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-365bet-light-bg);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-365bet__section--dark {
      background-color: var(--page-365bet-dark-bg);
    }

    .page-365bet__section-title {
      text-align: center;
      color: var(--page-365bet-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-365bet__section-subtitle {
      text-align: center;
      color: var(--page-365bet-secondary-color);
      margin-bottom: 40px;
      font-size: 1.2em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-365bet__hero-section {
      background: linear-gradient(135deg, var(--page-365bet-dark-bg), #000);
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 0;
      margin-bottom: 0;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-365bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-365bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-365bet__hero-title {
      font-size: 3.5em;
      color: var(--page-365bet-primary-color);
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
      line-height: 1.1;
    }

    .page-365bet__hero-description {
      font-size: 1.3em;
      color: var(--page-365bet-text-secondary);
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-365bet__cta-button {
      display: inline-block;
      background-color: var(--page-365bet-accent-color);
      color: var(--page-365bet-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-365bet__cta-button:hover {
      background-color: var(--page-365bet-button-hover);
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-365bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-365bet__floating-button {
      background-color: var(--page-365bet-primary-color);
      color: var(--page-365bet-text-color);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-365bet__floating-button--login {
      background-color: var(--page-365bet-secondary-color);
    }

    .page-365bet__floating-button:hover {
      background-color: var(--page-365bet-button-hover);
      transform: translateY(-2px);
    }

    .page-365bet__floating-button--login:hover {
      background-color: #fcae4b;
    }

    /* Product Display */
    .page-365bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-365bet__product-card {
      background-color: var(--page-365bet-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-365bet-border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-365bet__product-card:hover {
      transform: translateY(-5px);
    }

    .page-365bet__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-365bet__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

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

    .page-365bet__product-title {
      font-size: 1.5em;
      color: var(--page-365bet-primary-color);
      margin-bottom: 10px;
    }

    .page-365bet__product-description {
      font-size: 0.95em;
      color: var(--page-365bet-text-secondary);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-365bet__product-button {
      background-color: var(--page-365bet-secondary-color);
      color: var(--page-365bet-text-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .page-365bet__product-button:hover {
      background-color: var(--page-365bet-button-hover);
    }

    /* Promotion Section */
    .page-365bet__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-365bet__promotion-card {
      background-color: var(--page-365bet-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-365bet-border-color);
    }

    .page-365bet__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-365bet__promotion-image-wrapper {
      width: 100%;
      height: 180px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-365bet__promotion-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-365bet__promotion-content {
      padding: 20px;
    }

    .page-365bet__promotion-title {
      font-size: 1.4em;
      color: var(--page-365bet-accent-color);
      margin-bottom: 10px;
    }

    .page-365bet__promotion-description {
      font-size: 0.95em;
      color: var(--page-365bet-text-secondary);
      margin-bottom: 15px;
    }

    .page-365bet__promotion-details {
      color: var(--page-365bet-primary-color);
      font-weight: bold;
      font-size: 0.9em;
    }

    /* Why Choose Us Section */
    .page-365bet__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-365bet__feature-item {
      text-align: center;
      padding: 25px;
      background-color: var(--page-365bet-dark-bg);
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-365bet-border-color);
    }

    .page-365bet__feature-icon-wrapper {
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Ensure icon wrapper has a consistent height */
      width: 80px; /* Ensure icon wrapper has a consistent width */
      margin-left: auto;
      margin-right: auto;
      overflow: hidden;
    }

    .page-365bet__feature-icon {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      max-height: 80px;
      max-width: 80px;
    }

    .page-365bet__feature-title {
      font-size: 1.3em;
      color: var(--page-365bet-primary-color);
      margin-bottom: 10px;
    }

    .page-365bet__feature-description {
      font-size: 0.9em;
      color: var(--page-365bet-text-secondary);
    }

    /* Payment and Provider Section */
    .page-365bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-365bet__logo-item {
      background-color: #000;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-365bet-border-color);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Consistent height for logo items */
      width: 100%;
      box-sizing: border-box;
    }

    .page-365bet__logo-image {
      max-width: 100%;
      max-height: 70px; /* Limit image height within item */
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-365bet__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-365bet__faq-item {
      background-color: var(--page-365bet-dark-bg);
      border: 1px solid var(--page-365bet-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-365bet__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-365bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-365bet-text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-365bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-365bet-primary-color);
    }

    .page-365bet__faq-item.active .page-365bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
      color: var(--page-365bet-accent-color);
    }

    .page-365bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-365bet-text-secondary);
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-365bet__section {
        padding: 30px 15px;
      }

      .page-365bet__section-title {
        font-size: 2em;
      }

      .page-365bet__hero-section {
        padding: 40px 15px;
      }

      .page-365bet__hero-title {
        font-size: 2.5em;
      }

      .page-365bet__hero-description {
        font-size: 1.1em;
      }

      .page-365bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-365bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal for mobile */
        width: calc(100% - 30px);
        justify-content: center;
        gap: 8px;
      }
      
      .page-365bet__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-365bet__product-grid,
      .page-365bet__promotion-grid,
      .page-365bet__features-grid,
      .page-365bet__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-365bet__product-image-wrapper,
      .page-365bet__promotion-image-wrapper {
        height: 150px;
      }

      .page-365bet__product-title,
      .page-365bet__promotion-title {
        font-size: 1.3em;
      }

      .page-365bet__product-description,
      .page-365bet__promotion-description,
      .page-365bet__feature-description {
        font-size: 0.85em;
      }

      .page-365bet__feature-item {
        padding: 20px;
      }

      .page-365bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px;
      }

      .page-365bet__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-365bet__faq-question h3 {
        font-size: 1em;
      }

      .page-365bet__faq-answer {
        padding: 0 15px;
      }

      .page-365bet__faq-item.active .page-365bet__faq-answer {
        padding: 15px !important;
      }
    }

    /* Ensure all images are responsive and their containers are optimized */
    .page-365bet img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-365bet__product-image-wrapper,
    .page-365bet__promotion-image-wrapper,
    .page-365bet__feature-icon-wrapper,
    .page-365bet__logo-item {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
    }

    /* Word wrap for all content to prevent overflow */
    .page-365bet p,
    .page-365bet h1,
    .page-365bet h2,
    .page-365bet h3,
    .page-365bet h4,
    .page-365bet h5,
    .page-365bet h6,
    .page-365bet span,
    .page-365bet div {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  