* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
  color: #222;
  padding: 2em;
  max-width: 960px;
  margin: auto;
}

h1 {
  font-size: 2.4em;
  color: #7b2cbf;
  margin-bottom: 1em;
  text-align: center;
}

.app {
  display: flex;
  gap: 1em;
  background: #ffffff;
  padding: 1.2em;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
}

.info h2 {
  margin: 0;
  font-size: 1.4em;
}

.info p {
  margin: 0.4em 0;
  color: #444;
}

.tags span {
  display: inline-block;
  background: #e0c3fc;
  color: #5a189a;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  margin-right: 0.5em;
  font-size: 0.8em;
}

.button {
  display: inline-block;
  margin-top: 0.6em;
  background: #7b2cbf;
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.button:hover {
  background: #5a189a;
}

section h2 {
  margin-top: 2em;
  font-size: 1.4em;
  color: #5a189a;
}

ul {
  padding-left: 1.2em;
}

a {
  color: #7b2cbf;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
