.apps-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.apps-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.1) saturate(0.3);
  z-index: 0;
}

.apps-page::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.apps-page nav {
  position: relative;
  z-index: 10;
}

/* Main content */
.apps-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 18vh 2.5rem 6rem;
  width: 100%;
}

.apps-label {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.3);
  margin-bottom: 5rem;
}

/* App entry row */
.app-entry {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
}

.app-number {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(240, 237, 232, 0.2);
  padding-top: 0.5rem;
  min-width: 2rem;
}

.app-body {
  flex: 1;
}

.app-name {
  display: block;
  font-family: 'Cardo', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: #f0ede8;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.app-name:hover {
  color: rgba(240, 237, 232, 0.55);
}

.app-description {
  font-family: 'Cardo', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(240, 237, 232, 0.4);
  margin-bottom: 1.75rem;
}

.app-links {
  display: flex;
  gap: 2rem;
}

.store-link {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 237, 232, 0.15);
  padding-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, border-color 0.2s;
}

.store-link:hover {
  color: rgba(240, 237, 232, 0.85);
  border-color: rgba(240, 237, 232, 0.4);
}

.arrow {
  font-size: 0.8rem;
}
