
    /* General body styling for consistent header offset */
    :root {
      --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
    }
    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f4f4;
      margin: 0;
      padding-top: var(--header-offset); /* Ensure content starts below fixed header */
      box-sizing: border-box;
    }

    /* Page-specific styles for Plus777 */
    .page-plus777 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-plus777__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-plus777__section-title {
      text-align: center;
      color: #0056b3; /* Darker blue for titles */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-plus777__section-subtitle {
      text-align: center;
      color: #555;
      margin-bottom: 20px;
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-plus777__hero-section {
      position: relative;
      background: linear-gradient(135deg, #007bff, #00c6ff); /* Gradient background */
      color: #fff;
      padding: 100px 20px 60px; /* Adjusted padding-top for header offset */
      text-align: center;
      border-radius: 8px;
      overflow: hidden;
      margin-top: 10px; /* Small decorative top margin */
      box-sizing: border-box;
    }

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

    .page-plus777__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-plus777__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-plus777__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-plus777__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Yellow for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-plus777__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

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

    .page-plus777__floating-button {
      background-color: #28a745; /* Green for Register */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-plus777__floating-button--login {
      background-color: #007bff; /* Blue for Login */
    }

    .page-plus777__floating-button:hover {
      transform: translateY(-2px);
    }
    .page-plus777__floating-button--login:hover {
      background-color: #0056b3;
    }
    .page-plus777__floating-button--register:hover {
      background-color: #218838;
    }

    /* Features/Why Choose Section */
    .page-plus777__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-plus777__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-plus777__feature-icon {
      width: 250px; /* Adjusted to meet min 200x200 requirement */
      height: 200px; /* Adjusted to meet min 200x200 requirement */
      margin: 0 auto 15px;
      max-width: 100%;
      height: auto;
      border-radius: 8px; /* Changed from 50% for consistency with other images */
      object-fit: cover;
    }

    .page-plus777__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-plus777__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Game Categories/Products Section */
    .page-plus777__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-plus777__game-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-plus777__game-card:hover {
      transform: translateY(-5px);
    }

    .page-plus777__game-image {
      width: 100%;
      height: 220px; /* Ensure minimum height for content images */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-plus777__game-content {
      padding: 20px;
      text-align: center;
    }

    .page-plus777__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-plus777__game-description {
      font-size: 0.95em;
      color: #666;
    }

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

    .page-plus777__promo-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-plus777__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-plus777__promo-image {
      width: 100%;
      height: 220px; /* Ensure minimum height for content images */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-plus777__promo-content {
      padding: 20px;
      text-align: center;
    }

    .page-plus777__promo-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-plus777__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-plus777__promo-button {
      background-color: #ffc107;
      color: #333;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-plus777__promo-button:hover {
      background-color: #e0a800;
    }

    /* Lists (Payment Methods, Game Providers) */
    .page-plus777__list-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      list-style: none;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    .page-plus777__list-item {
      background-color: #e9ecef;
      padding: 12px 20px;
      border-radius: 25px;
      font-size: 1em;
      color: #333;
      font-weight: 500;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      text-align: center;
      flex: 1 1 auto; /* Allow items to grow and shrink */
      min-width: 120px; /* Minimum width for list items */
      word-wrap: break-word; /* Ensure long text wraps */
      overflow-wrap: break-word;
    }
    .page-plus777__list-item:hover {
      background-color: #dae0e5;
    }

    /* FAQ Section */
    .page-plus777__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-plus777__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-plus777__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px 8px 0 0;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

    .page-plus777__faq-question:hover {
      background-color: #0056b3;
    }

    .page-plus777__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      flex-grow: 1;
      text-align: left;
    }

    .page-plus777__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-plus777__faq-item.active .page-plus777__faq-toggle {
      transform: rotate(45deg); /* For '-' symbol if it was a plus */
    }

    .page-plus777__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fefefe;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-plus777__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }
    .page-plus777__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-plus777__hero-title {
        font-size: 3em;
      }
      .page-plus777__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-plus777 {
        padding: 15px;
      }
      .page-plus777__hero-section {
        padding: 80px 15px 40px;
      }
      .page-plus777__hero-title {
        font-size: 2.5em;
      }
      .page-plus777__hero-description {
        font-size: 1.1em;
      }
      .page-plus777__section {
        padding: 30px 15px;
      }
      .page-plus777__section-title {
        font-size: 1.8em;
      }
      .page-plus777__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-plus777__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-plus777__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      /* List item responsive requirements */
      .page-plus777__list-container {
        flex-direction: column; /* Stack items vertically */
        align-items: stretch; /* Stretch items to full width */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-plus777__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-plus777__game-image,
      .page-plus777__promo-image,
      .page-plus777__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-plus777__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-plus777__faq-question h3 {
        font-size: 1em;
      }
      .page-plus777__faq-answer {
        padding: 0 15px;
      }
      .page-plus777__faq-item.active .page-plus777__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-plus777__hero-title {
        font-size: 2em;
      }
      .page-plus777__section-title {
        font-size: 1.5em;
      }
    }
  