
    :root {
      --primary-color: #e44d26; /* Orange-red for action */
      --secondary-color: #333; /* Dark grey for text */
      --accent-color: #f7b731; /* Gold/yellow for highlights */
      --background-dark: #1a1a1a; /* Dark background */
      --text-light: #f5f5f5; /* Light text */
      --text-dark: #333; /* Dark text on light background */
      --border-color: #444;
      --spacing-unit: 1rem;
    }

    .page-6fff-apk {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-6fff-apk h1,
    .page-6fff-apk h2,
    .page-6fff-apk h3 {
      color: var(--accent-color);
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .page-6fff-apk h1 {
      font-size: 2.5rem;
      margin-top: 0;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-6fff-apk h2 {
      font-size: 2rem;
    }

    .page-6fff-apk h3 {
      font-size: 1.5rem;
    }

    .page-6fff-apk__section {
      padding: 2rem 1rem;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-6fff-apk__section-title {
      font-size: 2.2rem;
      margin-bottom: 2rem;
      color: var(--primary-color);
    }

    .page-6fff-apk__hero-section {
      position: relative;
      background-color: #000;
      padding: 6rem 1rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      min-height: 500px;
    }

    .page-6fff-apk__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-6fff-apk__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-6fff-apk__hero-title {
      font-size: 3rem;
      color: var(--accent-color);
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-6fff-apk__hero-description {
      font-size: 1.2rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-6fff-apk__hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-6fff-apk__button {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-6fff-apk__button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

    .page-6fff-apk__button--secondary {
      background-color: var(--accent-color);
      color: var(--background-dark);
    }

    .page-6fff-apk__button--secondary:hover {
      background-color: #ffd700;
    }

    .page-6fff-apk__about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .page-6fff-apk__about-text {
      max-width: 800px;
      text-align: center;
      font-size: 1.1rem;
    }

    .page-6fff-apk__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .page-6fff-apk__product-item {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
      padding-bottom: 1rem;
    }

    .page-6fff-apk__product-item:hover {
      transform: translateY(-5px);
    }

    .page-6fff-apk__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      display: block;
      border-bottom: 1px solid var(--border-color);
    }

    .page-6fff-apk__product-title {
      font-size: 1.3rem;
      color: var(--accent-color);
      margin: 1rem 0.5rem 0.5rem;
    }

    .page-6fff-apk__product-description {
      font-size: 0.95rem;
      color: var(--text-light);
      padding: 0 1rem 1rem;
    }

    .page-6fff-apk__download-steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-6fff-apk__step-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

    .page-6fff-apk__step-number {
      background-color: var(--primary-color);
      color: var(--text-light);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-6fff-apk__step-content h3 {
      color: var(--accent-color);
      text-align: left;
      margin-top: 0;
      margin-bottom: 0.5rem;
    }

    .page-6fff-apk__step-content p {
      margin: 0;
      color: var(--text-light);
    }

    .page-6fff-apk__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
      justify-items: center;
    }

    .page-6fff-apk__provider-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 180px;
    }

    .page-6fff-apk__provider-logo {
      max-width: 120px;
      height: auto;
      margin-bottom: 0.5rem;
      max-height: 80px;
      object-fit: contain;
    }

    .page-6fff-apk__provider-name {
      color: var(--text-light);
      font-weight: bold;
      font-size: 1rem;
    }

    .page-6fff-apk__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
      justify-items: center;
    }

    .page-6fff-apk__payment-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 160px;
    }

    .page-6fff-apk__payment-logo {
      max-width: 100px;
      height: auto;
      margin-bottom: 0.5rem;
      max-height: 60px;
      object-fit: contain;
    }

    .page-6fff-apk__payment-name {
      color: var(--text-light);
      font-weight: bold;
      font-size: 0.9rem;
    }

    .page-6fff-apk__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-6fff-apk__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-6fff-apk__faq-item.active {
      background-color: #3a3a3a;
    }

    .page-6fff-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      cursor: pointer;
      user-select: none;
      font-size: 1.1rem;
      color: var(--accent-color);
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-6fff-apk__faq-question:hover {
      color: var(--primary-color);
    }

    .page-6fff-apk__faq-question h3 {
      margin: 0;
      text-align: left;
      color: inherit;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-6fff-apk__faq-toggle {
      font-size: 1.5rem;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
      color: var(--primary-color);
    }

    .page-6fff-apk__faq-item.active .page-6fff-apk__faq-toggle {
      transform: rotate(45deg);
    }

    .page-6fff-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.5rem;
      opacity: 0;
      color: var(--text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-6fff-apk__faq-item.active .page-6fff-apk__faq-answer {
      max-height: 2000px !important;
      padding: 1.5rem !important;
      opacity: 1;
    }

    .page-6fff-apk__cta-section {
      text-align: center;
      padding: 3rem 1rem;
      background-color: #2a2a2a;
      border-top: 1px solid var(--border-color);
    }

    .page-6fff-apk__cta-text {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: var(--text-light);
    }

    .page-6fff-apk__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 1rem 0;
      background-color: rgba(0, 0, 0, 0.85);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      gap: 1rem;
    }

    .page-6fff-apk__floating-button {
      flex: 1;
      max-width: 180px;
      text-align: center;
      font-size: 1.1rem;
      padding: 0.8rem 0.5rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-6fff-apk__hero-title {
        font-size: 2.5rem;
      }

      .page-6fff-apk__hero-description {
        font-size: 1rem;
      }

      .page-6fff-apk__hero-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .page-6fff-apk__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-6fff-apk__section-title {
        font-size: 1.8rem;
      }

      .page-6fff-apk__product-grid,
      .page-6fff-apk__provider-grid,
      .page-6fff-apk__payment-grid {
        grid-template-columns: 1fr;
      }

      .page-6fff-apk__product-item,
      .page-6fff-apk__provider-item,
      .page-6fff-apk__payment-item {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-6fff-apk__product-image,
      .page-6fff-apk__provider-logo,
      .page-6fff-apk__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-6fff-apk__step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .page-6fff-apk__step-content h3 {
        text-align: center;
      }

      .page-6fff-apk__faq-question {
        font-size: 1rem;
        padding: 0.8rem 1rem;
      }

      .page-6fff-apk__faq-answer {
        padding: 0 1rem;
      }

      .page-6fff-apk__faq-item.active .page-6fff-apk__faq-answer {
        padding: 1rem !important;
      }

      .page-6fff-apk__cta-text {
        font-size: 1.2rem;
      }

      .page-6fff-apk__floating-buttons {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.8rem 0.5rem;
      }

      .page-6fff-apk__floating-button {
        font-size: 0.95rem;
        padding: 0.7rem 0.3rem;
        max-width: 160px;
      }
    }

    @media (max-width: 480px) {
      .page-6fff-apk__hero-title {
        font-size: 2rem;
      }

      .page-6fff-apk__section-title {
        font-size: 1.6rem;
      }

      .page-6fff-apk__floating-button {
        font-size: 0.9rem;
        padding: 0.6rem 0.2rem;
      }
    }
  