* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #f6d88f;
  --gold-soft: #ffe8b8;
  --panel: rgba(18, 10, 28, 0.42);
  --border: rgba(255, 255, 255, 0.15);
  --button: #d14aa5;
  --button-hover: #e05ab5;
  --button-dark: #8f2f68;
  --text-soft: rgba(255, 255, 255, 0.90);
  --overlay-top: rgba(9, 7, 18, 0.08);
  --overlay-bottom: rgba(8, 4, 16, 0.48);
  --glow-color: rgba(255, 226, 163, 0.34);
  --toggle-bg: rgba(255, 255, 255, 0.08);
  --toggle-border: rgba(255, 255, 255, 0.12);
  --pill-bg: rgba(255, 255, 255, 0.08);
  --pill-border: rgba(255, 255, 255, 0.12);
  --green: #4caf50;
  --green-dark: #2e7d32;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: white;
  background: url("../img/fondo-astral.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #0a0a1a;
  overflow-x: hidden;
  transition: background-position 0.6s ease, filter 0.6s ease;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, var(--overlay-top), var(--overlay-bottom));
  transition: background 0.6s ease;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 14px 18px 16px;
}

.hero {
  text-align: center;
  margin-bottom: 8px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold-soft);
  letter-spacing: 2px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.logo-star {
  color: var(--gold);
  font-size: 20px;
  transform: translateY(-3px);
  text-shadow: 0 0 14px rgba(246, 216, 143, 0.42);
  transition: all 0.3s ease;
}

.logo-star.star-level-1 {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(246, 216, 143, 0.42);
}
.logo-star.star-level-2 {
  color: #f5b042;
  text-shadow: 0 0 20px rgba(245, 176, 66, 0.8);
}
.logo-star.star-level-3 {
  color: #e67e22;
  text-shadow: 0 0 25px rgba(230, 126, 34, 0.9);
}
.logo-star.star-level-4 {
  color: #d14aa5;
  text-shadow: 0 0 25px rgba(209, 74, 165, 0.9);
  animation: starPulse 1.2s infinite alternate;
}
@keyframes starPulse {
  from { text-shadow: 0 0 15px rgba(209, 74, 165, 0.7); }
  to   { text-shadow: 0 0 30px rgba(209, 74, 165, 1); }
}

.subtitle {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--text-soft);
  text-transform: uppercase;
}

.top-date {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  opacity: 1;
}

.panel-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
}

.box {
  width: 100%;
  max-width: 720px;
  min-height: 650px;
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 16px 18px 14px;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.box-footnote {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  letter-spacing: 0.01em;
  width: 100%;
}

.controls {
  display: flex;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
}

select {
  flex: 0 0 34%;
  min-width: 0;
  height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(180deg, var(--button), var(--button-dark));
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  box-shadow: 0 12px 24px rgba(209, 74, 165, 0.30);
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

select option {
  color: #ffffff;
  background: #8f2f68;
}

select.select-opaco {
  background: linear-gradient(180deg, rgba(209, 74, 165, 0.5), rgba(143, 47, 104, 0.5));
  box-shadow: 0 12px 24px rgba(209, 74, 165, 0.15);
}

.reveal-btn {
  flex: 1 1 auto;
  height: 48px;
  padding: 10px 14px;
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 12px 24px rgba(209, 74, 165, 0.30);
}

.reveal-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.reveal-btn.btn-magenta {
  background: linear-gradient(180deg, var(--button), var(--button-dark));
}

.reveal-btn.btn-soft {
  background: linear-gradient(180deg, rgba(209, 74, 165, 0.6), rgba(143, 47, 104, 0.6));
  box-shadow: 0 12px 24px rgba(209, 74, 165, 0.2);
}

.consent-zone {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.consent-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.2;
  color: #fff2da;
  flex: 1;
}

.consent-label input {
  margin-top: 0;
  width: 16px;
  height: 16px;
  accent-color: #d14aa5;
}

.consent-drawer {
  display: none;
  margin-top: 10px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  color: #fff4df;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.consent-drawer.show {
  display: block;
}

.consent-drawer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.consent-drawer p {
  font-size: 13px;
  line-height: 1.5;
}

.accept-rules-btn {
  margin-top: 12px;
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0cb76, #d1a84e);
  color: #2d1e07;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.mensaje-wrap {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex: 1 0 auto;
  margin-top: 8px;
}

.intro-text,
.resultado {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  min-height: 192px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.2;
  white-space: pre-line;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.intro-text {
  font-size: 28px;
  color: #fff6e6;
  opacity: 0.96;
}

.intro-text.show {
  display: flex;
}

.resultado {
  font-size: 20px;
  color: #fff7e8;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.resultado.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.resultado.typing::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  color: var(--gold-soft);
  animation: blink 0.9s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.glow {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 300px;
  height: 170px;
  transform: translateX(-50%) scale(0.8);
  background: radial-gradient(circle, var(--glow-color) 0%, rgba(255, 215, 140, 0.14) 30%, transparent 72%);
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}

.glow.active {
  animation: glowPulse 1.8s ease-out;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.82);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0.45;
    transform: translateX(-50%) scale(1.08);
  }
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.spark {
  position: absolute;
  opacity: 0;
  color: var(--gold-soft);
  text-shadow: 0 0 12px rgba(255, 232, 184, 0.66);
  transform: scale(0.6);
}

.spark.s1 { top: 24%; left: 18%; font-size: 18px; }
.spark.s2 { top: 16%; left: 36%; font-size: 14px; }
.spark.s3 { top: 28%; right: 18%; font-size: 20px; }
.spark.s4 { top: 52%; left: 10%; font-size: 10px; }
.spark.s5 { top: 64%; left: 28%; font-size: 16px; }
.spark.s6 { top: 54%; right: 12%; font-size: 18px; }
.spark.s7 { top: 36%; right: 34%; font-size: 10px; }
.spark.s8 { top: 72%; right: 28%; font-size: 14px; }
.spark.s9 { top: 18%; right: 40%; font-size: 12px; }
.spark.s10 { top: 70%; left: 16%; font-size: 14px; }

.sparkles.active .s1 { animation: sparkle1 1.6s ease-out; }
.sparkles.active .s2 { animation: sparkle2 1.7s ease-out; }
.sparkles.active .s3 { animation: sparkle3 1.5s ease-out; }
.sparkles.active .s4 { animation: sparkle4 1.6s ease-out; }
.sparkles.active .s5 { animation: sparkle5 1.8s ease-out; }
.sparkles.active .s6 { animation: sparkle6 1.5s ease-out; }
.sparkles.active .s7 { animation: sparkle7 1.7s ease-out; }
.sparkles.active .s8 { animation: sparkle8 1.6s ease-out; }
.sparkles.active .s9 { animation: sparkle9 1.55s ease-out; }
.sparkles.active .s10 { animation: sparkle10 1.7s ease-out; }

@keyframes sparkle1 {
  0% { opacity: 0; transform: translateY(10px) scale(0.6); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-28px) scale(1.2); }
}
@keyframes sparkle2 {
  0% { opacity: 0; transform: translateY(8px) scale(0.5); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-24px) translateX(10px) scale(1.15); }
}
@keyframes sparkle3 {
  0% { opacity: 0; transform: translateY(12px) scale(0.7); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-30px) scale(1.25); }
}
@keyframes sparkle4 {
  0% { opacity: 0; transform: translateY(6px) scale(0.5); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-18px) translateX(12px) scale(1.1); }
}
@keyframes sparkle5 {
  0% { opacity: 0; transform: translateY(8px) scale(0.6); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-22px) translateX(-8px) scale(1.15); }
}
@keyframes sparkle6 {
  0% { opacity: 0; transform: translateY(10px) scale(0.6); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-26px) scale(1.2); }
}
@keyframes sparkle7 {
  0% { opacity: 0; transform: translateY(8px) scale(0.5); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px) translateX(-10px) scale(1.05); }
}
@keyframes sparkle8 {
  0% { opacity: 0; transform: translateY(9px) scale(0.6); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-24px) scale(1.1); }
}
@keyframes sparkle9 {
  0% { opacity: 0; transform: translateY(8px) scale(0.5); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-22px) translateX(8px) scale(1.1); }
}
@keyframes sparkle10 {
  0% { opacity: 0; transform: translateY(8px) scale(0.5); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-22px) translateX(-8px) scale(1.1); }
}

.gift-row {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 8px;
}

.gift-link {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffe8b8;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: gap 0.2s ease, text-shadow 0.3s ease;
}

.gift-link.show {
  display: inline-flex;
}

.gift-link:hover {
  text-decoration: underline;
}

.gift-text {
  display: inline-block;
  text-shadow: 0 0 6px rgba(255, 232, 184, 0.8), 0 0 12px rgba(255, 232, 184, 0.5);
  transition: text-shadow 0.3s ease;
}

.gift-link:hover .gift-text {
  text-shadow: 0 0 12px rgba(255, 232, 184, 1), 0 0 24px rgba(255, 232, 184, 0.8);
}

.gift-emoji {
  display: inline-block;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 0 3px rgba(255, 232, 184, 0.6));
}

@keyframes giftEmojiDanceLeft {
  0% { transform: translateX(0) rotate(0deg); filter: drop-shadow(0 0 2px rgba(255,232,184,0.8)); }
  30% { transform: translateX(-8px) rotate(-8deg); filter: drop-shadow(0 0 8px rgba(255,232,184,1)); }
  70% { transform: translateX(2px) rotate(2deg); filter: drop-shadow(0 0 5px rgba(255,232,184,0.9)); }
  100% { transform: translateX(0) rotate(0deg); filter: drop-shadow(0 0 2px rgba(255,232,184,0.6)); }
}

@keyframes giftEmojiDanceRight {
  0% { transform: translateX(0) rotate(0deg); filter: drop-shadow(0 0 2px rgba(255,232,184,0.8)); }
  30% { transform: translateX(8px) rotate(8deg); filter: drop-shadow(0 0 8px rgba(255,232,184,1)); }
  70% { transform: translateX(-2px) rotate(-2deg); filter: drop-shadow(0 0 5px rgba(255,232,184,0.9)); }
  100% { transform: translateX(0) rotate(0deg); filter: drop-shadow(0 0 2px rgba(255,232,184,0.6)); }
}

.gift-emoji-animate-left {
  animation: giftEmojiDanceLeft 0.6s ease-in-out;
}

.gift-emoji-animate-right {
  animation: giftEmojiDanceRight 0.6s ease-in-out;
}

.category-menu {
  display: none;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  margin-top: 0.5rem;
}

.category-menu.show {
  display: flex;
}

.category-pill {
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: #fff6e3;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.category-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
}

.category-pill.active {
  background: linear-gradient(180deg, var(--button), var(--button-dark));
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(209, 74, 165, 0.22);
}

.share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
  flex-wrap: wrap;
}

.share-btn {
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff6e3;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  padding: 0 14px;
  flex: 0 0 auto;
}

.share-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
}

/* Botón compartir con ícono destacado */
.share-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.2rem;
  color: #000000;
  transform: translateY(1px);
  text-shadow: none;
}

.wide-share-btn {
  min-width: 120px;
}

/* Botones "Para mí" / "Para otro" en verde */
.share-mode-btn {
  background: rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.4);
  color: #e0f2e0;
}

.share-mode-btn:hover {
  background: rgba(76, 175, 80, 0.25);
  border-color: rgba(76, 175, 80, 0.6);
}

.share-mode-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 18px rgba(76, 175, 80, 0.4);
}

.theme-default {
  --overlay-top: rgba(9, 7, 18, 0.08);
  --overlay-bottom: rgba(8, 4, 16, 0.48);
  --glow-color: rgba(255, 226, 163, 0.34);
}

.theme-aries {
  --overlay-top: rgba(82, 20, 20, 0.07);
  --overlay-bottom: rgba(47, 8, 16, 0.52);
  --glow-color: rgba(255, 140, 120, 0.34);
}

.theme-tauro {
  --overlay-top: rgba(34, 48, 20, 0.07);
  --overlay-bottom: rgba(22, 26, 10, 0.52);
  --glow-color: rgba(220, 255, 170, 0.28);
}

.theme-geminis {
  --overlay-top: rgba(68, 46, 20, 0.07);
  --overlay-bottom: rgba(37, 18, 8, 0.50);
  --glow-color: rgba(255, 219, 120, 0.30);
}

.theme-cancer {
  --overlay-top: rgba(24, 42, 70, 0.07);
  --overlay-bottom: rgba(10, 18, 34, 0.52);
  --glow-color: rgba(170, 210, 255, 0.30);
}

.theme-leo {
  --overlay-top: rgba(86, 46, 8, 0.07);
  --overlay-bottom: rgba(52, 20, 6, 0.54);
  --glow-color: rgba(255, 196, 92, 0.34);
}

.theme-virgo {
  --overlay-top: rgba(32, 56, 32, 0.07);
  --overlay-bottom: rgba(16, 28, 14, 0.52);
  --glow-color: rgba(190, 255, 190, 0.26);
}

.theme-libra {
  --overlay-top: rgba(70, 30, 54, 0.06);
  --overlay-bottom: rgba(34, 12, 24, 0.52);
  --glow-color: rgba(255, 190, 226, 0.28);
}

.theme-escorpio {
  --overlay-top: rgba(48, 10, 34, 0.06);
  --overlay-bottom: rgba(18, 4, 14, 0.58);
  --glow-color: rgba(226, 124, 196, 0.28);
}

.theme-sagitario {
  --overlay-top: rgba(44, 26, 66, 0.06);
  --overlay-bottom: rgba(18, 10, 36, 0.54);
  --glow-color: rgba(194, 158, 255, 0.28);
}

.theme-capricornio {
  --overlay-top: rgba(24, 24, 38, 0.06);
  --overlay-bottom: rgba(10, 12, 22, 0.56);
  --glow-color: rgba(190, 206, 255, 0.22);
}

.theme-acuario {
  --overlay-top: rgba(12, 42, 64, 0.06);
  --overlay-bottom: rgba(6, 18, 34, 0.52);
  --glow-color: rgba(122, 223, 255, 0.28);
}

.theme-piscis {
  --overlay-top: rgba(18, 54, 58, 0.06);
  --overlay-bottom: rgba(8, 22, 28, 0.54);
  --glow-color: rgba(120, 255, 236, 0.24);
}

@media (max-width: 640px) {
  .container {
    padding: 12px 12px 14px;
  }

  .hero {
    margin-bottom: 6px;
  }

  .logo {
    font-size: 50px;
  }

  .subtitle {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .top-date {
    font-size: 18px;
    font-weight: 700;
  }

  .panel-zone {
    align-items: flex-start;
    padding-top: 2px;
  }

  .box {
    max-width: 500px;
    min-height: 620px;
    padding: 14px 14px 12px;
    border-radius: 24px;
  }

  .controls {
    gap: 8px;
  }

  select {
    flex: 0 0 42%;
    height: 44px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .reveal-btn {
    height: 44px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .consent-zone {
    margin-top: 8px;
  }

  .consent-label {
    font-size: 8px;
  }

  .mensaje-wrap {
    min-height: 200px;
  }

  .intro-text,
  .resultado {
    min-height: 150px;
    font-size: 23px;
    line-height: 1.2;
    padding: 10px;
  }

  .intro-text {
    font-size: 25px;
  }

  .resultado {
    font-size: 23px;
  }

  .gift-row {
    min-height: 28px;
    margin-top: 2px;
    margin-bottom: 6px;
  }

  .gift-link {
    width: 100%;
    text-align: center;
    font-size: 14px;
    gap: 8px;
  }

  .category-menu {
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 0.5rem;
  }

  .category-pill {
    font-size: 12px;
    padding: 9px 12px;
  }

  .share-bar {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .share-btn {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    padding: 0 8px;
    white-space: nowrap;
    height: 36px;
  }

  .wide-share-btn {
    flex: 1;
  }

  .share-icon {
    font-size: 1rem;
  }

  .box-footnote {
    font-size: 10px;
    margin-top: 8px;
    text-align: center;
  }
}

/* ========== PULSOS MÁS INTENSOS ========== */
@keyframes gentlePulseMagenta {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 74, 165, 0.8);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(209, 74, 165, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 74, 165, 0);
    transform: scale(1);
  }
}

@keyframes gentlePulseMagentaSuave {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 74, 165, 0.6);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(209, 74, 165, 0);
    transform: scale(1.01);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 74, 165, 0);
    transform: scale(1);
  }
}

.pulse-element {
  animation: gentlePulseMagenta 1.6s infinite ease;
  transition: transform 0.1s;
}

.pulse-element-suave {
  animation: gentlePulseMagentaSuave 1.6s infinite ease;
  transition: transform 0.1s;
}

/* ========== BOTÓN COMPARTIR DESTACADO (dorado) ========== */
@keyframes gentlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 176, 66, 0.5);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(245, 176, 66, 0);
    transform: scale(1.01);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 176, 66, 0);
    transform: scale(1);
  }
}

.wide-share-btn {
  background: linear-gradient(135deg, #f5b042, #e67e22) !important;
  border: none;
  animation: gentlePulse 1.8s infinite ease;
  transition: background 0.2s, transform 0.1s;
}

.wide-share-btn:hover {
  animation: none;
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* ========== TOAST NOTIFICACIÓN ========== */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,0.8);
  color: var(--gold-soft);
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}