
    .page-789-bed {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for betting site */
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body has header offset */
    }

    .page-789-bed__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789-bed__section-title {
      font-size: 2.5em;
      color: #f39c12; /* Accent color */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      position: relative;
      padding-bottom: 10px;
    }

    .page-789-bed__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c; /* Secondary accent color */
      border-radius: 2px;
    }

    .page-789-bed__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-789-bed__content-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Buttons */
    .page-789-bed__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
      box-sizing: border-box;
    }

    .page-789-bed__button--primary {
      background-color: #f39c12;
      color: #1a1a2e;
    }

    .page-789-bed__button--primary:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789-bed__button--secondary {
      background-color: transparent;
      color: #f39c12;
      border: 2px solid #f39c12;
    }

    .page-789-bed__button--secondary:hover {
      background-color: #f39c12;
      color: #1a1a2e;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789-bed__button--external {
      background-color: #e74c3c;
      color: #fff;
      border: none;
      margin-left: 15px;
    }
    .page-789-bed__button--external:hover {
      background-color: #c0392b;
    }

    /* Hero Section */
    .page-789-bed__hero-section {
      position: relative;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-789-bed__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%; /* Image responsiveness */
    }

    .page-789-bed__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2;
    }

    .page-789-bed__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-789-bed__hero-title {
      font-size: 3.5em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-789-bed__hero-description {
      font-size: 1.3em;
      color: #ccc;
      margin-bottom: 30px;
    }

    .page-789-bed__hero-cta-buttons .page-789-bed__button {
      margin: 0 10px;
    }

    /* Product Section */
    .page-789-bed__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center product items */
    }

    .page-789-bed__product-item {
      background-color: #2c3e50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      max-width: 350px; /* Limit max width for larger screens */
      box-sizing: border-box;
    }

    .page-789-bed__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-789-bed__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-789-bed__product-name {
      font-size: 1.8em;
      color: #f39c12;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-789-bed__product-description {
      font-size: 1em;
      color: #ccc;
      padding: 0 15px;
    }

    .page-789-bed__product-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Promotion Section */
    .page-789-bed__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-789-bed__promo-item {
      background-color: #2c3e50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      max-width: 400px;
      box-sizing: border-box;
    }

    .page-789-bed__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-789-bed__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-789-bed__promo-title {
      font-size: 1.6em;
      color: #f39c12;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-789-bed__promo-description {
      font-size: 1em;
      color: #ccc;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-789-bed__promo-link {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 8px 20px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-789-bed__promo-link:hover {
      background-color: #c0392b;
    }

    /* Features Section */
    .page-789-bed__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 30px auto 0 auto;
      max-width: 1000px;
    }

    .page-789-bed__feature-item {
      background-color: #2c3e50;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-789-bed__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-789-bed__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-789-bed__feature-title {
      font-size: 1.5em;
      color: #f39c12;
      margin-bottom: 10px;
    }

    .page-789-bed__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-789-bed__faq-container {
      max-width: 900px;
      margin: 30px auto 0 auto;
    }

    .page-789-bed__faq-item {
      background-color: #2c3e50;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-789-bed__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #34495e;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-789-bed__faq-question:hover {
      background-color: #49607a;
    }

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

    .page-789-bed__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #f39c12;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

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

    .page-789-bed__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

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

    .page-789-bed__faq-answer p {
      margin: 0;
      color: #ccc;
      font-size: 1em;
    }

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

    .page-789-bed__button--register,
    .page-789-bed__button--login {
      width: 120px; /* Fixed width for floating buttons */
      padding: 10px 15px;
      font-size: 1em;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789-bed__button--register {
      background-color: #f39c12;
      color: #1a1a2e;
    }

    .page-789-bed__button--register:hover {
      background-color: #e67e22;
    }

    .page-789-bed__button--login {
      background-color: #3498db;
      color: #fff;
    }

    .page-789-bed__button--login:hover {
      background-color: #2980b9;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789-bed__section {
        padding: 30px 15px;
      }

      .page-789-bed__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-789-bed__hero-title {
        font-size: 2.5em;
      }

      .page-789-bed__hero-description {
        font-size: 1.1em;
      }

      .page-789-bed__hero-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .page-789-bed__hero-cta-buttons .page-789-bed__button {
        margin: 0;
        width: 100%;
      }

      .page-789-bed__product-grid,
      .page-789-bed__promo-grid,
      .page-789-bed__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-789-bed__product-item,
      .page-789-bed__promo-item,
      .page-789-bed__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-789-bed__feature-list {
        padding: 0 !important;
      }

      .page-789-bed__feature-item .page-789-bed__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-789-bed__faq-answer {
        padding: 0 15px !important; /* Adjusted for mobile */
      }
      .page-789-bed__faq-item.active .page-789-bed__faq-answer {
        padding: 15px !important; /* Adjusted for mobile */
      }
      .page-789-bed__faq-question {
        padding: 12px 15px;
      }
      .page-789-bed__faq-question h3 {
        font-size: 1.1em;
      }
      .page-789-bed__faq-toggle {
        font-size: 1.5em;
      }

      .page-789-bed__button--external {
        margin-left: 0;
        margin-top: 15px;
      }
      .page-789-bed__product-cta .page-789-bed__button {
        width: 100%;
      }

      .page-789-bed__floating-buttons {
        flex-direction: row; /* Buttons side-by-side on mobile */
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        right: auto; /* Override right: 20px */
        width: calc(100% - 40px); /* Adjust width to fit screen */
        justify-content: space-around;
      }

      .page-789-bed__button--register,
      .page-789-bed__button--login {
        width: 48%; /* Each button takes almost half width */
        font-size: 0.9em;
        padding: 10px 5px;
      }
    }

    @media (max-width: 480px) {
      .page-789-bed__hero-title {
        font-size: 2em;
      }
      .page-789-bed__hero-description {
        font-size: 1em;
      }
      .page-789-bed__section-title {
        font-size: 1.8em;
      }
    }
  