:root {
  --bg: #1e1e1e;
  --panel: #2a2a2a;
  --ink: #e8e8e8;
  --muted: #9a9a9a;
  --line: #3a3a3a;
  --accent: #0175c2;
  --silver: #cfcfcf;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px;
}

.apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.app:hover { border-color: var(--accent); }

.app img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.name {
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

footer {
  margin-top: 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.co {
  margin: 0 0 10px;
  font-family: Cinzel, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--silver);
}

.addr, .mail { margin: 0 0 12px; }
.mail { margin: 0; }
.mail a { color: var(--accent); text-decoration: none; }
.mail a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  body { padding: 36px 18px 32px; }
  .apps { grid-template-columns: 1fr; }
}
