 body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f9f9f9;
      color: #222;
      text-align: center;
    }

    header {
      padding: 2rem 1rem;
      background: linear-gradient(135deg, #007acc, #4CAF50);
      color: white;
    }

    header h1 {
      margin: 0;
      font-size: 1.8rem;
    }

    header p {
      margin-top: 0.5rem;
      font-size: 1rem;
    }

    main {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .special {
      margin-bottom: 2rem;
    }

    .special a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffe082;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .special a:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    .languages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
    }

    .lang-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      padding: 1rem;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .lang-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    .lang-card img {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      margin-bottom: 0.8rem;
    }

    .lang-card h2 {
      font-size: 1.1rem;
      margin: 0;
    }

    .lang-card span {
      font-size: 0.9rem;
      color: #555;
    }

    footer {
      margin-top: 3rem;
      padding: 1rem;
      font-size: 0.9rem;
      color: #555;
    }

    /* Popup confirmation */
    .popup {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .popup.active {
      visibility: visible;
      opacity: 1;
    }

    .popup-box {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      max-width: 300px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }

    .popup-box h3 {
      margin: 0 0 1rem;
    }

    .popup-box button {
      margin: 0.5rem;
      padding: 0.6rem 1.2rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s;
    }

    .continue-btn {
      background: #4CAF50;
      color: white;
    }

    .continue-btn:hover {
      background: #43a047;
    }

    .change-btn {
      background: #e0e0e0;
    }

    .change-btn:hover {
      background: #d5d5d5;
    }
    
        /* Community style */

    .community-box {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.community-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgb(220, 53, 69);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}

.community-link:hover {
  background: rgb(200, 40, 60);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.community-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.community-texts strong {
  font-weight: 600;
  font-size: 1rem;
}

.community-texts small {
  font-size: 0.8rem;
  color: #f0f0f0;
}

/*WPA CSS*/
/* ===== INSTALL BUTTON STYLE ===== */

#installBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #0a4cff, #3b82f6);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 76, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hover effect */
#installBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(10, 76, 255, 0.4);
}

/* Click effect */
#installBtn:active {
  transform: scale(0.97);
}

/* Mobile full width option */
@media (max-width: 600px) {
  #installBtn {
    left: 20px;
    right: 20px;
    bottom: 15px;
    justify-content: center;
  }
}

