* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #111315;
  color: #d4d4d4;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
}

.card {
  background: #181a1d;
  border: 1px solid #262a2f;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}

.card h2 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 600;
}

.card p {
  color: #b9b9b9;
  margin-bottom: 10px;
}

.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.links a {
  text-decoration: none;
  color: #f1f1f1;
  background: #202327;
  border: 1px solid #2d3138;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;

  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.links a:hover {
  background: #25292f;
  border-color: #4a4f57;
  transform: translateY(-2px);
}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.pc-card {
  background: #202327;
  border: 1px solid #2d3138;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.2s;
}

.pc-card:hover {
  transform: translateY(-2px);
  border-color: #4a4f57;
}

.pc-card img {
  width: 100%;
  height: auto;
  display: block;
}

.pc-card h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 16px 16px 10px;
}

.pc-card p {
  margin: 6px 16px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.pc-card p:last-child {
  margin-bottom: 16px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.item {
  flex: 1;
  min-width: 220px;
}

.item img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid #2d3138;
}

@media (max-width: 700px) {

  main {
    width: 94%;
  }

}