
    /* Base styles for the page */
    .page-yy777-legit-or-not {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed Navbar Spacing - assuming body already has padding-top from shared.css */
    .page-yy777-legit-or-not__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }
    
    .page-yy777-legit-or-not__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    .page-yy777-legit-or-not__hero-section {
      background-color: #0a2342; /* Dark blue background */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-yy777-legit-or-not__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-yy777-legit-or-not__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-yy777-legit-or-not__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #ffcc00; /* Gold/yellow for emphasis */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-yy777-legit-or-not__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-yy777-legit-or-not__button {
      display: inline-block;
      background-color: #ffcc00; /* Gold/yellow button */
      color: #0a2342;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-legit-or-not__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-yy777-legit-or-not__section {
      background-color: #fff;
      margin-bottom: 20px;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-yy777-legit-or-not__section-title {
      font-size: 2em;
      color: #0a2342;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-yy777-legit-or-not__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-yy777-legit-or-not__content-block {
      margin-bottom: 20px;
    }

    .page-yy777-legit-or-not__content-block h3 {
      font-size: 1.5em;
      color: #0a2342;
      margin-bottom: 15px;
      border-left: 4px solid #ffcc00;
      padding-left: 10px;
    }

    .page-yy777-legit-or-not__content-block p {
      margin-bottom: 10px;
      color: #555;
    }

    .page-yy777-legit-or-not__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-yy777-legit-or-not__list-item {
      background-color: #f0f8ff; /* Light blue */
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: relative;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word; /* Ensure text breaks within item */
      overflow-wrap: break-word;
    }

    .page-yy777-legit-or-not__list-item::before {
      content: '✓';
      color: #0a2342;
      font-weight: bold;
      margin-right: 10px;
    }

    .page-yy777-legit-or-not__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%; /* For responsive image container */
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-yy777-legit-or-not__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      display: block;
      margin: 0 auto;
      box-sizing: border-box; /* For responsive images */
    }

    .page-yy777-legit-or-not__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #0a2342; /* Dark blue background */
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-yy777-legit-or-not__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      background-color: #ffcc00; /* Gold/yellow button */
      color: #0a2342;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 5px;
      margin: 0 5px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-decoration: none; /* For the external link */
    }

    .page-yy777-legit-or-not__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* FAQ Section Styles */
    .page-yy777-legit-or-not__faq-section {
      background-color: #f0f8ff; /* Light blue */
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      margin-top: 30px;
      box-sizing: border-box;
    }

    .page-yy777-legit-or-not__faq-title {
      font-size: 2em;
      color: #0a2342;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-yy777-legit-or-not__faq-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-yy777-legit-or-not__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-yy777-legit-or-not__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0a2342; /* Dark blue */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-yy777-legit-or-not__faq-question:hover {
      background-color: #1a3a60;
    }

    .page-yy777-legit-or-not__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Adjusted for better appearance with toggle */
      color: #fff;
      pointer-events: none; /* Prevents click event on h3 from interfering */
      flex-grow: 1;
    }

    .page-yy777-legit-or-not__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevents click event on toggle from interfering */
      transition: transform 0.3s ease;
      color: #ffcc00; /* Gold/yellow for toggle icon */
    }

    .page-yy777-legit-or-not__faq-item.active .page-yy777-legit-or-not__faq-toggle {
      transform: rotate(45deg); /* Rotates the '+' to 'x' or similar, or just change to '-' */
    }

    .page-yy777-legit-or-not__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #f9f9f9;
      color: #333;
    }

    .page-yy777-legit-or-not__faq-item.active .page-yy777-legit-or-not__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-legit-or-not__hero-title {
        font-size: 2em;
      }

      .page-yy777-legit-or-not__hero-description {
        font-size: 1em;
      }

      .page-yy777-legit-or-not__section-title,
      .page-yy777-legit-or-not__faq-title {
        font-size: 1.8em;
      }

      .page-yy777-legit-or-not__content-block h3 {
        font-size: 1.3em;
      }

      .page-yy777-legit-or-not__list {
        grid-template-columns: 1fr; /* Single column for lists on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-yy777-legit-or-not__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-yy777-legit-or-not__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-yy777-legit-or-not__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-yy777-legit-or-not__floating-buttons {
        flex-direction: column;
        padding: 5px;
      }

      .page-yy777-legit-or-not__floating-button {
        margin: 5px 0;
        width: 90%; /* Adjust width for better appearance */
        margin-left: auto;
        margin-right: auto;
      }

      .page-yy777-legit-or-not__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-yy777-legit-or-not__faq-question h3 {
        font-size: 1em;
      }
      .page-yy777-legit-or-not__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-legit-or-not__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-legit-or-not__hero-description {
        font-size: 0.9em;
      }
      .page-yy777-legit-or-not__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  