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

body {
  height: 100vh;
  background-color: #0d0d0d;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo img {
  width: 340px;
}

.pages {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pages button {
  background: rgb(20, 20, 20);
  border: 1px solid rgb(50, 50, 50);
  color: rgb(70, 70, 70);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pages button:hover {
  color: white;
}

.singlepage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.card {
  background: rgb(20, 20, 20);
  border-radius: 8px;
  padding: 10px;
  width: 250px;
  border: 1px solid rgb(50, 50, 50);
}

.price {
  font-size: 16px;
}

.price span {
  color: #aaa;
  font-size: 12px;
}

.ctitle {
    margin-bottom: 10px;
    font-size: 20px;
}

.buy {
  display: inline-block;
  background: none;
  color: #63deff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 5px;
  cursor: pointer;
  text-decoration: none;
}
.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.links a {
  color: rgb(70, 70, 70);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.links a:hover {
  color: white;
}