
    /* Base styles for the page */
    .page-plus777-club {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light gray text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Fixed navigation bar spacing - assuming body has padding-top from shared.css */
    .page-plus777-club__hero-section,
    .page-plus777-club__content-section {
      padding-top: 10px; /* Small top padding for visual separation from header content */
    }

    /* Sections */
    .page-plus777-club__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-plus777-club__section--dark {
      background-color: #222222;
    }

    .page-plus777-club__section--light {
      background-color: #2c2c2c;
    }

    /* Headings */
    .page-plus777-club__heading-primary {
      font-size: 2.8em;
      color: #ffd700; /* Gold color for primary heading */
      margin-bottom: 20px;
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }

    .page-plus777-club__heading-secondary {
      font-size: 2.2em;
      color: #fff;
      margin-top: 40px;
      margin-bottom: 25px;
    }

    .page-plus777-club__heading-tertiary {
      font-size: 1.6em;
      color: #ffd700;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    /* Paragraphs */
    .page-plus777-club__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    /* Hero Section */
    .page-plus777-club__hero-section {
      position: relative;
      background-color: #000;
      overflow: hidden;
      padding-bottom: 60px; /* Adjust as needed */
    }

    .page-plus777-club__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-plus777-club__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      filter: brightness(0.7); /* Slightly dim the image for text readability */
      max-width: 100% !important; /* Mobile responsive */
      box-sizing: border-box !important; /* Mobile responsive */
    }

    .page-plus777-club__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
    }

    /* Button styles - no links */
    .page-plus777-club__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffd700; /* Gold button */
      color: #1a1a1a; /* Dark text on gold */
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-plus777-club__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Product/Game Grid */
    .page-plus777-club__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-plus777-club__game-card {
      background-color: #2c2c2c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-plus777-club__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-plus777-club__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-plus777-club__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100% !important; /* Mobile responsive */
      box-sizing: border-box !important; /* Mobile responsive */
    }

    .page-plus777-club__game-card-content {
      padding: 20px;
    }

    .page-plus777-club__game-card-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-plus777-club__game-card-description {
      font-size: 0.95em;
      color: #bbbbbb;
    }

    /* Features List */
    .page-plus777-club__features-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .page-plus777-club__features-item {
      background-color: #2c2c2c;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
    }

    .page-plus777-club__features-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .page-plus777-club__features-icon {
      width: 100px; /* Example size */
      height: auto;
      display: block;
      margin: 0 auto;
      max-width: 100% !important; /* Mobile responsive */
      box-sizing: border-box !important; /* Mobile responsive */
    }

    .page-plus777-club__features-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-plus777-club__features-description {
      font-size: 0.9em;
      color: #cccccc;
    }

    /* Promotions */
    .page-plus777-club__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-plus777-club__promo-card {
      background-color: #2c2c2c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-plus777-club__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-plus777-club__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px; /* Fixed height for consistency */
    }

    .page-plus777-club__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100% !important; /* Mobile responsive */
      box-sizing: border-box !important; /* Mobile responsive */
    }

    .page-plus777-club__promo-content {
      padding: 20px;
    }

    .page-plus777-club__promo-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-plus777-club__promo-description {
      font-size: 0.95em;
      color: #bbbbbb;
      margin-bottom: 15px;
    }

    .page-plus777-club__promo-link-text {
        color: #ffd700;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-plus777-club__promo-link-text:hover {
        color: #e6c200;
    }

    /* Payment Methods */
    .page-plus777-club__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-plus777-club__payment-method-item {
      background-color: #2c2c2c;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      font-size: 1.1em;
      color: #fff;
      display: flex;
      align-items: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-plus777-club__payment-method-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-right: 10px;
    }

    .page-plus777-club__payment-method-icon {
      width: 60px; /* Example size for payment logos */
      height: auto;
      display: block;
      max-width: 100% !important; /* Mobile responsive */
      box-sizing: border-box !important; /* Mobile responsive */
    }

    /* FAQ Section */
    .page-plus777-club__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-plus777-club__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-plus777-club__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      border-bottom: 1px solid #444444;
      transition: background-color 0.3s ease;
    }

    .page-plus777-club__faq-question:hover {
      background-color: #3d3d3d;
    }

    .page-plus777-club__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-plus777-club__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-plus777-club__faq-item.active .page-plus777-club__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-plus777-club__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will be overridden */
      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-plus777-club__faq-item.active .page-plus777-club__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-plus777-club__heading-primary {
        font-size: 2em;
      }

      .page-plus777-club__heading-secondary {
        font-size: 1.8em;
      }

      .page-plus777-club__heading-tertiary {
        font-size: 1.4em;
      }

      .page-plus777-club__paragraph {
        font-size: 1em;
      }

      .page-plus777-club__section {
        padding: 30px 15px;
      }

      .page-plus777-club__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List items responsive */
      .page-plus777-club__features-list,
      .page-plus777-club__payment-methods-list {
        display: block !important; /* Force single column */
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-plus777-club__features-item,
      .page-plus777-club__payment-method-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 15px !important;
        padding: 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-plus777-club__game-grid,
      .page-plus777-club__promo-grid {
        grid-template-columns: 1fr;
      }

      /* Image responsive */
      .page-plus777-club__hero-image,
      .page-plus777-club__game-card-image,
      .page-plus777-club__features-icon,
      .page-plus777-club__promo-image,
      .page-plus777-club__payment-method-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-plus777-club__hero-image-wrapper,
      .page-plus777-club__game-card-image-wrapper,
      .page-plus777-club__features-icon-wrapper,
      .page-plus777-club__promo-image-wrapper,
      .page-plus777-club__payment-method-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-plus777-club__faq-question {
        padding: 15px 20px;
      }

      .page-plus777-club__faq-question h3 {
        font-size: 1.1em;
      }

      .page-plus777-club__faq-answer {
        padding: 0 20px;
      }

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

    @media (max-width: 480px) {
      .page-plus777-club__heading-primary {
        font-size: 1.8em;
      }

      .page-plus777-club__heading-secondary {
        font-size: 1.6em;
      }

      .page-plus777-club__button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  