body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f7fa;
  color: #1f2937;
}

.portal {
  padding: 24px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}
.hero h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}
.hero p {
  margin-top: 8px;
  opacity: 0.6;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.app-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.app-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.app-card h2 {
  margin: 0;
  font-size: 16px;
}
.app-card p {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.6;
}
.app-card:active {
  transform: scale(0.96);
}
.app-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.coming {
  opacity: 0.5;
  pointer-events: none;
}