*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: #0f0f13;
  color: #e8e8f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 64px 0 48px;
  text-align: center;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}

.logo span {
  color: #7c6af7;
}

.tagline {
  margin-top: 10px;
  color: #888;
  font-size: 1rem;
}

/* Apps */
main { flex: 1; padding-bottom: 80px; }

.apps h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 24px;
}

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

.app-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #1a1a24;
  border: 1px solid #2a2a38;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.app-card:hover {
  border-color: #7c6af7;
  transform: translateY(-2px);
}

.app-icon {
  font-size: 2.4rem;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-icon.productivity { background: #1e2f4a; }
.app-icon.education    { background: #1e3a2a; }
.app-icon.game         { background: #2e1e40; }

.app-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.app-info p {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
  line-height: 1.4;
}

.badge {
  font-size: 0.78rem;
  color: #7c6af7;
  font-weight: 500;
}

/* Footer */
footer {
  border-top: 1px solid #1e1e2e;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #444;
}

footer a {
  color: #7c6af7;
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

@media (max-width: 540px) {
  .logo { font-size: 1.8rem; }
  .app-card { flex-direction: column; text-align: center; }
}
