
    /* General styles for page-yy777-app-apk */
    .page-yy777-app-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
      /* Rely on body padding-top for header offset, then add a small decorative top padding */
      padding-top: 10px; /* Small decorative top padding for content */
    }

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

    .page-yy777-app-apk__hero-section {
      background: linear-gradient(135deg, #0056b3, #003d80);
      color: #fff;
      padding: 60px 0;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

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

    .page-yy777-app-apk__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-yy777-app-apk__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-yy777-app-apk__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-yy777-app-apk__download-button:hover {
      background-color: #e0a800; /* Darker yellow */
      transform: translateY(-3px);
    }

    .page-yy777-app-apk__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-yy777-app-apk__section-title {
      font-size: 2.2em;
      color: #0056b3;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-yy777-app-apk__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    .page-yy777-app-apk__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-app-apk__feature-item {
      text-align: center;
      padding: 25px;
      border-radius: 8px;
      background-color: #f0f8ff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .page-yy777-app-apk__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-yy777-app-apk__feature-icon-wrapper {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-yy777-app-apk__feature-icon {
      width: 200px; /* Min size 200x200px */
      height: 200px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
    }

    .page-yy777-app-apk__feature-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

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

    .page-yy777-app-apk__image-container {
      text-align: center;
      margin: 40px 0;
    }

    .page-yy777-app-apk__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    .page-yy777-app-apk__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-yy777-app-apk__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      padding: 20px;
      background-color: #e6f7ff;
      border-left: 5px solid #0056b3;
      border-radius: 5px;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for text wrapping */
      overflow-wrap: break-word; /* Required for text wrapping */
    }

    .page-yy777-app-apk__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #0056b3;
      margin-right: 15px;
      background-color: #ffc107;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-yy777-app-apk__step-content {
      flex-grow: 1;
    }

    .page-yy777-app-apk__step-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 8px;
    }

    .page-yy777-app-apk__step-description {
      font-size: 1em;
      color: #444;
    }

    .page-yy777-app-apk__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-yy777-app-apk__provider-logo {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      object-fit: contain;
      padding: 10px;
      background-color: #fff;
      min-width: 200px; /* Ensure min size 200x200px */
      min-height: 200px; /* Ensure min size 200x200px */
    }

    .page-yy777-app-apk__faq-section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-yy777-app-apk__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
      word-wrap: break-word; /* Required for text wrapping */
      overflow-wrap: break-word; /* Required for text wrapping */
    }

    .page-yy777-app-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f8ff;
      color: #0056b3;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-yy777-app-apk__faq-question:hover {
      background-color: #e6f2fa;
    }

    .page-yy777-app-apk__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yy777-app-apk__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-yy777-app-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* 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: #555;
      font-size: 0.95em;
      box-sizing: border-box;
    }

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

    .page-yy777-app-apk__cta-section {
      text-align: center;
      padding: 50px 0;
      background-color: #0056b3;
      color: #fff;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-yy777-app-apk__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-yy777-app-apk__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-app-apk__hero-title {
        font-size: 2.2em;
      }

      .page-yy777-app-apk__hero-description {
        font-size: 1em;
      }

      .page-yy777-app-apk__section-title {
        font-size: 1.8em;
      }

      .page-yy777-app-apk__section,
      .page-yy777-app-apk__faq-section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-yy777-app-apk__features-grid {
        grid-template-columns: 1fr;
      }

      .page-yy777-app-apk__feature-item {
        padding: 20px;
      }

      .page-yy777-app-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        box-sizing: border-box !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
      }

      .page-yy777-app-apk__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-yy777-app-apk__steps-list {
        padding: 0 !important; /* List container responsive */
        width: 100% !important; /* List container responsive */
        max-width: 100% !important; /* List container responsive */
        box-sizing: border-box !important; /* List container responsive */
        margin-left: 0 !important; /* List container responsive */
        margin-right: 0 !important; /* List container responsive */
      }

      .page-yy777-app-apk__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-yy777-app-apk__cta-title {
        font-size: 1.8em;
      }

      .page-yy777-app-apk__cta-description {
        font-size: 1em;
      }

      .page-yy777-app-apk__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-yy777-app-apk__faq-answer {
        padding: 0 15px;
      }

      .page-yy777-app-apk__faq-item.active .page-yy777-app-apk__faq-answer {
        padding: 15px 15px !important;
      }

      .page-yy777-app-apk__content-image,
      .page-yy777-app-apk__feature-icon,
      .page-yy777-app-apk__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-app-apk__hero-section {
        padding: 40px 0;
      }
      .page-yy777-app-apk__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-app-apk__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-yy777-app-apk__section-title {
        font-size: 1.5em;
      }
    }

  