
    /* Base styles for the page */
    .page-plus777 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding, assuming body already has offset */
    }

    /* Hero Section */
    .page-plus777__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #0f0f1a;
      border-bottom: 5px solid #e74c3c;
    }

    .page-plus777__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6);
    }

    .page-plus777__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      color: #ffffff;
    }

    .page-plus777__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #f39c12;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-plus777__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    .page-plus777__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-plus777__cta-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-plus777__cta-button--primary {
      background-color: #e74c3c;
      color: #ffffff;
    }

    .page-plus777__cta-button--primary:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    .page-plus777__cta-button--secondary {
      background-color: #3498db;
      color: #ffffff;
    }

    .page-plus777__cta-button--secondary:hover {
      background-color: #2980b9;
      transform: translateY(-3px);
    }

    /* Floating Buttons for Register/Login */
    .page-plus777__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
      display: none; /* Hidden by default, only shown on mobile */
    }

    .page-plus777__floating-button {
      background-color: #e74c3c;
      color: #ffffff;
      padding: 12px 18px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-plus777__floating-button:hover {
      background-color: #c0392b;
      transform: scale(1.05);
    }

    /* General Section Styling */
    .page-plus777__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-plus777__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #f39c12;
      position: relative;
      display: inline-block;
    }

    .page-plus777__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-plus777__section-description {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-plus777__feature-item {
      background-color: #2c2c44;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid #3a3a5a;
    }

    .page-plus777__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-plus777__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e74c3c;
    }

    .page-plus777__feature-title {
      font-size: 1.5em;
      color: #f39c12;
      margin-bottom: 15px;
    }

    .page-plus777__feature-description {
      color: #ccc;
      font-size: 1em;
    }

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

    .page-plus777__promotion-card {
      background-color: #2c2c44;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid #3a3a5a;
    }

    .page-plus777__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-plus777__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-plus777__promotion-content {
      padding: 25px;
    }

    .page-plus777__promotion-title {
      font-size: 1.8em;
      color: #f39c12;
      margin-bottom: 10px;
    }

    .page-plus777__promotion-description {
      color: #ccc;
      font-size: 0.95em;
      margin-bottom: 20px;
    }

    .page-plus777__promotion-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

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

    /* Game Providers Section */
    .page-plus777__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-plus777__provider-logo {
      width: 100%;
      height: 100px;
      object-fit: contain;
      padding: 10px;
      background-color: #2c2c44;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border: 1px solid #3a3a5a;
    }

    .page-plus777__provider-logo:hover {
      transform: translateY(-5px);
    }

    /* Payment Methods Section */
    .page-plus777__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-plus777__payment-logo {
      width: 120px;
      height: 80px;
      object-fit: contain;
      background-color: #2c2c44;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border: 1px solid #3a3a5a;
    }

    .page-plus777__payment-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-plus777__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      background-color: #1a1a2e;
    }

    .page-plus777__faq-item {
      background-color: #2c2c44;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #3a3a5a;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-plus777__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: #f39c12;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-plus777__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-plus777__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: #f39c12; /* Ensure good contrast */
    }

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

    .page-plus777__faq-item.active .page-plus777__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-plus777__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-plus777__cta-section {
      background-color: #0f0f1a;
      padding: 80px 20px;
      text-align: center;
      border-top: 5px solid #e74c3c;
    }

    .page-plus777__cta-section-title {
      font-size: 3em;
      color: #f39c12;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-plus777__cta-section-description {
      font-size: 1.2em;
      color: #ecf0f1;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-plus777__hero-title {
        font-size: 3em;
      }
      .page-plus777__hero-subtitle {
        font-size: 1.3em;
      }
      .page-plus777__section-title {
        font-size: 2.2em;
      }
      .page-plus777__feature-item {
        padding: 25px;
      }
      .page-plus777__promotion-card {
        max-width: 450px;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .page-plus777__hero-section {
        height: 70vh;
        min-height: 350px;
      }
      .page-plus777__hero-title {
        font-size: 2.5em;
      }
      .page-plus777__hero-subtitle {
        font-size: 1.1em;
      }
      .page-plus777__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-plus777__cta-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-plus777__floating-buttons {
        display: flex; /* Show floating buttons on mobile */
      }
      .page-plus777__section {
        padding: 40px 15px;
      }
      .page-plus777__section-title {
        font-size: 2em;
      }
      .page-plus777__section-description {
        font-size: 0.95em;
      }
      .page-plus777__features-grid,
      .page-plus777__promotions-grid,
      .page-plus777__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-plus777__feature-item,
      .page-plus777__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        padding: 20px;
      }
      .page-plus777__feature-description,
      .page-plus777__promotion-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-plus777__faq-section {
        padding: 40px 15px;
      }
      .page-plus777__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-plus777__faq-answer {
        padding: 15px 20px;
      }
      .page-plus777__cta-section {
        padding: 60px 15px;
      }
      .page-plus777__cta-section-title {
        font-size: 2.5em;
      }
      .page-plus777__cta-section-description {
        font-size: 1em;
      }
      .page-plus777__payment-methods {
        gap: 15px;
      }
      .page-plus777__payment-logo {
        width: 100px;
        height: 70px;
      }
    }

    @media (max-width: 480px) {
      .page-plus777__hero-title {
        font-size: 2em;
      }
      .page-plus777__hero-subtitle {
        font-size: 0.95em;
      }
      .page-plus777__section-title {
        font-size: 1.8em;
      }
      .page-plus777__section-description {
        font-size: 0.9em;
      }
      .page-plus777__feature-title {
        font-size: 1.3em;
      }
      .page-plus777__promotion-title {
        font-size: 1.5em;
      }
      .page-plus777__faq-question {
        font-size: 1em;
      }
      .page-plus777__faq-answer {
        font-size: 0.9em;
      }
      .page-plus777__cta-section-title {
        font-size: 2em;
      }
    }
  