
    /* Global styles for the page-1-bet scope */
    .page-1-bet {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer/buttons */
      padding-top: 10px; /* Small decorative top padding, assuming body handles shared-header offset */
    }

    .page-1-bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-1-bet__section--dark {
      background-color: #222;
    }

    .page-1-bet__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-1-bet__section-subtitle {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
    }

    .page-1-bet__text-content {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    .page-1-bet__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

    .page-1-bet__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-1-bet__button--secondary {
      background-color: #444;
      color: #ffcc00;
      border: 1px solid #ffcc00;
    }

    .page-1-bet__button--secondary:hover {
      background-color: #555;
      color: #fff;
    }

    /* Hero Section */
    .page-1-bet__hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:betting,casino,vietnam]') center center no-repeat;
      background-size: cover;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      color: #fff;
      text-align: center;
      position: relative;
    }

    .page-1-bet__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

    .page-1-bet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: #fff;
    }

    .page-1-bet__hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    /* Floating Buttons */
    .page-1-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      max-width: 350px;
      justify-content: center;
    }

    .page-1-bet__floating-button {
      flex: 1;
      text-align: center;
      padding: 15px 10px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      transition: transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      border: none; /* Ensure no default button border */
      cursor: pointer;
    }

    .page-1-bet__floating-button--register {
      background-color: #ffcc00;
      color: #1a1a1a;
    }

    .page-1-bet__floating-button--login {
      background-color: #444;
      color: #ffcc00;
      border: 1px solid #ffcc00;
    }

    .page-1-bet__floating-button:hover {
      transform: translateY(-3px);
    }

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

    .page-1-bet__game-card {
      background-color: #2a2a2a;
      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;
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-1-bet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    .page-1-bet__game-card-image {
      width: 100%;
      max-width: 400px; /* Ensure images are centered and not too wide */
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      max-height: 250px;
    }

    .page-1-bet__game-card-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-1-bet__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* Promotions */
    .page-1-bet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-1-bet__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-1-bet__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-1-bet__promo-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-1-bet__promo-card-content {
      padding: 20px;
    }

    .page-1-bet__promo-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

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

    .page-1-bet__feature-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .page-1-bet__feature-item:hover {
      background-color: #3a3a3a;
    }

    .page-1-bet__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-1-bet__feature-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-1-bet__feature-description {
      font-size: 0.9em;
      color: #ccc;
    }

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

    .page-1-bet__logo-item {
      padding: 15px;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: transform 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-sizing: border-box;
    }

    .page-1-bet__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-1-bet__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-1-bet__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-1-bet__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .page-1-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: #ffcc00;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-1-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-1-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-1-bet__faq-item.active .page-1-bet__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-1-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
      font-size: 0.95em;
      text-align: left;
    }

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

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

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

      .page-1-bet__hero-section {
        padding: 60px 15px;
        min-height: 400px;
      }

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

      .page-1-bet__hero-subtitle {
        font-size: 1.2em;
      }

      .page-1-bet__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-1-bet__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 20px;
      }

      .page-1-bet__floating-buttons {
        bottom: 15px;
        max-width: 90%;
      }

      .page-1-bet__floating-button {
        padding: 12px 8px;
        font-size: 1em;
      }

      .page-1-bet__game-categories,
      .page-1-bet__promo-grid,
      .page-1-bet__features-grid,
      .page-1-bet__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-1-bet__game-card,
      .page-1-bet__promo-card,
      .page-1-bet__feature-item,
      .page-1-bet__logo-item {
        margin: 0 auto;
        width: 100%;
        max-width: 350px; /* Constrain width for better readability on small screens */
        box-sizing: border-box !important;
      }

      /* List item mobile responsiveness */
      .page-1-bet__game-categories > div,
      .page-1-bet__promo-grid > div,
      .page-1-bet__features-grid > div,
      .page-1-bet__logo-grid > div {
        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 */
      }

      .page-1-bet__game-card-description,
      .page-1-bet__promo-card-description,
      .page-1-bet__feature-description,
      .page-1-bet__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsiveness for mobile */
      .page-1-bet__game-card-image,
      .page-1-bet__promo-card-image,
      .page-1-bet__feature-icon,
      .page-1-bet__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-1-bet__game-card-image-wrapper,
      .page-1-bet__promo-card-image-wrapper,
      .page-1-bet__feature-icon-wrapper,
      .page-1-bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      
      .page-1-bet__faq-question,
      .page-1-bet__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
    }
  