
    .page-682bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-top: 10px; /* Decorative top padding, assuming body has main offset */
    }

    @media (max-width: 768px) {
      .page-682bet {
        padding-top: var(--header-offset, 122px); /* Fallback for body padding if not present in shared.css */
      }
    }


    /* Hero Section */
    .page-682bet__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient background */
      color: #fff;
      gap: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-682bet__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-682bet__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Highlight color for title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-682bet__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-682bet__hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .page-682bet__hero-button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-682bet__hero-button--primary {
      background-color: #ffcc00;
      color: #1a2a6c;
    }

    .page-682bet__hero-button--primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-682bet__hero-button--secondary {
      background-color: #fdbb2d;
      color: #1a2a6c;
    }

    .page-682bet__hero-button--secondary:hover {
      background-color: #e4a71c;
      transform: translateY(-2px);
    }

    .page-682bet__hero-image-wrapper {
      width: 100%;
      max-width: 600px;
      margin-top: 30px;
      z-index: 1;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

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

    /* General Section Styling */
    .page-682bet__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-682bet__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
    }

    /* Features Section */
    .page-682bet__features-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .page-682bet__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-682bet__feature-item {
      background-color: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .page-682bet__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-682bet__feature-icon {
      width: 100%;
      max-width: 200px; /* Enforce min-size, but allow larger if image is larger */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-682bet__feature-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-682bet__feature-description {
      color: #666;
    }

    /* Products Section */
    .page-682bet__products-section {
      padding: 60px 20px;
      background-color: #f0f8ff;
    }

    .page-682bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-682bet__product-item {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

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

    .page-682bet__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-682bet__product-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin: 20px 15px 10px;
    }

    .page-682bet__product-description {
      color: #666;
      padding: 0 15px 20px;
      flex-grow: 1;
    }

    /* Promo Section */
    .page-682bet__promo-section {
      padding: 60px 20px;
      background-color: #ffe0b2; /* Light orange/yellow background */
    }

    .page-682bet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-682bet__promo-item {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-682bet__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-682bet__promo-image {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-682bet__promo-title {
      font-size: 1.4em;
      color: #b21f1f; /* Reddish color for promotions */
      margin: 20px 15px 10px;
    }

    .page-682bet__promo-description {
      color: #666;
      padding: 0 15px 20px;
      flex-grow: 1;
    }

    /* About Section */
    .page-682bet__about-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-682bet__about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 30px;
    }

    .page-682bet__about-image-wrapper {
      width: 100%;
      max-width: 600px;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

    .page-682bet__about-text {
      max-width: 700px;
      text-align: left;
    }

    .page-682bet__about-text p {
      margin-bottom: 15px;
      color: #555;
      font-size: 1.05em;
    }

    /* FAQ Section */
    .page-682bet__faq-section {
      padding: 60px 20px;
      background-color: #f0f8ff;
    }

    .page-682bet__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-682bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #1a2a6c;
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-682bet__faq-question:hover {
      background-color: #2b3a8d;
    }

    .page-682bet__faq-question-text {
      margin: 0;
      color: #fff;
      font-size: 1em; /* Adjust to match parent font-size */
      pointer-events: none; /* Prevents text from blocking click event */
      flex-grow: 1;
    }

    .page-682bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 30px;
      text-align: center;
      pointer-events: none; /* Prevents icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-682bet__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;
      background-color: #fdfdfd;
      color: #333;
    }

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

    .page-682bet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

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

    .page-682bet__floating-button {
      display: block;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      min-width: 100px;
      font-size: 1.05em;
    }

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

    .page-682bet__floating-button--register:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-682bet__floating-button--login {
      background-color: #fdbb2d;
      color: #1a2a6c;
    }

    .page-682bet__floating-button--login:hover {
      background-color: #e4a71c;
      transform: translateY(-3px);
    }


    /* Responsive Adjustments */
    @media (min-width: 769px) {
      .page-682bet__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 80px 40px;
        gap: 50px;
      }

      .page-682bet__hero-content {
        text-align: left;
      }

      .page-682bet__hero-title {
        font-size: 3.5em;
      }

      .page-682bet__hero-description {
        font-size: 1.2em;
      }

      .page-682bet__hero-image-wrapper {
        margin-top: 0;
      }

      .page-682bet__hero-buttons {
        justify-content: flex-start;
      }

      .page-682bet__about-content {
        flex-direction: row;
        text-align: left;
      }

      .page-682bet__about-image-wrapper {
        flex: 1;
      }

      .page-682bet__about-text {
        flex: 1;
      }

      .page-682bet__floating-buttons {
        flex-direction: row;
        bottom: 30px;
        right: 30px;
      }
    }

    @media (max-width: 768px) {
      .page-682bet__hero-title {
        font-size: 2em;
      }

      .page-682bet__hero-description {
        font-size: 1em;
      }

      .page-682bet__section-title {
        font-size: 1.8em;
      }

      .page-682bet__section-description {
        font-size: 1em;
      }

      .page-682bet__features-grid,
      .page-682bet__product-grid,
      .page-682bet__promo-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements */
      .page-682bet__features-grid > .page-682bet__feature-item,
      .page-682bet__product-grid > .page-682bet__product-item,
      .page-682bet__promo-grid > .page-682bet__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-682bet__product-image,
      .page-682bet__promo-image {
        height: 180px; /* Adjust height for smaller screens */
      }

      /* Image responsive requirements */
      .page-682bet__hero-image,
      .page-682bet__feature-icon,
      .page-682bet__product-image,
      .page-682bet__promo-image,
      .page-682bet__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-682bet__hero-image-wrapper,
      .page-682bet__about-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-682bet__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-682bet__faq-answer {
        padding: 0 20px;
      }

      .page-682bet__faq-item.active .page-682bet__faq-answer {
        padding: 15px 20px !important;
      }

      .page-682bet__faq-question-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-682bet__hero-title {
        font-size: 1.8em;
      }

      .page-682bet__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-682bet__hero-button {
        width: 80%;
        margin: 0 auto;
      }

      .page-682bet__section-title {
        font-size: 1.6em;
      }

      .page-682bet__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

      .page-682bet__floating-button {
        padding: 10px 15px;
        font-size: 0.95em;
        min-width: 90px;
      }
    }
  