
    .page-xoxo66 {
      font-family: 'Arial', sans-serif;
      color: #ecf0f1; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Header offset handling as per requirement */
    .page-xoxo66__hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Top padding for header offset, bottom for floating buttons */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-xoxo66__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-xoxo66__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
      z-index: 2;
    }

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

    .page-xoxo66__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #e74c3c; /* Accent color */
      line-height: 1.2;
    }

    .page-xoxo66__brand-highlight {
      color: #f39c12; /* Another accent color for brand */
    }

    .page-xoxo66__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #bdc3c7;
    }

    .page-xoxo66__cta-button {
      display: inline-block;
      background-color: #e74c3c; /* Red accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-xoxo66__cta-button:hover {
      background-color: #c0392b; /* Darker red on hover */
    }

    /* Floating Buttons */
    .page-xoxo66__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent dark background */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-xoxo66__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 0;
      border: none;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      color: #ffffff;
    }

    .page-xoxo66__floating-button--register {
      background-color: #27ae60; /* Green for register */
    }

    .page-xoxo66__floating-button--register:hover {
      background-color: #229954;
    }

    .page-xoxo66__floating-button--login {
      background-color: #3498db; /* Blue for login */
    }

    .page-xoxo66__floating-button--login:hover {
      background-color: #2980b9;
    }

    /* General Section Styling */
    .page-xoxo66__section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-xoxo66__section-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #e74c3c;
    }

    .page-xoxo66__section-subtitle {
      font-size: 1.1em;
      color: #bdc3c7;
      margin-bottom: 40px;
    }

    /* Product Showcase */
    .page-xoxo66__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-items: center; /* Center items in the grid */
    }

    .page-xoxo66__product-item {
      background-color: #2c3e50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 300px; /* Max width for individual items */
      box-sizing: border-box;
    }

    .page-xoxo66__product-item:hover {
      transform: translateY(-10px);
    }

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

    .page-xoxo66__product-name {
      font-size: 1.4em;
      padding: 15px;
      color: #f39c12;
    }

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

    .page-xoxo66__feature-item {
      background-color: #2c3e50;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box;
    }

    .page-xoxo66__feature-icon {
      width: 250px; /* Minimum 200x200 requirement for images. */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-xoxo66__feature-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-xoxo66__feature-description {
      color: #bdc3c7;
    }

    /* Promotions */
    .page-xoxo66__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-xoxo66__promo-card {
      background-color: #2c3e50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      box-sizing: border-box;
    }

    .page-xoxo66__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-xoxo66__promo-title {
      font-size: 1.4em;
      color: #f39c12;
      padding: 15px 15px 5px 15px;
    }

    .page-xoxo66__promo-description {
      color: #bdc3c7;
      padding: 0 15px 15px 15px;
    }

    .page-xoxo66__promo-button {
      display: block;
      width: calc(100% - 30px);
      margin: 0 15px 15px 15px;
      padding: 10px 0;
      background-color: #e74c3c;
      color: #ffffff;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-xoxo66__promo-button:hover {
      background-color: #c0392b;
    }

    /* Providers List */
    .page-xoxo66__providers-list,
    .page-xoxo66__payment-methods-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 15px;
    }

    .page-xoxo66__providers-item {
      background-color: #2c3e50;
      padding: 12px 20px;
      border-radius: 5px;
      font-size: 1.1em;
      color: #f39c12;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      flex-basis: calc(33.333% - 10px); /* Adjust for 3 columns on larger screens */
      max-width: calc(33.333% - 10px);
      text-align: center;
      box-sizing: border-box;
    }

    /* Payment Methods */
    .page-xoxo66__payment-method-item {
      background-color: #2c3e50;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      flex-basis: calc(25% - 15px); /* 4 columns on larger screens */
      max-width: calc(25% - 15px);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-xoxo66__payment-method-image {
      width: 250px; /* Minimum 200x200 requirement for images. */
      height: auto;
      margin-bottom: 10px;
      max-width: 100%;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-xoxo66__payment-method-name {
      font-size: 1.1em;
      color: #bdc3c7;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-xoxo66__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

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

    .page-xoxo66__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #34495e; /* Slightly lighter dark */
      color: #e74c3c;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-xoxo66__faq-question:hover {
      background-color: #2c3e50;
    }

    .page-xoxo66__faq-question .page-xoxo66__faq-title {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #e74c3c; /* Ensure contrast */
    }

    .page-xoxo66__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: #f39c12; /* Ensure contrast */
    }

    .page-xoxo66__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, will be adjusted on active */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #bdc3c7;
      box-sizing: border-box;
    }

    .page-xoxo66__faq-answer p {
      margin: 0;
      padding-bottom: 20px; /* Add bottom padding to paragraph inside answer */
    }

    .page-xoxo66__faq-item.active .page-xoxo66__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px !important; /* Adjust padding when active */
      opacity: 1;
    }

    /* Final CTA */
    .page-xoxo66__cta-final {
      background-color: #1a1a2e;
      padding: 80px 20px;
    }

    .page-xoxo66__cta-button--final {
      margin-top: 30px;
      background-color: #27ae60;
    }

    .page-xoxo66__cta-button--final:hover {
      background-color: #229954;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-xoxo66__hero-title {
        font-size: 2em;
      }

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

      .page-xoxo66__section {
        padding: 40px 15px;
      }

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

      .page-xoxo66__section-subtitle {
        font-size: 0.95em;
      }

      /* Floating buttons */
      .page-xoxo66__floating-buttons {
        padding: 8px 0;
      }

      .page-xoxo66__floating-button {
        font-size: 0.9em;
        padding: 10px 0;
      }

      /* Product Grid */
      .page-xoxo66__product-grid {
        grid-template-columns: 1fr;
      }
      .page-xoxo66__product-item {
        max-width: 100%;
      }

      /* Features Grid */
      .page-xoxo66__features-grid {
        grid-template-columns: 1fr;
      }

      /* Promo Cards */
      .page-xoxo66__promo-cards {
        grid-template-columns: 1fr;
      }

      /* Providers List & Payment Methods Grid - Mobile */
      .page-xoxo66__providers-list,
      .page-xoxo66__payment-methods-grid {
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-xoxo66__providers-item,
      .page-xoxo66__payment-method-item {
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Ensure images are responsive */
      .page-xoxo66__product-image,
      .page-xoxo66__feature-icon,
      .page-xoxo66__promo-image,
      .page-xoxo66__payment-method-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* FAQ */
      .page-xoxo66__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-xoxo66__faq-answer {
        padding: 0 15px;
      }
      .page-xoxo66__faq-item.active .page-xoxo66__faq-answer {
        padding: 15px !important;
      }
      .page-xoxo66__faq-answer p {
        padding-bottom: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-xoxo66__hero-title {
        font-size: 1.6em;
      }
      .page-xoxo66__hero-description {
        font-size: 0.9em;
      }
      .page-xoxo66__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-xoxo66__floating-button {
        font-size: 0.85em;
        padding: 8px 0;
      }
      .page-xoxo66__product-name,
      .page-xoxo66__feature-title,
      .page-xoxo66__promo-title {
        font-size: 1.2em;
      }
    }
  