/* Merged shared component styles (auto-generated from inline blocks) */
.navbar-search { display: flex;
      align-items: center;
      justify-content: flex-end; /* ခလုတ်ကို ညာဘက်ပို့ရန် */
      padding: 15px 20px;
      gap: 10px;
      width: 100%; /* Screen အပြည့်ယူရန် ဒီစာကြောင်း ထပ်ထည့်ပါ */
      box-sizing: border-box; /* Padding ကြောင့် ဘေးမထွက်အောင် ထိန်းပေးရန် */ }
.search-btn { background: linear-gradient(to right, #2ed573, #00d2ff); /* Gradient အရောင် */
      border: none;
      color: #fff;
      padding: 10px 15px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: bold; }
.search-btn:hover { background: linear-gradient(to right, #00d2ff, #2ed573);
      transform: scale(1.05); }
.search-modal { display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 20px; }
.search-modal.active { display: flex; }
.search-modal-content { background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 30px;
      padding: 40px;
      width: 100%;
      max-width: 600px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.search-modal-header { display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px; }
.search-modal-title { font-size: 1.8rem;
      color: #00d2ff;
      font-weight: bold; }
.close-search { background: none;
      border: none;
      color: #00d2ff;
      font-size: 1.5rem;
      cursor: pointer;
      transition: 0.3s; }
.close-search:hover { color: #fff; }
.search-input-wrapper { position: relative;
      margin-bottom: 25px; }
.search-input { width: 100%;
      padding: 15px 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      font-size: 1rem;
      transition: 0.3s; }
.search-input:focus { outline: none;
      background: rgba(255, 255, 255, 0.1);
      border-color: #00d2ff;
      box-shadow: 0 0 15px rgba(0, 210, 255, 0.3); }
.search-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.search-results { max-height: 400px;
      overflow-y: auto; }
.search-result-item { background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 15px;
      margin-bottom: 12px;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 15px;
      text-decoration: none;
      color: white; }
.search-result-item:hover { background: rgba(0, 210, 255, 0.1);
      border-color: #00d2ff;
      transform: translateX(5px); }
.search-result-icon { font-size: 1.5rem;
      color: #00d2ff;
      min-width: 30px;
      text-align: center; }
.search-result-name { font-weight: bold;
      font-size: 1rem; }
.no-results { text-align: center;
      color: rgba(255, 255, 255, 0.6);
      padding: 40px 20px;
      font-size: 1.1rem; }
.app-detail-page { min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 15px; }
.app-list { display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      max-width: 900px;
      width: 100%;
      justify-content: center; }
.app-item { background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 20px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      transition: 0.3s ease;
      position: relative;
      overflow: hidden; }
.app-item:hover { transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.app-item img { width: 60px;
      height: 60px;
      border-radius: 15px;
      object-fit: contain;
      margin-bottom: 5px; }
.app-info h3 { margin: 0;
      font-size: 0.9rem;
      color: #00d2ff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%; }
.app-info p { margin: 0;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.2;
      height: 28px;
      overflow: hidden; }
.view-plans-btn { background: linear-gradient(45deg, #2ed573, #00d2ff);
      border: none;
      color: white;
      padding: 8px 0;
      width: 100%;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: bold;
      cursor: pointer;
      margin-top: 5px; }
.faq-container { max-width: 800px;
      width: 100%;
      margin-top: 50px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 20px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,0.1); }
.faq-title { text-align: center;
      color: #00d2ff;
      margin-bottom: 20px;
      font-size: 1.3rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 10px; }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%;
      background: none;
      border: none;
      color: white;
      text-align: left;
      padding: 15px;
      font-size: 0.95rem;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s; }
.faq-question:hover { color: #2ed573; }
.faq-question.active { color: #00d2ff; }
.faq-question i { transition: 0.3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: rgba(255,255,255,0.05);
      border-radius: 10px; }
.faq-answer p { padding: 15px;
      margin: 0;
      color: rgba(255,255,255,0.8);
      font-size: 0.9rem;
      line-height: 1.6;
      white-space: pre-line;
      word-break: break-word; }
.modal-overlay { display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 999;
      justify-content: center;
      align-items: center;
      padding: 20px;
      backdrop-filter: blur(5px); }
.modal-content { background: #1e1e1e;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 25px;
      padding: 30px 20px;
      width: 100%;
      max-width: 380px;
      text-align: center;
      position: relative;
      animation: popUp 0.3s ease-out;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      max-height: 90vh;
      overflow-y: auto; }
@keyframes popUp { from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; } }
.close-modal { position: absolute;
      top: 15px;
      right: 20px;
      font-size: 24px;
      color: #888;
      cursor: pointer; }
.modal-title { color: #00d2ff;
      margin-bottom: 20px;
      font-size: 1.3rem; }
.plan-btn { display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255,255,255,0.05);
      color: white;
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 12px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.05);
      transition: 0.2s; }
.plan-btn:hover { background: rgba(255,255,255,0.1); /* နောက်ခံကို အစိမ်းမပြဘဲ ခဲရောင်ဖျော့ဖျော့လေးသာပြရန် */
      border-color: #00d2ff; /* ဘောင်ကို အပြာရောင်လိုင်းလေးပြရန် */
      transform: scale(1.02); }
.plan-info { text-align: left; }
.plan-name { display: block; font-size: 0.9rem; font-weight: bold; }
.plan-desc { display: block; font-size: 0.75rem; opacity: 0.7; color: #ffeb3b; }
.plan-price { font-weight: bold; color: #2ed573; white-space: nowrap; }
.plan-btn:hover .plan-price { color: white; }
.page-header { text-align: center;
      padding: 30px 16px 14px;
      margin-bottom: 10px; }
.page-title { font-size: clamp(1.6rem, 5vw, 2.6rem);
      font-weight: 800;
      letter-spacing: 1px;
      margin: 0 0 10px;
      display: inline-block;
      position: relative;

      background: linear-gradient(135deg, #ffffff 10%, #00d2ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      text-shadow: 0 6px 18px rgba(0,210,255,0.25);
      padding-bottom: 12px; }
.page-title::after { content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(to right, #2ed573, #00d2ff);
      opacity: 0.95; }
.page-subtitle { margin: 0;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.70);
      line-height: 1.4; }
.page-title.page-title--small { font-size: clamp(1.1rem, 4vw, 1.45rem);
      font-weight: 800;
      padding-bottom: 10px; }
.page-title.page-title--small::after { width: 58px;
      height: 3px; }
.app-logo { width: 48px;
  height: 48px;
  object-fit: contain; }
.chatgpt-logo { filter: brightness(0) invert(1); }
.gamma-logo { filter: brightness(0) invert(1); }
.grok-logo { filter: brightness(0) invert(1); }
.perplexity-logo { filter: brightness(0) invert(1); }
.app-list { display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      max-width: 900px;
      width: 100%; }
.app-item img { width: 60px;
      height: 60px;
      border-radius: 15px;
      object-fit: contain;
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
      margin-bottom: 5px;
      background: rgba(255,255,255,0.04); }
.view-plans-btn { background: linear-gradient(45deg, #2ed573, #00d2ff);
      border: none;
      color: white;
      padding: 8px 0;
      width: 100%;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: bold;
      cursor: pointer;
      margin-top: 5px;
      transition: 0.25s ease; }
.view-plans-btn:hover { transform: translateY(-1px); }
.contact-btn { border: none;
      color: #fff;
      padding: 8px 0;
      width: 100%;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: 0.25s ease;
      margin-top: 5px; }
.contact-btn:hover { transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.25); }
.contact-btn.messenger { background: linear-gradient(45deg, #ff9f43, #ee5253); }
.contact-btn.telegram { background: linear-gradient(45deg, #00d2ff, #2ed573); }
.faq-container { max-width: 800px;
      width: 100%;
      margin-top: 50px;
      background: rgba(0,0,0,0.3);
      border-radius: 20px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,0.1); }
.modal-overlay { display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      z-index: 999;
      justify-content: center;
      align-items: center;
      padding: 20px;
      backdrop-filter: blur(5px); }
.modal-content { background: #1e1e1e;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 25px;
      padding: 30px 20px;
      width: 100%;
      max-width: 380px;
      text-align: center;
      position: relative;
      animation: popUp 0.3s ease-out;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      max-height: 90vh;
      overflow-y: auto; }
.modal-subtitle { margin: 0 0 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.35; }
.plan-btn { display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255,255,255,0.05);
      color: white;
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 12px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.05);
      transition: 0.2s;
      gap: 12px; }
.plan-btn:hover { background: rgba(255,255,255,0.1); /* အစိမ်းရောင်အစား နောက်ခံခဲရောင်ဖျော့ဖျော့သာပြရန် */
      border-color: #00d2ff; /* ဘေးဘောင်ကို အပြာရောင်လိုင်းလေးပြရန် */
      transform: scale(1.02); }
.adobe-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.picsart-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.navbar-search { display: flex;
      align-items: center;
      justify-content: flex-end; 
      padding: 15px 20px;
      gap: 10px;
      width: 100%;
      box-sizing: border-box; }
.search-btn { background: linear-gradient(to right, #2ed573, #00d2ff);
      border: none;
      color: #fff;
      padding: 10px 15px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: bold; }
.app-item img { width: 60px;
      height: 60px;
      border-radius: 15px;
      object-fit: contain; /* ✅ logo မပြတ်အောင် */
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
      margin-bottom: 5px; }
.modal-content { background: #1e1e1e;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 25px;
      padding: 30px 20px;
      width: 100%;
      max-width: 380px;
      text-align: center;
      position: relative;
      animation: popUp 0.3s ease-out;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      max-height: 90vh;   /* ✅ plan များရင် scroll */
      overflow-y: auto; }
.app-logo { width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 1; }
.tidal-logo { filter: brightness(0) invert(1); }
.modal-content { background: #1e1e1e;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 25px;
      padding: 30px 20px;
      width: 100%;
      max-width: 380px;
      text-align: center;
      position: relative;
      animation: popUp 0.3s ease-out;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      max-height: 90vh;         /* ✅ plans များရင် scroll */
      overflow-y: auto; }
* { box-sizing: border-box; }
.plan-category { color: #00d2ff;
      font-weight: bold;
      margin: 15px 0 10px;
      text-align: left;
      padding-left: 5px; }
.peacock-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.disney-logo { background: whitesmoke !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.faq-answer a.telegram-post-link { display: inline-block;  /* block မဟုတ်ဘဲ inline-block သုံး */
    text-align: center;     /* text center */
    margin: 10px auto;      /* auto margin ဖြင့် center */
    color: #0cdada;         /* သင်လိုချင်တဲ့ color */
    text-decoration: underline; }
.faq-link { color: #2ed573;
      text-decoration: underline;
      font-weight: bold; }
.plan-name { display: block; 
      font-size: 0.8rem; /* 0.9rem ကနေ 0.8rem ကို သေးလိုက်ပါတယ် */
      font-weight: bold; 
      white-space: normal; /* စာရှည်ရင် အောက်တစ်ကြောင်း ဆင်းသွားအောင်လို့ပါ */
      line-height: 1.3;
      padding-right: 10px; /* ဘေးက စျေးနှုန်းနဲ့ အရမ်းမကပ်သွားအောင်ပါ */ }
.app-item { background: rgba(255,255,255,0.1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 20px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      transition: 0.3s ease;
      position: relative;
      overflow: hidden; }
.app-item:hover { transform: translateY(-5px);
      background: rgba(255,255,255,0.15);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.app-item img { width: 60px;
      height: 60px;
      border-radius: 15px;
      object-fit: contain;
      margin-bottom: 5px;
      background: rgba(255,255,255,0.04); }
.app-info p { margin: 0;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.2;
      min-height: 28px;
      overflow: hidden; }
.faq-question { width: 100%;
      background: none;
      border: none;
      color: white;
      text-align: left;
      padding: 15px;
      font-size: 0.95rem;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s;
      gap: 12px; }
.faq-answer p { padding: 15px;
      margin: 0;
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      line-height: 1.6;
      white-space: pre-line;
      word-break: break-word; }
.faq-link { color: #2ed573;
      text-decoration: underline; }
.modal-content { background: #1e1e1e;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 25px;
      padding: 26px 18px;
      width: 100%;
      max-width: 420px; /* ✅ PC plans စာများလို့ နည်းနည်းချဲ့ */
      text-align: center;
      position: relative;
      animation: popUp 0.3s ease-out;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      max-height: 90vh;
      overflow-y: auto; }
@keyframes popUp { from{ transform: scale(0.8); opacity: 0; }
      to{ transform: scale(1); opacity: 1; } }
.close-modal { position: absolute;
      top: 14px;
      right: 18px;
      font-size: 24px;
      color: #888;
      cursor: pointer; }
.modal-title { color: #00d2ff;
      margin: 0 0 8px;
      font-size: 1.25rem; }
.plan-category { color: #00d2ff;
      font-weight: 800;
      margin: 14px 0 10px;
      text-align: left;
      padding-left: 6px;
      font-size: 0.95rem; }
.plan-note { text-align: left;
      margin: 0 0 12px;
      padding: 12px;
      border-radius: 14px;
      border: 1px dashed rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.75);
      font-size: 0.85rem;
      line-height: 1.55; }
.plan-btn { display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255,255,255,0.05);
      color: white;
      padding: 14px 14px;
      margin-bottom: 10px;
      border-radius: 12px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.06);
      transition: 0.2s;
      gap: 12px; }
.plan-name { display: block; font-size: 0.9rem; font-weight: 800; }
.plan-desc { display: block; font-size: 0.75rem; opacity: 0.75; color: #ffeb3b; }
.plan-price { font-weight: 900; color: #2ed573; white-space: nowrap; }
.plan-btn:hover .plan-price { color: #fff; }
.page-header { text-align: center;
      padding: 22px 14px 10px;
      margin-bottom: 10px; }
.page-title { font-size: clamp(1.1rem, 4vw, 1.45rem);
      font-weight: 900;
      letter-spacing: 1px;
      margin: 0 0 10px;
      display: inline-block;
      position: relative;
      background: linear-gradient(135deg, #ffffff 10%, #00d2ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 6px 18px rgba(0,210,255,0.25);
      padding-bottom: 10px; }
.page-title::after { content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 58px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(to right, #2ed573, #00d2ff);
      opacity: 0.95; }
.page-subtitle { margin: 0;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.70);
      line-height: 1.4; }
.hiddify-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.jumpjump-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.expressvpn-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.nord-logo { background: white !important;
  padding: 5px;
  border-radius: 12px;
  box-sizing: border-box; }
.navbar-search { display: flex;
      align-items: center;
      justify-content: flex-end; /* ခလုတ်ကို ညာဘက်ပို့ရန် */
      padding: 15px 20px;
      gap: 10px; }
.header { text-align: center;
      padding: 50px 20px 30px; }
.header h1 { font-size: clamp(1.5rem, 5vw, 2.5rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;

      background: linear-gradient(135deg, #ffffff 20%, #00d2ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      text-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
      padding-bottom: 15px; }
.header h1::after { content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #2ed573, #00d2ff);
      border-radius: 2px; }
.card-link { text-decoration: none;
      color: inherit;
      display: block; }
.card-link:hover .product-card { transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.15);
      transition: 0.3s;
      border-color: #00d2ff;
      box-shadow: 0 10px 25px rgba(0, 210, 255, 0.2); }
.bot-cta-container { padding: 10px 20px 28px;
      max-width: 1100px;
      margin: 0 auto; }
.bot-cta-card { position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 24px;
      align-items: center;
      padding: 28px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(46, 213, 115, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 210, 255, 0.22), transparent 35%),
        rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px); }
.bot-cta-badge { display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      color: #ffffff;
      background: rgba(0, 210, 255, 0.16);
      border: 1px solid rgba(0, 210, 255, 0.34);
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 14px; }
.bot-cta-title { color: #ffffff;
      font-size: clamp(1.35rem, 3vw, 2rem);
      line-height: 1.25;
      margin: 0 0 12px;
      font-weight: 800; }
.bot-cta-text { color: rgba(255, 255, 255, 0.82);
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 18px; }
.bot-cta-actions { display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px; }
.bot-primary-btn,
    .bot-secondary-btn { display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      text-decoration: none;
      padding: 12px 18px;
      border-radius: 16px;
      font-weight: 800;
      transition: 0.3s; }
.bot-primary-btn { color: #ffffff;
      background: linear-gradient(to right, #2ed573, #00d2ff);
      box-shadow: 0 12px 25px rgba(0, 210, 255, 0.2); }
.bot-secondary-btn { color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16); }
.bot-primary-btn:hover,
    .bot-secondary-btn:hover { transform: translateY(-3px); }
.bot-steps { display: grid;
      gap: 12px; }
.bot-step { display: flex;
      gap: 12px;
      align-items: center;
      padding: 13px 14px;
      border-radius: 18px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-weight: 700;
      line-height: 1.35; }
.bot-step i { color: #00d2ff;
      min-width: 20px;
      text-align: center; }
@media (max-width: 768px) {
  .search-btn { padding: 8px 12px;
        font-size: 0.9rem; }
  .search-modal-content { padding: 25px;
        border-radius: 20px; }
  .search-modal-title { font-size: 1.4rem; }
  .page-header { padding: 22px 14px 10px; }
  .page-subtitle { font-size: 0.85rem; }
  .page-title.page-title--small { font-size: 1.15rem; }
  body { overflow-x: hidden; }
  *, *::before, *::after { box-sizing: border-box; }
  .header { padding: 34px 16px 18px; }
  .header h1 { letter-spacing: 0.5px;
        padding-bottom: 12px;
        margin-bottom: 12px; }
  .header h1::after { width: 60px;
        height: 3px; }
  .product-container { display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;

        padding: 0 14px 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important; }
  .product-container .card-link { width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important; }
  .product-container .product-card { width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 14px 12px 16px !important;
        border-radius: 18px !important;
        overflow: hidden; }
  .product-container .product-card img { width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 14px !important; }
  .product-container .product-card h3 { font-size: 1.05rem !important;
        margin: 12px 0 6px !important;
        line-height: 1.2 !important;
        text-align: center; }
  .product-container .product-card p { font-size: 0.85rem !important;
        margin: 0 !important;
        line-height: 1.35 !important;
        text-align: center;
        word-break: break-word; }
  .card-link:hover .product-card { transform: none !important; }
  .guide-container { padding: 0 12px !important;
        margin-top: 14px !important; }
  .guide-box { padding: 12px 10px !important;
        border-radius: 16px !important; }
  .guide-box h2 { font-size: 0.92rem !important;
        margin: 0 0 10px 0 !important;
        line-height: 1.25 !important;
        text-align: center !important; }
  .guide-box ul { list-style: none !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important; }
  .guide-box ul li { display: flex !important;
        gap: 8px !important;
        align-items: flex-start !important;
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        margin-bottom: 7px !important; }
  .guide-box ul li i { font-size: 0.85rem !important;
        margin: 2px 0 0 0 !important;
        flex: 0 0 auto !important; }
  .guide-nav { display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 10px !important; }
  .guide-nav .nav-btn { font-size: 0.78rem !important;
        padding: 8px 8px !important;
        border-radius: 12px !important;
        line-height: 1.15 !important;

        height: auto !important;
        min-height: 0 !important;

        white-space: normal !important;
        text-align: center !important; }
  .guide-nav .nav-btn i { font-size: 0.85rem !important;
        margin-right: 6px !important; }
  .guide-nav .buy-now { grid-column: span 2 !important;
        font-size: 0.82rem !important;
        padding: 10px 10px !important; }
  .bot-cta-container { padding: 8px 12px 18px !important; }
  .bot-cta-card { grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 18px 14px !important;
        border-radius: 22px !important; }
  .bot-cta-badge { font-size: 0.78rem !important;
        padding: 7px 10px !important;
        margin-bottom: 10px !important; }
  .bot-cta-title { font-size: 1.1rem !important;
        line-height: 1.35 !important; }
  .bot-cta-text { font-size: 0.84rem !important;
        line-height: 1.55 !important;
        margin-bottom: 12px !important; }
  .bot-cta-actions { display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important; }
  .bot-primary-btn,
      .bot-secondary-btn { font-size: 0.82rem !important;
        padding: 10px 12px !important;
        border-radius: 14px !important; }
  .bot-step { font-size: 0.80rem !important;
        padding: 10px 11px !important;
        border-radius: 14px !important; }
  .site-footer { padding: 18px 14px !important; }
  .site-footer p { font-size: 0.85rem !important;
        text-align: center; }
  .footer-links a { font-size: 0.85rem !important; }
}
@media (min-width: 768px) {
  .app-list { grid-template-columns: repeat(3, 1fr);
        gap: 25px; }
}
@media (max-width: 480px) {
  .modal-overlay { padding: 12px;                 /* ✅ ဘေးကပ်တာ လျော့ */
    align-items: center;
    justify-content: center; }
  .modal-content { width: 100%;
    max-width: calc(100vw - 24px); /* ✅ screen ထဲမှာပဲနေ */
    padding: 20px 14px;            /* ✅ phone မှာ padding လျော့ */
    border-radius: 18px;           /* ✅ ထောင့်နည်းနည်းသေး */ }
  .close-modal { top: 10px;
    right: 12px; }
  .modal-title { font-size: 1.15rem;
    margin-bottom: 14px; }
  .plan-btn { padding: 12px;                 /* ✅ plan card သေးသေး */ }
  .plan-name { font-size: 0.88rem; }
  .plan-desc { font-size: 0.72rem; }
  .plan-price { font-size: 0.95rem; }
  .app-item .app-info h3 { white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
        line-height: 1.25;
        font-size: 0.8rem; }
  .express-whole-card .app-info h3,
  .hiddify-card .app-info h3 { white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    line-height: 1.25;
    font-size: 0.8rem; }
  .express-whole-card .app-info p,
  .hiddify-card .app-info p { min-height: auto; }
}
@media (max-width: 390px) {
  .product-container { gap: 12px !important;
        padding: 0 12px 10px !important; }
  .guide-container { padding: 0 10px !important; }
  .guide-box { padding: 10px 9px !important; }
  .guide-box h2 { font-size: 0.88rem !important; }
  .guide-box ul li { font-size: 0.80rem !important;
        margin-bottom: 6px !important; }
  .guide-nav { gap: 7px !important; }
  .guide-nav .nav-btn { font-size: 0.76rem !important;
        padding: 8px 7px !important; }
  .guide-nav .buy-now { font-size: 0.80rem !important;
        padding: 9px 9px !important; }
}

/* ===== Sticky site header ===== */
.site-header {
  position: sticky; top: 0; z-index: 1500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-brand {
  display: flex; align-items: center; gap: 8px;
  color: #00d2ff; font-weight: bold; font-size: 1.05rem;
  text-decoration: none; letter-spacing: 0.5px;
}
.site-brand i { font-size: 1.2rem; }
.site-header-actions { display: flex; align-items: center; gap: 8px; }
.hdr-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 0.88rem; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: 0.25s;
}
.hdr-btn:hover { background: rgba(255,255,255,0.18); }
.hdr-btn--bot { background: linear-gradient(to right, #2ea6ff, #00d2ff); border: none; color: #04283a; }
.hdr-btn--bot:hover { filter: brightness(1.1); }
@media (max-width: 600px) {
  .hdr-btn span { display: none; }
  .hdr-btn { padding: 8px 11px; }
  .site-brand { font-size: 0.95rem; }
}

/* ===== Homepage category grid ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1100px; margin: 0 auto; padding: 0 20px 40px;
}
.category-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px; padding: 26px 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  text-decoration: none; color: #fff;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.category-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); border-color: rgba(0,210,255,0.5); }
.category-card .cat-icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,210,255,0.14);
  color: #00d2ff; font-size: 1.5rem;
}
.category-card h3 { margin: 0; font-size: 1rem; line-height: 1.35; }
.category-card .cat-count {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.09); padding: 3px 10px; border-radius: 12px;
}
.category-card--alt .cat-icon { background: rgba(46,213,115,0.15); color: #2ed573; }

/* ===== Review preview strip ===== */
.review-preview {
  max-width: 1100px; margin: 0 auto 50px; padding: 0 20px;
}
.review-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.review-preview-head h2 { margin: 0; font-size: 1.2rem; color: #fff; }
.review-preview-head a { color: #00d2ff; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.review-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.review-strip img {
  width: 100%; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12);
  display: block;
}

/* ===== Plan modal: contact-admin & buy buttons ===== */
.plan-contact-row { display: flex; gap: 8px; flex-shrink: 0; }
.plan-contact-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 11px; border-radius: 16px; font-size: 0.8rem; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.25); color: #fff;
  transition: 0.25s; white-space: nowrap;
}
.plan-contact-btn:hover { background: rgba(255,255,255,0.15); }
.plan-contact-btn--tg { color: #2ea6ff; border-color: rgba(46,166,255,0.5); }
.plan-contact-btn--fb { color: #7aa7ff; border-color: rgba(122,167,255,0.5); }

/* ===== Payment page order summary ===== */
.order-summary {
  max-width: 900px; margin: 20px auto 0; padding: 18px 22px;
  background: rgba(0,210,255,0.09);
  border: 1px solid rgba(0,210,255,0.35);
  border-radius: 18px; color: #fff;
}
.order-summary h3 { margin: 0 0 6px; color: #00d2ff; font-size: 1.05rem; }
.order-summary p { margin: 4px 0; font-size: 0.95rem; }
.order-summary .os-price { color: #2ed573; font-weight: bold; }

/* ===== Web order form ===== */
.order-form-card {
  max-width: 560px; margin: 30px auto 60px; padding: 28px 24px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; color: #fff;
}
.order-form-card h2 { margin: 0 0 6px; color: #00d2ff; font-size: 1.25rem; }
.order-form-card .of-sub { margin: 0 0 20px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.of-field { margin-bottom: 16px; }
.of-field label { display: block; font-size: 0.86rem; margin-bottom: 6px; color: rgba(255,255,255,0.85); }
.of-field input[type="text"], .of-field input[type="tel"], .of-field select, .of-field textarea {
  width: 100%; box-sizing: border-box;
  padding: 11px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff; font-size: 0.95rem;
}
.of-field input:focus, .of-field select:focus, .of-field textarea:focus { outline: none; border-color: #00d2ff; }
.of-field select option { background: #10222b; }
.of-file {
  border: 2px dashed rgba(255,255,255,0.25); border-radius: 14px;
  padding: 18px; text-align: center; cursor: pointer; transition: 0.25s;
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
}
.of-file:hover, .of-file.has-file { border-color: #00d2ff; color: #00d2ff; }
.of-submit {
  width: 100%; padding: 14px; border: none; border-radius: 14px;
  background: linear-gradient(to right, #2ed573, #00d2ff);
  color: #04283a; font-weight: bold; font-size: 1rem; cursor: pointer; transition: 0.25s;
}
.of-submit:hover { filter: brightness(1.08); }
.of-submit:disabled { opacity: 0.55; cursor: wait; }
.of-result { margin-top: 18px; padding: 16px; border-radius: 14px; font-size: 0.93rem; display: none; }
.of-result.ok { display: block; background: rgba(46,213,115,0.12); border: 1px solid rgba(46,213,115,0.45); }
.of-result.err { display: block; background: rgba(255,99,99,0.12); border: 1px solid rgba(255,99,99,0.45); }
.of-fb-btn {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  padding: 10px 16px; border-radius: 14px; text-decoration: none;
  background: #1877f2; color: #fff; font-weight: 600; font-size: 0.9rem;
}

/* Mobile perf: fixed bg off */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
}

/* Header fixes: full width inside flex bodies + gradient search btn in header */
.site-header { width: 100%; box-sizing: border-box; }
.site-header .search-btn { padding: 9px 16px; font-size: 0.9rem; }
@media (max-width: 600px) {
  .site-header .search-btn span { display: none; }
  .site-header .search-btn { padding: 9px 12px; }
}

/* Reviews hero image */
.reviews-hero { display: flex; justify-content: center; padding: 24px 20px 4px; }
.reviews-hero img { width: 100%; max-width: 360px; border-radius: 20px; }
