.app-detail-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 30px rgba(32, 92, 150, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.app-detail-nav a {
  border-bottom: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.app-detail-nav .app-detail-home {
  font-size: 0.88rem;
}

.app-detail-shell {
  min-height: calc(100vh - 8rem);
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 4rem;
}

.app-detail-card {
  width: min(100%, 48rem);
  margin: 0;
  padding: clamp(2rem, 6vw, 4rem);
}

.app-detail-card picture {
  display: block;
}

.app-detail-card .app-icon {
  width: 160px !important;
  height: 160px !important;
  margin-bottom: 2rem;
  border-radius: 32px;
}

.app-detail-card h1 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em !important;
  line-height: 1.15;
  text-transform: none;
}

.app-detail-card .app-detail-description {
  max-width: 39rem;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 1.05rem;
  line-height: 1.75;
}

.app-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.app-detail-actions a,
.app-detail-back {
  border-bottom: 0 !important;
}

.app-detail-meta {
  margin: 0;
  color: var(--dark-grey);
  font-size: 0.86rem;
}

.app-detail-footer {
  padding: 2rem 1rem 3rem;
  color: var(--primary-color);
  text-align: center;
}

@media (max-width: 480px) {
  .app-detail-card .app-icon {
    width: 132px !important;
    height: 132px !important;
  }
}
