
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #F8FAFC;
  color: #1E293B;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.avatar-wrapper {
  width: 122px;
  height: 122px;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: #1CD14F;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-inner {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.avatar-container {
  width: 108px;
  height: 108px;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 50%;
}

.avatar-inner:hover .avatar-container,
.avatar-inner:active .avatar-container {
  transform: rotateY(180deg);
}

.avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

.avatar.back {
  transform: rotateY(180deg);
}

.link-item.indique {
  background: #1E293B;
  color: #ffffff;
  font-size: 14px;
  margin: 16px 0;
}

.link-item.indique:hover {
  background: #2e3f5a;
  color: #ffffff;
  font-size: 14px;
  margin: 16px 0;
}

.link-item.indique svg {
  fill: white;
}

h1 {
  margin: 8px 0;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}

p.bio {
  font-size: 15px;
  color: #334155;
  text-align: center;
  max-width: 400px;
  margin-bottom: 30px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  animation: fadeIn 1.4s ease-in-out;
}

.link-item {
  background: #E95420;
  padding: 14px 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.link-item svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.link-item:hover {
  transform: scale(1.04);
  background: #f15c2a;
}

.embed {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
  transition: transform 0.3s ease;
  animation: fadeIn 1.6s ease-in-out;
}

.embed:hover {
  transform: scale(1.04);
}

.embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

.embed.spotify {
  height: 152px;
}

.embed.yt {
  aspect-ratio: 16 / 9;
  margin: 0;
}

.socials {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  animation: fadeIn 1.8s ease-in-out;
}

.socials a {
  color: #E95420;
  transition: transform 0.2s, color 0.2s;
}

.socials a:hover {
  color: #f15c2a;
  transform: translateY(-3px);
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  text-align: center;
  max-width: 400px;
  margin: 32px auto 8px !important;
  animation: fadeIn 1.5s ease-in-out;
}

.newsletter-section {
  background-color: #e95620;
  color: #ffffff;
  padding: 16px 16px;
  border-radius: 16px;
  animation: fadeIn 1.3s ease-in-out;
  display: flex;
  justify-content: center;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.newsletter-button {
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #E95420;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

.newsletter-button:hover {
  transform: scale(1.05);
  background: #f3f3f3;
}

.newsletter-button svg {
  width: 20px;
  height: 20px;
  fill: #E95420;
}

.newsletter-description {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin-top: -4px;
  margin-bottom: 0px;
}
