 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;700&display=swap');
:root {
  --primary-color: #ff009d;
  --secondary-color: #00d4ff;
  --background: #2b102e;
  --card-bg: rgba(255, 255, 255, 0.1);
  --text-color: #ffffff;
  --text-light: #cccccc;
  --border-radius: 12px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --overlay-bg: rgba(0, 0, 0, 0.5);
}
body {
  background: var(--background);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}
.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
h1 {
  text-align: center;
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 40px;
  font-weight: 700;
}
.app-card {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.app-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.3);
  border: 2px solid var(--primary-color);
}
.app-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  margin-right: 20px;
  object-fit: cover;
  flex-shrink: 0;
}
.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
h2 {
  font-size: 22px;
  margin: 0;
  color: var(--text-color);
  font-weight: 600;
}
p {
  font-size: 16px;
  color: var(--text-light);
  margin: 5px 0;
}
.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  width: fit-content;
  margin-top: auto;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.download-button.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  animation: loading 2s linear;
}
@keyframes loading {
  0% { width: 0%; }
  100% { width: 100%; }
}
.download-button:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
}
.download-button.faster-button {
  background: linear-gradient(45deg, #28a745, #218838);
  position: relative;
}
.download-button.faster-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 1s ease-in-out;
  pointer-events: none;
}
.download-button.faster-button.shiny::after {
  left: 100%;
}
.download-button.coming-soon-button {
  background: linear-gradient(45deg, #800080, #da70d6);
  position: relative;
  pointer-events: none;
}
.download-button.coming-soon-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 1s ease-in-out;
  pointer-events: none;
}
.download-button.coming-soon-button.shiny::after {
  left: 100%;
}
.error-message {
  color: #ff4d4d;
  font-weight: 500;
}
.back-home {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  z-index: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.back-home:hover {
  text-decoration: underline;
  background: rgba(0, 0, 0, 0.5);
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 1100;
}
.modal.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.modal-content {
  background: #333;
  margin: 15% auto;
  padding: 20px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 400px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.modal-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.modal-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: modalParticleAnim 1.5s forwards;
}
@keyframes modalParticleAnim {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  50% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.5); }
}
.modal-particle.exit {
  animation-name: modalParticleExitAnim;
}
@keyframes modalParticleExitAnim {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.5); }
}
.update-modal-content h2,
.update-modal-title {
  font-family: 'Muli', sans-serif;
  font-size: 28px;
  margin-bottom: 15px;
}
.update-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
}
.update-item:last-child {
  margin-bottom: 0;
}
.update-link {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin: 20px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 20px;
  }
  h1 {
    font-size: 28px;
  }
  .app-card {
    flex-direction: column;
    text-align: center;
  }
  .app-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .app-content {
    align-items: center;
    text-align: center;
  }
  .download-button {
    width: 100%;
  }
}
 