@font-face {
  font-family: 'Domine';
  src: url('Imagines/Domine-VariableFont_wght.ttf') format('truetype');
}

body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Domine', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  text-align: center;
}

.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 30px;
  object-fit: cover;
  animation: glowLogo 2s infinite alternate;
  box-shadow: 0 0 15px #f309c0, 0 0 25px #e80dfc;
}

/* Animación tipo glow */
@keyframes glowLogo {
  0% {
    box-shadow: 0 0 15px #ea03ff, 0 0 25px #ff02c0;
  }
  100% {
    box-shadow: 0 0 25px #e203ff, 0 0 35px #e503fa;
    transform: scale(1.05);
  }
}


.glow-text {
  font-size: 3.9rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 20px #6e2048;
  animation: glowText 2s infinite alternate, moveText 3s infinite alternate ease-in-out;
}


@keyframes moveText {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.video-box {
  margin: 30px auto;
  box-shadow: 0 0 20px #6e2048;
  border-radius: 10px;
  overflow: hidden;
  max-width: 560px;
}

iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  width: 100%;
}

.social-icons a {
  background: linear-gradient(to right, #ffffff, #ffffff);
  color: rgb(0, 0, 0);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1.1rem;
  text-decoration: none;
  max-width: 560px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.05);
  background: white;
  color: rgb(117, 37, 68);
}

.store-title {
  font-size: 2rem;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px #6e2048;
  margin-bottom: 20px;
}

.store-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 100%;
}

.product-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  width: 240px;
  box-shadow: 0 0 10px #6e2048;
  transition: transform 0.3s;
  position: relative;
}

.product-card:hover {
  transform: rotateY(5deg) scale(1.05);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.buy-button {
  display: inline-block;
  margin-top: 10px;
  background-color: rgb(170, 15, 201);
  color: black;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.buy-button:hover {
  background-color: #6e2048;
  transform: scale(1.1);
}

.new-badge {
  position: absolute;
  background: #6e2048;
  color: black;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  top: 10px;
  left: 10px;
}
.social-link img {
  width: 24px;
  height: 24px;
}

.footer {
  width: 100%;
  margin-top: 60px;
  padding: 25px 0;
  background: #111;
  text-align: center;
  font-family: 'Domine', sans-serif;
  border-top: 2px solid #222;
}

.footer-logo {
  font-size: 2.5rem;
  color: #a612eb;
  font-weight: bold;
  animation: glowY 2s ease-in-out infinite alternate;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-content {
  font-size: 14px;
  color: #aaa;
}

@keyframes glowY {
  0% {
    text-shadow: 0 0 5px #6e2048, 0 0 10px #6e2048;
  }
  100% {
    text-shadow: 0 0 15px #a306a8, 0 0 25px #a306a8;
  }
}
