* {
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      margin: 0;
      padding: 0;
    }

    .navbar {
      width: 100%;
      height: 50px;
      background: #1e1e24;
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1200;
    }

    .navbar-container {
      width: 100%;
      max-width: 1130px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 35px;
      width: auto;
      object-fit: contain;
      margin-top: 4px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-links li a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
    }

    .menu-toggle {
      display: none;
      width: 20px;
      height: 16px;
      cursor: pointer;
      position: relative;
    }

    .menu-toggle span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #fff;
      transition: transform 0.3s, opacity 0.3s;
      border-radius: 2px;
    }

    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 6px; }
    .menu-toggle span:nth-child(3) { top: 12px; }

    .menu-toggle.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 50px;
      right: -180px;
      width: 180px;
      height: 100vh;
      background: #1e1e24;
      transition: right 0.4s ease;
      z-index: 1199;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-nav-links {
      padding: 40px 20px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }

    .mobile-nav-links a {
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      display: block;
      width: 100%;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }











   .section {
      padding: 20px;
      text-align: center;
    }
    .all-apps-section {
      padding-top: 10px;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    .apps-title {
      display: inline-flex;
      align-items: center;
      background-image: linear-gradient(to right, #0a3d1a, #2e8b57);
      color: #fff;
      padding: 6px 12px;
      border-radius: 9999px;
      font-size: 20px;
      font-weight: bold;
      position: relative;
    }
    .apps-title .circle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border: 2px solid #fff;
      border-radius: 50%;
      margin: 0 8px;
      font-size: 12px;
    }
    .hero-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 2px;
      overflow-x: auto;
      padding-bottom: 4px;
    }
    .hero-card {
      flex: 1 0 calc(33.33% - 4px);
      max-width: calc(33.33% - 4px);
      border-radius: 10px;
      padding: 8px;
      text-align: center;
    }
    .hero-card img {
      width: 80px;
      height: 80px;
      border-radius: 10px;
      object-fit: cover;
      margin-bottom: 5px;
    }
    .app-name {
      font-size: 13px;
      font-weight: bold;
    }
    .info-block {
      font-size: 10px;
      font-weight: bold;
      margin: 3px 0 6px;
      line-height: 1.2;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .info-block .bonus {
      color: #b50000;
    }
    .download-btn {
      background-color: #fff;
      border: 2px solid #19692c;
      border-radius: 9999px;
      color: #19692c;
      font-size: 12px;
      font-weight: bold;
      padding: 6px 10px;
      cursor: pointer;
      transition: transform .2s;
      display: flex;
      align-items: center;
      gap: 4px;
      justify-content: center;
    }
    .download-btn i {
      font-size: 12px;
    }
    .download-btn:hover {
      transform: scale(.95);
    }
    .app-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      width: 100%;
    }
    .app-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      border-radius: 10px;
      width: 100%;
      max-width: 800px;
      background-color: #fff;
    }
    .app-info {
      display: flex;
      align-items: center;
      gap: 16px;
      flex: 1;
    }
    .app-info img {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      object-fit: cover;
    }
    .app-info-text {
      display: flex;
      flex-direction: column;
      text-align: left;
      gap: 4px;
    }
    .app-info-text .app-name {
      font-size: 14px;
      font-weight: 600;
      color: #111;
    }
    .app-info-text .bonus,
    .app-info-text .withdraw {
      font-size: 12px;
      font-weight: 500;
      color: #333;
    }
    .app-info-text .bonus {
      color: #b50000;
    }
    .app-info-text .withdraw {
      color: #555;
    }

    @media (max-width: 768px) {
      .hero-card {
        flex: 0 0 30%;
        max-width: 30%;
      }
      .app-item {
        max-width: 100%;
        width: 100%;
      }
    }
    @media (max-width: 480px) {
      .hero-card {
        flex: 0 0 32%;
        max-width: 32%;
      }
      .hero-card img {
        width: 70px;
        height: 70px;
      }
      .download-btn {
        font-size: 11px;
        padding: 5px 9px;
      }
      .info-block {
        font-size: 9px;
        flex-direction: column;
        gap: 6px;
      }
      .app-item {
        max-width: 100%;
        width: 100%;
      }
    }
    @media (min-width: 481px) {
      .hero-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
      }
    }

















    .rinahero {
      background-color: #1e1e24;
      padding: 70px 20px 60px;
      text-align: center;
    }
    .rinahero h1 {
      font-size: 2.8rem;
      font-weight: 600;
      color: #dcdcdc;
      margin-bottom: 15px;
    }
    .rinahero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #dcdcdc;
    }
    .rinasearch-bar {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      background: #2c2c34;
      border-radius: 50px;
      overflow: hidden;
      border: 1px solid #444;
      height: 50px;
    }
    .rinasearch-bar input {
      flex: 1;
      padding: 12px 18px;
      border: none;
      background: transparent;
      color: #fff;
      font-size: 1rem;
      outline: none;
    }
    .rinasearch-bar button {
      background: #444;
      border: none;
      padding: 0 20px;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .rinasearch-bar button i { font-size: 1.4rem; }
    .rinasearch-bar button:hover { background: #666; }
    .rinasuggestion-box {
      max-width: 520px;
      margin: 20px auto 0;
      background: #2c2c34;
      border-radius: 12px;
      border: 1px solid #3c3c44;
      display: none;
    }
    .rinasuggestion-list {
      display: flex;
      flex-direction: column;
      padding: 12px;
      gap: 10px;
    }
    .rinasuggestion-item {
      display: flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .rinasuggestion-item:hover {
      background-color: #3a3a44;
    }
    .rinasuggestion-item img {
      width: 42px;
      height: 42px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 12px;
      flex-shrink: 0;
    }
    .rinasuggestion-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    .rinaapp-name {
      font-size: 0.95rem;
      font-weight: 500;
      color: #fff;
      text-align: left;
    }
    .rinaapp-meta {
      font-size: 0.8rem;
      color: #bbb;
      margin-top: 2px;
      text-align: left;
    }
    @media (max-width: 600px) {
      .rinahero {
        padding: 60px 16px 40px;
      }
      .rinahero h1 { font-size: 1.6rem; margin-bottom: 10px; }
      .rinahero p { font-size: 0.9rem; margin-bottom: 20px; }
      .rinasearch-bar { height: 40px; }
      .rinasearch-bar input { padding: 10px 14px; font-size: 0.9rem; }
      .rinasearch-bar button i { font-size: 1.2rem; }
      .rinasuggestion-item img { width: 38px; height: 38px; }
      .rinaapp-name { font-size: 0.9rem; }
      .rinaapp-meta { font-size: 0.75rem; }
    }




















    .site-footer {
      background: #1e1e24;
      color: rgba(255,255,255,0.8);
      font-family: Arial, sans-serif;
      font-size: 14px;
      line-height: 1.5;
    }
    .footer-divider {
      height: 1px;
      background: rgba(255,255,255,0.2);
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 10px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }
    .footer-logo img {
      max-height: 40px;
      opacity: 0.8;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .footer-links a {
      color: inherit;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover {
      color: rgba(255,255,255,0.6);
    }
    .footer-copy {
      font-size: 12px;
      margin-top: 10px;
      color: rgba(255,255,255,0.6);
    }
    @media (max-width: 600px) {
      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
      .footer-links {
        justify-content: center;
        margin: 15px 0;
      }
      .footer-copy {
        margin-bottom: 15px;
      }
    }














    main {
            width: 90vw;
            padding: 0;
        }

        @media (min-width: 640px) {
            main {
                width: 100%;
                max-width: 600px;
                padding: 2rem;
            }
        }

        .shreya-header-row {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .shreya-header-row img {
            width: 144px;
            height: 144px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        @media (min-width: 640px) {
            .shreya-header-row img {
                width: 192px;
                height: 192px;
            }
        }

        .shreya-title-container {
            flex: 1;
            text-align: center;
        }

        .shreya-app-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
            word-wrap: break-word;
        }

        .shreya-stars {
            display: inline-flex;
            gap: 0.25rem;
        }

        .shreya-latest-apk {
            font-size: 0.875rem;
            color: #dc2626;
            margin-top: 0.25rem;
        }

        .shreya-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .shreya-stat {
            text-align: center;
            white-space: nowrap;
        }

        .shreya-stat-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: #4b5563;
        }

        .shreya-stat-value {
            font-size: 0.875rem;
            font-weight: 400;
            color: #4b5563;
        }

        .shreya-divider {
            font-size: 1.5rem;
            color: #4b5563;
            line-height: 1.5;
        }

        .shreya-download-container {
            text-align: center;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .shreya-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 1rem;
            height: 2.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #ffffff;
            border-radius: 9999px;
            transition: transform 0.2s ease;
            text-decoration: none;
            width: 100%;
        }

        .shreya-download-btn {
            background: linear-gradient(to right, #166534, #14532d);
        }

        .shreya-telegram-btn {
            background: #0088cc;
        }

        .shreya-btn:hover {
            transform: translateY(-2px);
        }

        .shreya-btn i {
            margin-right: 0.5rem;
        }

        @media (min-width: 640px) {
            .shreya-btn {
                width: 300px;
                margin: 0 auto;
            }
        }

        .shreya-content-section {
            border-top: 1px solid #e5e7eb;
            padding-top: 4rem;
            margin-top: 2rem;
        }

        .shreya-content-section h2 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #111827;
        }

        .shreya-content-section p {
            font-size: 0.875rem;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 1.5rem;
        }

        .shreya-section-item {
            margin-top: 2rem;
        }

        .shreya-section-item h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .shreya-section-item p {
            font-size: 0.875rem;
            line-height: 1.6;
            color: #4b5563;
        }














        section.zxterms {
      width: 100%;
      background:rgb(255, 255, 255);
      padding: 40px 8px 0;
      display: flex;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 40px; /* ✅ Added gap below the section */
    }

    .zxcontainer {
      width: 100%;
      max-width: 1260px;
      padding: 0 8px;
    }

    @media (min-width: 640px) {
      .zxcontainer {
        padding: 0 16px;
      }
    }

    @media (min-width: 768px) {
      .zxcontainer {
        padding: 0 24px;
      }
    }

    @media (min-width: 1024px) {
      .zxcontainer {
        padding: 0 48px;
      }
    }

    @media (min-width: 1280px) {
      .zxcontainer {
        padding: 0 80px;
      }
    }

    h2 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 32px;
      color: #111827;
      text-align: left;
    }

    @media (min-width: 640px) {
      h2 {
        font-size: 32px;
      }
    }

    h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 24px 0 4px;
      color: #1f2937;
    }

    p {
      font-size: 15px;
      font-weight: 500;
      color: #374151;
      margin-bottom: 16px;
    }

    .zxupdated {
      font-size: 14px;
      font-weight: 600;
      color: #4b5563;
    }

    a {
      color: #2563eb;
      text-decoration: underline;
    }

    .zxthank-you {
      margin: 32px 0 0;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      color: #4b5563;
    }

    .zxstack > * + * {
      margin-top: 24px;
    }

    .zxcontent > * + * {
      margin-top: 16px;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 16px 0;
    }

    ul li {
      font-size: 15px;
      font-weight: 500;
      color: #374151;
      margin-bottom: 8px;
    }

















    .rimaslider {
  --width: 200px;
  --height: 50px;
  --quantity: 43;
  width: 100%;
  height: var(--height);
  overflow: hidden;
  position: relative;
}

.rimaslider::before,
.rimaslider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.rimaslider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 60%, transparent);
}

.rimaslider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 60%, transparent);
}

.rimalist {
  display: flex;
  gap: 8px;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.rimaitem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width);
  height: var(--height);
  flex-shrink: 0;
  position: absolute;
  left: 100%;
  animation: rimaAutoRun 80s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc((80s / var(--quantity)) * (var(--position) - 1) - 80s) !important;
  will-change: left, filter;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.rimaslider:hover .rimaitem {
  animation-play-state: paused !important;
  filter: grayscale(1);
}

.rimaitem:hover {
  filter: grayscale(0);
}

.rimaslider[reverse="true"] .rimaitem {
  animation: rimaReversePlay 80s linear infinite;
}

@keyframes rimaAutoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}

@keyframes rimaReversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}

@media (max-width: 600px) {
  .rimaslider {
    --width: 140px;
  }

  .rimalist {
    gap: -2px;
  }

  .rimaitem {
    font-size: 14px;
  }
}
