
    .page-18-bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-18-bet__header-branding {
      text-align: center;
      padding: 15px 10px;
      background-color: #004d40; /* Dark teal */
      color: #fff;
      font-size: 2.2em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-18-bet__header-branding h1 {
      margin: 0;
      font-size: 1.2em; /* Adjusted for mobile-first, can be larger on desktop */
      pointer-events: none;
    }

    @media (min-width: 769px) {
      .page-18-bet__header-branding h1 {
        font-size: 2.2em;
      }
    }

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

    .page-18-bet__floating-button {
      background-color: #ffb300; /* Amber */
      color: #333;
      border: none;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: 120px;
      text-align: center;
    }

    .page-18-bet__floating-button:hover {
      background-color: #ffa000;
      transform: translateY(-2px);
    }

    .page-18-bet__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 10px 0 0 0;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .page-18-bet__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
    }

    .page-18-bet__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 10px;
    }

    .page-18-bet__hero-content h2 {
      font-size: 1.8em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #ffb300; /* Amber */
    }

    .page-18-bet__hero-content p {
      font-size: 1em;
      margin-bottom: 20px;
    }

    .page-18-bet__section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-18-bet__section-title {
      text-align: center;
      color: #004d40; /* Dark teal */
      margin-bottom: 25px;
      font-size: 1.8em;
      border-bottom: 2px solid #ffb300; /* Amber */
      display: inline-block;
      padding-bottom: 8px;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .page-18-bet__product-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 20px;
    }

    @media (min-width: 600px) {
      .page-18-bet__product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 992px) {
      .page-18-bet__product-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .page-18-bet__product-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .page-18-bet__product-item:hover {
      transform: translateY(-5px);
    }

    .page-18-bet__product-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px; /* Fixed height for consistency */
    }

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

    .page-18-bet__product-info {
      padding: 15px;
    }

    .page-18-bet__product-info h3 {
      margin-top: 0;
      color: #004d40; /* Dark teal */
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-18-bet__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-18-bet__promotion-item {
      background-color: #e0f2f1; /* Light teal */
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-18-bet__promotion-icon {
      width: 60px;
      height: 60px;
      min-width: 60px;
      min-height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-18-bet__promotion-content h4 {
      margin-top: 0;
      color: #004d40;
      font-size: 1.1em;
      margin-bottom: 5px;
    }

    .page-18-bet__promotion-content p {
      margin-bottom: 0;
      font-size: 0.9em;
      color: #444;
    }

    .page-18-bet__about-content {
      font-size: 1em;
      color: #555;
    }

    .page-18-bet__about-content ul {
      list-style: disc;
      padding-left: 20px;
      margin-top: 15px;
    }

    .page-18-bet__about-content li {
      margin-bottom: 8px;
      box-sizing: border-box !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-18-bet__faq-section {
      background-color: #fff;
      padding: 20px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }

    .page-18-bet__faq-item {
      border-bottom: 1px solid #eee;
      padding: 10px 0;
    }

    .page-18-bet__faq-item:last-child {
      border-bottom: none;
    }

    .page-18-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
    }

    .page-18-bet__faq-question:hover {
      background-color: #f0f0f0;
      border-radius: 4px;
      padding: 10px;
      margin: -10px;
    }

    .page-18-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #004d40;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-18-bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffb300;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-18-bet__faq-item.active .page-18-bet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-18-bet__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;
      color: #555;
      font-size: 0.95em;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-18-bet {
        padding-top: var(--header-offset, 122px);
      }

      .page-18-bet__header-branding {
        font-size: 1.8em;
      }

      .page-18-bet__hero-content h2 {
        font-size: 1.5em;
      }

      .page-18-bet__hero-content p {
        font-size: 0.9em;
      }

      .page-18-bet__section-title {
        font-size: 1.5em;
      }

      .page-18-bet__product-grid {
        grid-template-columns: 1fr;
      }

      .page-18-bet__product-image-container {
        height: 180px;
      }

      .page-18-bet__promotion-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        gap: 10px;
      }

      .page-18-bet__promotion-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
      }

      .page-18-bet__promotion-content h4 {
        font-size: 1em;
      }

      .page-18-bet__promotion-content p {
        font-size: 0.85em;
      }

      .page-18-bet__about-content {
        font-size: 0.9em;
      }

      .page-18-bet__about-content ul,
      .page-18-bet__promotion-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-18-bet__about-content li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Adjust padding for list items */
      }

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

      .page-18-bet__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.9em;
      }

      .page-18-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-18-bet__floating-button {
        padding: 10px 15px;
        width: 100px;
        font-size: 0.9em;
      }

      /* Image responsive for mobile */
      .page-18-bet img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  