
    .page-3bet-vc {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background color */
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-3bet-vc__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    /* Section Titles */
    .page-3bet-vc__section-title {
      font-size: 2.5em;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-3bet-vc__section-title strong {
      color: #e94560; /* Ensure contrast */
    }

    /* Text Blocks */
    .page-3bet-vc__text-block {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #cccccc; /* Ensure contrast */
    }

    /* Buttons */
    .page-3bet-vc__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      border: none;
    }

    .page-3bet-vc__button--primary {
      background-color: #e94560; /* Primary accent */
      color: #ffffff;
    }

    .page-3bet-vc__button--primary:hover {
      background-color: #d83450;
      transform: translateY(-2px);
    }

    .page-3bet-vc__button--secondary {
      background-color: #0f3460; /* Secondary accent */
      color: #ffffff;
      border: 2px solid #e94560;
    }

    .page-3bet-vc__button--secondary:hover {
      background-color: #1a1a2e;
      transform: translateY(-2px);
      border-color: #d83450;
    }

    .page-3bet-vc__button--small {
      padding: 8px 18px;
      font-size: 0.9em;
      margin-top: 15px;
    }

    /* Hero Section */
    .page-3bet-vc__hero-section {
      position: relative;
      width: 100%;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background-color: #0f3460; /* Dark background if image fails */
    }

    .page-3bet-vc__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-3bet-vc__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
      border-radius: 10px;
      max-width: 90%;
    }

    .page-3bet-vc__main-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: #f0f0f0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-3bet-vc__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-3bet-vc__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    /* About Section */
    .page-3bet-vc__about-section {
      background-color: #1a1a2e;
      padding: 60px 0;
    }

    .page-3bet-vc__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3bet-vc__feature-item {
      background-color: #0f3460;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      color: #ffffff;
    }

    .page-3bet-vc__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-3bet-vc__feature-icon {
      width: 250px; /* Min 200x200px */
      height: 180px; /* Min 200x200px, adjusted for aspect ratio */
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 5px;
      max-width: 100%; /* Responsive image */
      height: auto;
    }

    .page-3bet-vc__feature-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-3bet-vc__feature-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* Products Section */
    .page-3bet-vc__products-section {
      background-color: #0f3460;
      padding: 60px 0;
    }

    .page-3bet-vc__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3bet-vc__product-card {
      background-color: #1a1a2e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      color: #ffffff;
    }

    .page-3bet-vc__product-card:hover {
      transform: translateY(-10px);
    }

    .page-3bet-vc__product-image {
      width: 100%;
      height: 250px; /* Consistent height for product images */
      object-fit: cover;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      height: auto;
    }

    .page-3bet-vc__product-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-3bet-vc__product-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-3bet-vc__promotions-section {
      background-color: #1a1a2e;
      padding: 60px 0;
    }

    .page-3bet-vc__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3bet-vc__promo-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      color: #ffffff;
    }

    .page-3bet-vc__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-3bet-vc__promo-image {
      width: 100%;
      height: 220px; /* Consistent height for promo images */
      object-fit: cover;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      height: auto;
    }

    .page-3bet-vc__promo-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-3bet-vc__promo-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* FAQ Section */
    .page-3bet-vc__faq-section {
      background-color: #0f3460;
      padding: 60px 0;
    }

    .page-3bet-vc__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
    }

    .page-3bet-vc__faq-item {
      background-color: #1a1a2e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      color: #ffffff;
    }

    .page-3bet-vc__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2e3b5e; /* Slightly lighter than main background */
      border-bottom: 1px solid #3d4a6b;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-3bet-vc__faq-question:hover {
      background-color: #3d4a6b;
    }

    .page-3bet-vc__faq-title {
      font-size: 1.3em;
      color: #e94560;
      margin: 0;
      pointer-events: none; /* Crucial for click event on parent div */
    }

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

    .page-3bet-vc__faq-item.active .page-3bet-vc__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-3bet-vc__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: #cccccc;
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-3bet-vc__cta-section {
      background-color: #1a1a2e;
      padding: 60px 0;
      text-align: center;
    }

    .page-3bet-vc__cta-content {
      background-color: #0f3460;
      padding: 50px 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-3bet-vc__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    /* Floating Register/Login Buttons */
    .page-3bet-vc__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-3bet-vc__floating-button {
      padding: 12px 20px;
      border-radius: 50px; /* Pill shape */
      font-size: 1em;
      font-weight: bold;
      color: #ffffff;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px;
      text-align: center;
    }

    .page-3bet-vc__floating-button--register {
      background-color: #e94560; /* Primary accent */
    }

    .page-3bet-vc__floating-button--register:hover {
      background-color: #d83450;
      transform: translateY(-2px);
    }

    .page-3bet-vc__floating-button--login {
      background-color: #0f3460; /* Secondary accent */
    }

    .page-3bet-vc__floating-button--login:hover {
      background-color: #0a2542;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-3bet-vc__section-title {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-3bet-vc__main-title {
        font-size: 2.5em;
      }

      .page-3bet-vc__hero-subtitle {
        font-size: 1.2em;
      }

      .page-3bet-vc__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-3bet-vc__button {
        width: 80%; /* Make buttons wider on mobile */
        margin: 0 auto;
      }

      .page-3bet-vc__features-grid,
      .page-3bet-vc__product-grid,
      .page-3bet-vc__promo-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      .page-3bet-vc__feature-item,
      .page-3bet-vc__product-card,
      .page-3bet-vc__promo-card {
        padding: 20px;
      }

      .page-3bet-vc__product-image,
      .page-3bet-vc__promo-image {
        height: 200px; /* Adjust image height for mobile */
      }

      .page-3bet-vc__faq-question {
        padding: 15px 20px;
      }

      .page-3bet-vc__faq-title {
        font-size: 1.1em;
      }

      .page-3bet-vc__faq-answer {
        padding: 0 20px; /* Adjust padding for mobile */
      }

      .page-3bet-vc__faq-item.active .page-3bet-vc__faq-answer {
        padding: 15px 20px !important;
      }

      .page-3bet-vc__cta-content {
        padding: 40px 20px;
      }

      .page-3bet-vc__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      /* List item specific responsive requirements */
      .page-3bet-vc__features-grid > .page-3bet-vc__feature-item,
      .page-3bet-vc__product-grid > .page-3bet-vc__product-card,
      .page-3bet-vc__promo-grid > .page-3bet-vc__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-3bet-vc__features-grid,
      .page-3bet-vc__product-grid,
      .page-3bet-vc__promo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-3bet-vc__feature-item p,
      .page-3bet-vc__product-card p,
      .page-3bet-vc__promo-card p,
      .page-3bet-vc__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive optimization */
      .page-3bet-vc__hero-image,
      .page-3bet-vc__feature-icon,
      .page-3bet-vc__product-image,
      .page-3bet-vc__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-3bet-vc__hero-section,
      .page-3bet-vc__feature-item,
      .page-3bet-vc__product-card,
      .page-3bet-vc__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-3bet-vc__floating-buttons {
        flex-direction: row; /* Horizontal on mobile */
        justify-content: center;
        left: 0;
        right: 0;
        width: 100%;
        bottom: 0;
        background-color: #1a1a2e; /* Background for floating buttons */
        padding: 10px 15px;
        border-top: 1px solid #0f3460;
        box-sizing: border-box;
        border-radius: 0;
      }

      .page-3bet-vc__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }
    }

    @media (max-width: 480px) {
      .page-3bet-vc__main-title {
        font-size: 2em;
      }
      .page-3bet-vc__hero-subtitle {
        font-size: 1em;
      }
      .page-3bet-vc__section-title {
        font-size: 1.8em;
      }
      .page-3bet-vc__faq-title {
        font-size: 1em;
      }
    }
  