/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Anton", sans-serif;
  background: url("images/bg.png") center/cover no-repeat;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

header {
  margin-bottom: 40px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #dda0dd;
  box-shadow: 0 4px 15px rgba(221, 160, 221, 0.3);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 5em;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Honk", cursive;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #fff;
}

header p a {
  color: #fff;
  text-decoration: none;
}

.info-card {
  background: linear-gradient(
    135deg,
    rgba(170, 70, 250, 0.2),
    rgba(175, 80, 255, 0.2)
  );
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
}

.info-card span {
  color: #fff;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.info-card span:last-child {
  margin-bottom: 0;
}

.info-card a {
  color: #fff;
  text-decoration: none;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px;
  margin-top: 10px;
  height: 120px;
  background: linear-gradient(135deg, #dda0dd, #ba55d3);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(221, 160, 221, 0.2);
  position: relative;
  overflow: hidden;
}

.link:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.link:hover:before {
  left: 100%;
}

.link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(221, 160, 221, 0.4);
}

.pix-link {
  flex-direction: row;
  height: 200px;
  padding: 0;
  justify-content: flex-start;
  background: linear-gradient(135deg, #4caf50, #388e3c);
}

.pix-image {
  height: 100%;
  width: auto;
  margin-right: 20px;
}

.pix-text {
  font-size: 3rem;
  align-self: center;
}

.apoiador-link {
  flex-direction: row;
  height: 200px;
  padding: 0;
  justify-content: flex-start;
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.apoiador-image {
  height: 100%;
  width: auto;
  margin-right: 20px;
}

.apoiador-text {
  font-size: 3rem;
  align-self: center;
  line-height: 1;
}

.contentify-link {
  flex-direction: row;
  height: 200px;
  padding: 0;
  justify-content: flex-start;
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.contentify-image {
  height: 100%;
  width: auto;
  margin-right: 20px;
}

.contentify-text {
  font-size: 3rem;
  align-self: center;
  line-height: 1.2;
}

.discord-link {
  flex-direction: row;
  height: 200px;
  padding: 0;
  justify-content: flex-start;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.discord-image {
  height: 100%;
  width: auto;
  margin-right: 20px;
}

.discord-text {
  font-size: 3rem;
  align-self: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 2em;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

footer {
  margin-top: 40px;
  font-size: 0.8em;
  color: #bbb;
  font-family: "Raleway", sans-serif;
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 4em;
  }
  .links-grid {
    grid-template-columns: 1fr;
  }
  .pix-text,
  .apoiador-text,
  .contentify-text,
  .discord-text {
    font-size: 2rem;
  }
  .pix-link,
  .apoiador-link,
  .contentify-link,
  .discord-link {
    height: 150px;
  }
  .social-icons {
    gap: 20px;
  }
}
