/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Container */
  .container {
    max-width: 500px;         /* Desktop မှာ 500px ထက်မကျော်အောင် */
    width: 100%;              /* Mobile မှာ 100% ဖြည့် */
    margin: 40px auto;        /* အလယ်လိုက် Center */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;         /* Rounded corner သန့်သန့် */
    padding: 20px;
    text-align: center;
  }
  
  /* Header */
  .header {
    margin-bottom: 20px;
  }
  .app-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .developer {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
  }
  .app-stats {
    font-size: 14px;
    color: #555;
  }
  
  /* Install Section */
  .install-section {
    margin: 20px 0;
  }
  .install-btn {
    display: inline-block;
    width: 80%;
    max-width: 300px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: 0.3s;
  }
  .install-btn:hover {
    background-color: #0056b3;
  }
  .support-text {
    font-size: 13px;
    color: #888;
  }
  
  /* Horizontal Line */
  .section-line {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px auto;
    width: 80%;
  }
  
  /* Screenshots */
  .screenshots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .screenshots img {
    width: 45%;
    max-width: 180px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
  }
  
  /* Description */
  .description {
    margin-bottom: 20px;
  }
  .about-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .description p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0 20px;
  }
  
  /* Buttons */
  .buttons {
    margin-top: 10px;
  }
  .share-btn {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    margin-right: 5px;
    transition: 0.3s;
  }
  .share-btn:hover {
    background-color: #218838;
  }
  .mini-btn {
    background-color: #f0f0f0;
    color: black;
    padding: 8px 15px;
    border: none;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  .mini-btn:hover {
    background-color: #d6d6d6;
  }
  
  /* Responsive Media Query */
  @media (max-width: 480px) {
    .app-logo {
      width: 60px;
      height: 60px;
    }
    h1 {
      font-size: 20px;
    }
    .install-btn,
    .share-btn {
      width: 90%;
    }
    .screenshots img {
      width: 40%;
      max-width: 150px;
    }
  }
  