/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #2c2c2c, #444);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
}

/* Container principal */
.container {
  background: #1f1f1f;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 450px;
  text-align: center;
}

/* Título */
.container h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #f5f5f5;
  letter-spacing: 1px;
}

/* Lista de links */
.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.link-card {
  list-style: none;
}
/* Cada card */
.link-card a {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #2e2e2e;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Imagens */
.link-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
}

/* Hover bonito */
.link-card a:hover {
  background: #0373fc;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(3, 115, 252, 0.5);
}

/* Responsividade */
@media (max-width: 500px) {
  .link-card a {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .link-card img {
    width: 50px;
    height: 50px;
  }
}
