body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(120deg, #f0f4ff, #fff0f5);
  color: #1c1c1e;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 36px;
  background: linear-gradient(45deg, #007aff, #ff2d55);
  -webkit-background-clip: text;
  color: transparent;
}

.app-banner-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.app-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  width: 100%;
  padding: 30px 20px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-banner-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.app-banner-bg {
  display: flex;
  align-items: center;
  padding: 10px;
}

.app-banner-icon {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s;
}

.app-banner-card:hover .app-banner-icon {
  transform: rotate(8deg) scale(1.1);
}

.app-banner-content h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.app-banner-content p {
  margin: 12px 0;
  color: #666;
  font-size: 18px;
}

.tag {
  display: inline-block;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  padding: 6px 14px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(255, 126, 95, 0.4);
  animation: pulseTag 1.5s infinite;
  transition: transform 0.3s;
}

/* @keyframes pulseTag {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
} */

/* .tag:hover {
  transform: scale(1.2);
} */

.new-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(45deg, #ff3b30, #ffcc00);
  color: white;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
  animation: swing 2s infinite;
}

.appname {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -10px;
  margin-bottom: -10px;
}

.appname h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.appname .tag {
  margin-top: -10px;
  align-items: center; 
}

.card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* .card-link-wrapper:hover {
  transform: scale(1.01);
} */


@keyframes swing {
  0% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(-10deg); }
}

.app-link {
  display: inline-block;
  margin-top: 16px;
  background: #007aff;
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
  transition: all 0.3s;
  font-size: 18px;
}

.app-link:hover {
  background: #005ecb;
  transform: scale(1.05);
}

.footer {
  margin-top: 60px;
  text-align: center;
  color: #888;
  font-size: 20px;
  /* animation: typing 3s steps(30) infinite; */
  white-space: nowrap;
  overflow: hidden;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  .page-title {
    font-size: 20px;
  }

  .app-banner-card {
    border-radius: 16px;
    padding: 16px 12px;
    width: 88%;
    margin: 0 auto;
  }

  .app-banner-bg {
    flex-direction: row;
    align-items: center;
  }

  .app-banner-icon {
    width: 64px;
    height: 64px;
    margin-right: 12px;
  }

  .app-banner-content {
    text-align: left;
    flex: 1;
  }

  .app-banner-content h2 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .app-banner-content p {
    font-size: 13px;
    color: #666;
  }

  .tag {
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 11px;
  }

  .app-link {
    display: inline-block;
    margin-top: 6px;
    margin-left: 10px;
    background: #007aff;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
    transition: all 0.3s;
    font-size: 13px;
    margin-bottom: -10px;
  }

  .new-badge {
    top: 8px;
    left: 8px;
    font-size: 11px;
    padding: 4px 10px;
  }
}



