
    :root {
      --page-1bet-primary-color: #e44d26; /* A vibrant red/orange, common in betting sites */
      --page-1bet-secondary-color: #f7b731; /* A golden yellow for highlights */
      --page-1bet-dark-bg: #1a1a1a;
      --page-1bet-light-bg: #f5f5f5;
      --page-1bet-text-color: #ffffff;
      --page-1bet-text-dark: #333333;
      --page-1bet-border-radius: 8px;
      --page-1bet-spacing-sm: 10px;
      --page-1bet-spacing-md: 20px;
      --page-1bet-spacing-lg: 40px;
    }

    /* Base styles for the page content */
    .page-1bet {
      font-family: 'Arial', sans-serif;
      color: var(--page-1bet-text-dark);
      line-height: 1.6;
      background-color: var(--page-1bet-light-bg);
      overflow-x: hidden; /* Prevent horizontal scroll from fixed buttons */
    }

    .page-1bet__section {
      padding: var(--page-1bet-spacing-lg) var(--page-1bet-spacing-md);
      margin-bottom: var(--page-1bet-spacing-md);
      background-color: #ffffff;
      border-radius: var(--page-1bet-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .page-1bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--page-1bet-spacing-md);
      box-sizing: border-box;
    }

    .page-1bet__h1, .page-1bet__h2, .page-1bet__h3 {
      text-align: center;
      margin-bottom: var(--page-1bet-spacing-lg);
      color: var(--page-1bet-primary-color);
    }
    .page-1bet__section--dark .page-1bet__h1,
    .page-1bet__section--dark .page-1bet__h2,
    .page-1bet__section--dark .page-1bet__h3 {
        color: var(--page-1bet-secondary-color);
    }

    .page-1bet__h1 {
      font-size: 2.5em;
      padding-top: var(--page-1bet-spacing-sm); /* Small padding to offset from potential header, relying on body padding for main offset */
      margin-top: 0;
    }

    .page-1bet__h2 {
      font-size: 2em;
    }

    .page-1bet__h3 {
      font-size: 1.5em;
    }

    .page-1bet__button {
      display: inline-block;
      padding: var(--page-1bet-spacing-sm) var(--page-1bet-spacing-md);
      background-color: var(--page-1bet-primary-color);
      color: var(--page-1bet-text-color);
      text-decoration: none;
      border-radius: var(--page-1bet-border-radius);
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      text-align: center;
    }

    .page-1bet__button:hover {
      background-color: #c0392b; /* Darker shade of primary */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-1bet__hero-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,1bet,vietnam,gaming,online]');
      background-size: cover;
      background-position: center;
      color: var(--page-1bet-text-color);
      text-align: center;
      padding: calc(var(--page-1bet-spacing-lg) * 2) var(--page-1bet-spacing-md);
      margin-bottom: var(--page-1bet-spacing-md);
      border-radius: var(--page-1bet-border-radius);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Ensure sufficient height */
    }

    .page-1bet__hero-title {
      font-size: 3em;
      margin-bottom: var(--page-1bet-spacing-md);
      color: var(--page-1bet-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-1bet__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin-bottom: var(--page-1bet-spacing-lg);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Floating Register/Login Buttons */
    .page-1bet__floating-buttons {
      position: fixed;
      bottom: var(--page-1bet-spacing-md);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: var(--page-1bet-spacing-md);
      z-index: 1000; /* Ensure they are above other content */
    }

    .page-1bet__floating-button {
      padding: var(--page-1bet-spacing-sm) var(--page-1bet-spacing-md);
      border-radius: 50px; /* Pill shape */
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-1bet__floating-button--register {
      background-color: var(--page-1bet-secondary-color);
      color: var(--page-1bet-dark-bg);
    }

    .page-1bet__floating-button--register:hover {
      background-color: #f0a81a;
    }

    .page-1bet__floating-button--login {
      background-color: var(--page-1bet-primary-color);
      color: var(--page-1bet-text-color);
    }

    .page-1bet__floating-button--login:hover {
      background-color: #c0392b;
    }

    /* Game Categories */
    .page-1bet__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-1bet-spacing-md);
      margin-top: var(--page-1bet-spacing-lg);
    }

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

    .page-1bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-1bet__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

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

    .page-1bet__game-card-content {
      padding: var(--page-1bet-spacing-md);
    }

    .page-1bet__game-card-title {
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: var(--page-1bet-spacing-sm);
      color: var(--page-1bet-secondary-color);
    }

    .page-1bet__game-card-description {
      font-size: 0.9em;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Promotions Section */
    .page-1bet__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--page-1bet-spacing-md);
      margin-top: var(--page-1bet-spacing-lg);
    }

    .page-1bet__promotion-card {
      background-color: var(--page-1bet-light-bg);
      border: 1px solid #eee;
      border-radius: var(--page-1bet-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-1bet__promotion-card:hover {
      transform: translateY(-3px);
    }

    .page-1bet__promotion-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

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

    .page-1bet__promotion-content {
      padding: var(--page-1bet-spacing-md);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-1bet__promotion-title {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: var(--page-1bet-spacing-sm);
      color: var(--page-1bet-primary-color);
    }

    .page-1bet__promotion-description {
      font-size: 0.95em;
      color: var(--page-1bet-text-dark);
      margin-bottom: var(--page-1bet-spacing-md);
    }

    /* Why Choose Us Section */
    .page-1bet__feature-list {
      list-style: none;
      padding: 0;
      margin-top: var(--page-1bet-spacing-lg);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-1bet-spacing-md);
    }

    .page-1bet__feature-item {
      background-color: var(--page-1bet-dark-bg);
      color: var(--page-1bet-text-color);
      padding: var(--page-1bet-spacing-md);
      border-radius: var(--page-1bet-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }
    .page-1bet__feature-item:hover {
      background-color: #2c2c2c;
    }

    .page-1bet__feature-icon {
      margin-bottom: var(--page-1bet-spacing-sm);
      width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      max-width: 100%;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1bet__feature-title {
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: var(--page-1bet-spacing-sm);
      color: var(--page-1bet-secondary-color);
    }

    .page-1bet__feature-description {
      font-size: 0.9em;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Payment and Provider Sections */
    .page-1bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-1bet-spacing-md);
      margin-top: var(--page-1bet-spacing-lg);
      justify-items: center; /* Center items in grid */
      align-items: center;
    }

    .page-1bet__logo-item {
      background-color: #ffffff;
      padding: var(--page-1bet-spacing-md);
      border-radius: var(--page-1bet-border-radius);
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      box-sizing: border-box;
    }

    .page-1bet__logo-image {
      max-width: 100%;
      max-height: 80px; /* Ensure logos fit */
      height: auto;
      object-fit: contain;
      width: auto; /* Allow image to scale down */
    }

    /* FAQ Section */
    .page-1bet__faq-list {
      margin-top: var(--page-1bet-spacing-lg);
      list-style: none;
      padding: 0;
    }

    .page-1bet__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: var(--page-1bet-border-radius);
      margin-bottom: var(--page-1bet-spacing-sm);
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-1bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--page-1bet-spacing-md);
      cursor: pointer;
      user-select: none;
      background-color: var(--page-1bet-primary-color);
      color: var(--page-1bet-text-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-1bet__faq-question:hover {
      background-color: #c0392b;
    }

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

    .page-1bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-1bet__faq-item.active .page-1bet__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    .page-1bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--page-1bet-spacing-md);
      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-1bet-text-dark);
      background-color: var(--page-1bet-light-bg);
    }

    .page-1bet__faq-item.active .page-1bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: var(--page-1bet-spacing-md) !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-1bet__h1 {
        font-size: 2em;
      }
      .page-1bet__h2 {
        font-size: 1.6em;
      }
      .page-1bet__hero-title {
        font-size: 2.2em;
      }
      .page-1bet__hero-description {
        font-size: 1em;
      }
      .page-1bet__section {
        padding: var(--page-1bet-spacing-md) var(--page-1bet-spacing-sm);
      }
      .page-1bet__container {
        padding: 0 var(--page-1bet-spacing-sm);
      }

      /* Floating buttons for mobile */
      .page-1bet__floating-buttons {
        bottom: var(--page-1bet-spacing-sm);
        gap: var(--page-1bet-spacing-sm);
        width: calc(100% - var(--page-1bet-spacing-md) * 2); /* Adjust width to fit container */
        max-width: 100%;
      }
      .page-1bet__floating-button {
        flex: 1; /* Distribute space evenly */
        padding: var(--page-1bet-spacing-sm) 0; /* Adjust padding for smaller screens */
      }

      /* Image responsiveness */
      .page-1bet__game-card-image-wrapper,
      .page-1bet__promotion-image-wrapper {
        height: 180px; /* Adjust height for mobile */
      }
      .page-1bet__game-card-image,
      .page-1bet__promotion-image,
      .page-1bet__feature-icon,
      .page-1bet__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-1bet__game-card-image-wrapper,
      .page-1bet__promotion-image-wrapper,
      .page-1bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* List item mobile responsiveness */
      .page-1bet__feature-list,
      .page-1bet__faq-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-1bet__feature-item,
      .page-1bet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: var(--page-1bet-spacing-md) !important; /* Adjust padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-1bet__game-categories-grid,
      .page-1bet__promotion-grid,
      .page-1bet__logo-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
      }
      .page-1bet__faq-question {
          padding: var(--page-1bet-spacing-sm) var(--page-1bet-spacing-md);
      }
      .page-1bet__faq-question h3 {
          font-size: 1em;
      }
      .page-1bet__faq-answer {
          padding: var(--page-1bet-spacing-sm) var(--page-1bet-spacing-md);
      }
      .page-1bet__faq-item.active .page-1bet__faq-answer {
          padding: var(--page-1bet-spacing-md) !important;
      }
    }

    @media (max-width: 480px) {
        .page-1bet__hero-title {
            font-size: 1.8em;
        }
        .page-1bet__hero-description {
            font-size: 0.9em;
        }
        .page-1bet__h1 {
            font-size: 1.8em;
        }
        .page-1bet__h2 {
            font-size: 1.4em;
        }
    }
  