
    /* Global styles for page-1bet */
    .page-1bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-1bet__section--dark {
      background-color: #2a0000; /* Dark red/brown for contrast */
      color: #ffffff;
    }

    .page-1bet__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #cc0000; /* Red for emphasis */
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }
    .page-1bet__section--dark .page-1bet__section-title {
        color: #ffdd00; /* Yellow for contrast on dark background */
    }

    .page-1bet__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }
    .page-1bet__section--dark .page-1bet__text {
        color: #e0e0e0;
    }

    /* Hero Section */
    .page-1bet__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:betting,casino,mobile,vietnam,1bet]');
      background-size: cover;
      background-position: center;
      color: #ffffff;
      padding: 100px 20px; /* Adjusted padding to ensure visibility and some top space */
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 10px; /* Small top padding as body handles main offset */
    }
    .page-1bet__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
        z-index: 1;
    }
    .page-1bet__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-1bet__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffdd00; /* Yellow for brand keyword */
      text-transform: uppercase;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-1bet__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: #ffffff;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-1bet__promotion-link {
      display: inline-block;
      background-color: #cc0000;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }

    .page-1bet__promotion-link:hover {
      background-color: #990000;
    }

    /* Floating Buttons */
    .page-1bet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    }

    .page-1bet__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      color: #ffffff; /* Ensure good contrast */
    }

    .page-1bet__floating-button--register {
      background-color: #ffdd00; /* Yellow for register */
      color: #333; /* Dark text for contrast on yellow */
    }

    .page-1bet__floating-button--register:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-1bet__floating-button--login {
      background-color: #cc0000; /* Red for login */
      color: #ffffff; /* White text for contrast on red */
    }

    .page-1bet__floating-button--login:hover {
      background-color: #990000;
      transform: translateY(-2px);
    }

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

    .page-1bet__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

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

    .page-1bet__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-1bet__game-title {
      font-size: 1.4em;
      color: #cc0000;
      margin: 15px 10px 10px;
      font-weight: bold;
      text-align: center;
    }

    .page-1bet__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      text-align: center;
    }

    /* Promotions Section */
    .page-1bet__promo-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-1bet__promo-item {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-1bet__promo-icon {
        width: 250px; /* Minimum 200px */
        height: 250px; /* Minimum 200px */
        flex-shrink: 0;
        object-fit: contain;
    }

    .page-1bet__promo-content {
        flex-grow: 1;
    }

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

    .page-1bet__promo-description {
      color: #555;
      font-size: 1em;
    }

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

    .page-1bet__feature-card {
      background-color: #2a0000; /* Dark background from section */
      color: #ffffff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-1bet__feature-icon {
        width: 250px; /* Minimum 200px */
        height: 250px; /* Minimum 200px */
        margin-bottom: 15px;
        object-fit: contain;
    }

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

    .page-1bet__feature-description {
      font-size: 0.95em;
      color: #e0e0e0;
    }

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

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

    .page-1bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-1bet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-1bet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #cc0000;
      margin-left: 15px;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

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

    .page-1bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding 0 to match requirement, will be 20px 15px on active */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      opacity: 0;
    }

    .page-1bet__faq-item.active .page-1bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important; /* Adjusted to 20px 20px for consistency with question */
      opacity: 1;
    }
    .page-1bet__faq-answer p {
        margin-bottom: 0; /* Remove default paragraph margin */
    }

    /* Call to Action Section */
    .page-1bet__cta-button {
      display: inline-block;
      background-color: #cc0000;
      color: #ffffff;
      padding: 15px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 30px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .page-1bet__cta-button:hover {
      background-color: #990000;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-1bet__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-1bet__section {
        padding: 30px 15px;
      }

      .page-1bet__game-grid,
      .page-1bet__features-grid {
        grid-template-columns: 1fr;
      }

      .page-1bet__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }
      .page-1bet__promo-icon {
          margin-bottom: 15px;
      }

      /* List item responsive requirements */
      .page-1bet__game-card,
      .page-1bet__promo-item,
      .page-1bet__feature-card,
      .page-1bet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-1bet__game-card .page-1bet__game-description,
      .page-1bet__promo-item .page-1bet__promo-description,
      .page-1bet__feature-card .page-1bet__feature-description,
      .page-1bet__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      /* Image responsive requirements */
      .page-1bet__game-image,
      .page-1bet__promo-icon,
      .page-1bet__feature-icon {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-1bet__hero-section {
          min-height: 400px;
          padding: 80px 15px;
      }
      .page-1bet__faq-question {
          padding: 15px 15px;
      }
      .page-1bet__faq-question h3 {
          font-size: 1.1em;
      }
      .page-1bet__faq-answer {
          padding: 0 15px;
      }
      .page-1bet__faq-item.active .page-1bet__faq-answer {
          padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
        .page-1bet__hero-title {
            font-size: 2em;
        }
        .page-1bet__hero-subtitle {
            font-size: 1.2em;
        }
        .page-1bet__promotion-link {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-1bet__floating-button {
            font-size: 1em;
            padding: 10px 0;
        }
        .page-1bet__section-title {
            font-size: 1.8em;
        }
        .page-1bet__game-title {
            font-size: 1.2em;
        }
        .page-1bet__promo-title {
            font-size: 1.3em;
        }
        .page-1bet__feature-title {
            font-size: 1.1em;
        }
        .page-1bet__cta-button {
            font-size: 1.1em;
            padding: 12px 25px;
        }
    }
  