
    /* Base styles for the page-yy777-index */
    .page-yy777-index {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

    .page-yy777-index__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-yy777-index__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark background for contrast */
      color: #fff;
      text-align: center;
      padding: 80px 0 60px; /* Adjusted padding for content */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-yy777-index__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4; /* Slightly transparent overlay */
      z-index: 0;
    }

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

    .page-yy777-index__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold color for highlights */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-yy777-index__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-yy777-index__hero-cta {
      display: inline-block;
      background-color: #ffcc00;
      color: #0d1a26;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none; /* Use button element or div with button styles */
    }

    .page-yy777-index__hero-cta:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-yy777-index__floating-buttons-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-yy777-index__floating-button {
      background-color: #ffcc00;
      color: #0d1a26;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      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;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-yy777-index__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-yy777-index__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-index__section--dark {
      background-color: #1a2a3a;
      color: #fff;
    }

    .page-yy777-index__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #0d1a26;
    }

    .page-yy777-index__section--dark .page-yy777-index__section-title {
      color: #ffcc00;
    }

    .page-yy777-index__text-content {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    /* Game Showcase */
    .page-yy777-index__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-yy777-index__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      width: 100%;
      max-width: 350px; /* Max width for cards */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-yy777-index__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-yy777-index__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-yy777-index__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yy777-index__game-card-title {
      font-size: 1.5em;
      color: #0d1a26;
      margin-bottom: 15px;
    }

    .page-yy777-index__game-card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-yy777-index__game-card-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-yy777-index__game-card-button:hover {
      background-color: #0056b3;
    }

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

    .page-yy777-index__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-yy777-index__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

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

    .page-yy777-index__promo-content {
      padding: 25px;
    }

    .page-yy777-index__promo-title {
      font-size: 1.6em;
      color: #0d1a26;
      margin-bottom: 10px;
    }

    .page-yy777-index__promo-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
    }

    .page-yy777-index__promo-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #0d1a26;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-yy777-index__promo-button:hover {
      background-color: #e6b800;
    }

    /* Features/Benefits Section */
    .page-yy777-index__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-yy777-index__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
    }

    .page-yy777-index__feature-icon {
      width: 80px; /* Display size for icon, source image requested at 200x200 */
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain; /* Ensure the image fits within the bounds without cropping */
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-yy777-index__feature-title {
      font-size: 1.4em;
      color: #0d1a26;
      margin-bottom: 15px;
    }

    .page-yy777-index__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Payment Methods & Game Providers */
    .page-yy777-index__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-yy777-index__logo-item {
      padding: 15px 25px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      flex-shrink: 0; /* Prevent shrinking on smaller screens */
    }

    .page-yy777-index__logo-image {
      max-width: 150px;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-yy777-index__faq-section {
      background-color: #eef2f5;
    }

    .page-yy777-index__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      text-align: left;
    }

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

    .page-yy777-index__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjusted for better mobile scaling, parent font-size takes precedence */
      color: #0d1a26;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-yy777-index__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yy777-index__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-yy777-index__faq-item.active .page-yy777-index__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
      color: #007bff;
    }

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

    .page-yy777-index__faq-item.active .page-yy777-index__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-yy777-index__hero-title {
        font-size: 2.5em;
      }
      .page-yy777-index__hero-subtitle {
        font-size: 1.3em;
      }
      .page-yy777-index__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-index__hero-section {
        padding: 60px 0 40px;
      }
      .page-yy777-index__hero-title {
        font-size: 2em;
      }
      .page-yy777-index__hero-subtitle {
        font-size: 1.1em;
      }
      .page-yy777-index__hero-cta {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-yy777-index__floating-buttons-wrapper {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
        width: 90%;
        max-width: 300px;
      }

      .page-yy777-index__floating-button {
        width: 100%;
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-yy777-index__section {
        padding: 40px 0;
      }
      .page-yy777-index__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-yy777-index__text-content {
        font-size: 1em;
        margin-bottom: 20px;
      }

      .page-yy777-index__game-grid,
      .page-yy777-index__promo-grid,
      .page-yy777-index__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
      }

      .page-yy777-index__game-card,
      .page-yy777-index__promo-card,
      .page-yy777-index__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-yy777-index__game-card-image,
      .page-yy777-index__promo-image {
        max-width: 100%;
        height: auto;
      }

      .page-yy777-index__logo-grid {
        gap: 20px;
      }

      .page-yy777-index__logo-item {
        padding: 10px 15px;
        max-width: 48%; /* Allow two items per row on mobile */
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-yy777-index__logo-image {
        max-width: 120px;
        max-height: 60px;
      }

      .page-yy777-index__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-yy777-index__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-yy777-index__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-yy777-index__faq-item.active .page-yy777-index__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-index__hero-section {
        padding: 40px 0 30px;
      }
      .page-yy777-index__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-index__hero-subtitle {
        font-size: 1em;
      }
      .page-yy777-index__hero-cta {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-yy777-index__section-title {
        font-size: 1.6em;
      }
      .page-yy777-index__floating-buttons-wrapper {
        width: 95%;
      }
      .page-yy777-index__logo-item {
        max-width: 100%; /* One item per row on very small screens */
      }
    }
  