:root {
  --bg: #ec82ad;
  --bg-light: #f5a3c7;
  --bg-dark: #e15799;
  --card: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 15px 60px rgba(0, 0, 0, 0.25);
  --radius: 20px;
  --pink-glow: rgba(236, 130, 173, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 50%, var(--bg) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  font-family: 'Fredoka', 'Dancing Script', cursive;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#three-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: floatBubbles 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatBubbles {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}


.text-center {
  text-align: center;
  width: 100%;
}


.aram-logo {
  max-width: min(240px, 65vw);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  animation: floatLogo 4s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.aram-logo:hover {
  transform: scale(1.05) rotateY(5deg) rotateX(5deg);
  filter: drop-shadow(0 15px 40px rgba(236, 130, 173, 0.6));
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Contenedor principal con efecto glassmorphism */
main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rules-wrap {
  width: 100%;
  max-width: 720px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 720px;
}

.rules-item {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  animation: slideInUp 0.6s ease-out backwards;
  animation-delay: calc(var(--item-index) * 0.1s);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.regla {
  background: linear-gradient(145deg, #ffffff 0%, #fff5f8 100%);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.4;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
  border: 2px solid transparent;
}


.regla::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.regla:hover::before {
  transform: translateX(100%);
}

.regla:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover),
              0 0 40px var(--pink-glow),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: var(--bg-light);
  background: linear-gradient(145deg, #ffffff 0%, #ffe5f0 100%);
}


.regla::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(45deg, var(--bg), var(--bg-light), var(--bg));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.regla:hover::after {
  opacity: 1;
  animation: borderRotate 2s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}


#interactive-character {
  position: fixed;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  will-change: transform;
}

#interactive-character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

/* Estilos responsive */
@media (max-width: 768px) {
  #interactive-character {
    width: 80px;
    height: 80px;
  }
  
  .regla {
    padding: 12px 16px;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
  
  .rules-item {
    margin: 0 0 8px 0;
  }
  
  body {
    align-items: flex-start;
  }
  
  main {
    padding: 1rem 0.5rem;
  }
}


.sparkle {
  position: fixed;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fff, transparent);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: sparkleEffect 1.5s ease-out;
  z-index: 9998;
}

@keyframes sparkleEffect {
  0% {
    opacity: 1;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(1.5) rotate(180deg) translateY(-50px);
  }
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bg-light), var(--bg));
  border-radius: 6px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff, var(--bg-light));
}


@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
  }
  60% {
    transform: scale(1.1) rotateY(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

.text-center.mb-4.mb-md-5 {
  animation: logoEntrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 0.5rem !important;
}

@media (min-width: 768px) {
  .text-center.mb-4.mb-md-5 {
    margin-bottom: 0.75rem !important;
  }
}


.secret-link {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(236, 130, 173, 0.5),
              0 0 0 0 rgba(236, 130, 173, 0.7);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
  animation: pulseRing 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  cursor: pointer;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 10px 40px rgba(236, 130, 173, 0.5),
                0 0 0 0 rgba(236, 130, 173, 0.7);
  }
  50% {
    box-shadow: 0 10px 40px rgba(236, 130, 173, 0.5),
                0 0 0 15px rgba(236, 130, 173, 0);
  }
  100% {
    box-shadow: 0 10px 40px rgba(236, 130, 173, 0.5),
                0 0 0 0 rgba(236, 130, 173, 0);
  }
}

.secret-link:hover {
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.7),
              0 0 40px rgba(236, 130, 173, 0.9);
}

.sparkle-icon {
  font-size: 2.5rem;
  display: inline-block;
  animation: sparkleRotate 3s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.6));
}

@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  50% { transform: rotate(10deg) scale(0.95); }
  75% { transform: rotate(-5deg) scale(1.05); }
}

.secret-link:hover .sparkle-icon {
  animation: sparkleRotate 0.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .secret-link {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .sparkle-icon {
    font-size: 2rem;
  }
}


.regla {
  font-family: 'Fredoka', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


@keyframes borderGlow {
  0%, 100% {
    border-color: var(--bg);
    box-shadow: var(--shadow),
                0 0 20px var(--pink-glow);
  }
  50% {
    border-color: var(--bg-light);
    box-shadow: var(--shadow),
                0 0 40px rgba(255, 105, 180, 0.8);
  }
}

.regla:hover {
  animation: borderGlow 2s ease-in-out infinite;
}


.admin-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-pink);
  text-shadow: 
    2px 2px 0px rgba(255, 255, 255, 0.8),
    4px 4px 8px rgba(236, 130, 173, 0.4);
  margin-bottom: 0.5rem;
  animation: floatTitle 3s ease-in-out infinite;
}

.admin-subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dark);
  opacity: 0.8;
}

.sparkle {
  display: inline-block;
  animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  50% { transform: rotate(10deg) scale(1); }
  75% { transform: rotate(-10deg) scale(1.1); }
}

@keyframes floatTitle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}


.admin-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 
    0 10px 30px rgba(236, 130, 173, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.admin-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 182, 193, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(236, 130, 173, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.admin-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--primary-pink);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emoji-icon {
  font-size: 1.5em;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

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

.admin-form {
  position: relative;
  z-index: 1;
}

.input-group-kawaii {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .input-group-kawaii {
    flex-direction: row;
    align-items: stretch;
  }
}

.input-kawaii {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 3px solid var(--border-light);
  border-radius: 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  outline: none;
}

.input-kawaii:focus {
  border-color: var(--primary-pink);
  background: white;
  box-shadow: 
    0 0 0 4px rgba(236, 130, 173, 0.1),
    0 5px 15px rgba(236, 130, 173, 0.2);
  transform: translateY(-2px);
}

.input-kawaii::placeholder {
  color: rgba(74, 54, 69, 0.4);
}


.btn-kawaii {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-kawaii::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-kawaii:hover::before {
  width: 300px;
  height: 300px;
}

.btn-kawaii:active {
  transform: scale(0.95);
}

.btn-kawaii:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-icon, .btn-text {
  position: relative;
  z-index: 1;
}


.btn-primary-kawaii {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
  color: black;
}

.btn-primary-kawaii:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-pink) 100%);
  box-shadow: 0 6px 20px rgba(236, 130, 173, 0.4);
  transform: translateY(-2px);
}

.btn-secondary-kawaii {
  background: linear-gradient(135deg, #f8b4d9 0%, #ffc8e8 100%);
  color: var(--text-dark);
}

.btn-secondary-kawaii:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffc8e8 0%, #f8b4d9 100%);
  box-shadow: 0 6px 20px rgba(248, 180, 217, 0.4);
  transform: translateY(-2px);
}

.btn-icon-only {
  padding: 0.75rem;
  font-size: 1.25rem;
  min-width: 45px;
  justify-content: center;
}

.btn-move {
  background: linear-gradient(135deg, #a8d5ff 0%, #c8e3ff 100%);
}

.btn-move:hover:not(:disabled) {
  background: linear-gradient(135deg, #c8e3ff 0%, #a8d5ff 100%);
  box-shadow: 0 6px 20px rgba(168, 213, 255, 0.4);
}

.btn-delete {
  background: linear-gradient(135deg, #ffb8b8 0%, #ffd6d6 100%);
}

.btn-delete:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffd6d6 0%, #ffb8b8 100%);
  box-shadow: 0 6px 20px rgba(255, 184, 184, 0.4);
}


.rules-admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rule-admin-item {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease backwards;
  animation-delay: calc(var(--item-index) * 0.1s);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .rule-admin-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.rule-admin-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary-pink);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(236, 130, 173, 0.2);
}

.rule-admin-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rule-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
  color: white;
  border-radius: 50%;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(236, 130, 173, 0.3);
}

.rule-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.rule-admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}


.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: sway 2s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.empty-state p {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.125rem;
}



.paslu-container {
  position: relative;
  padding: 2rem 0;
}


.paslu-header {
  position: relative;
  z-index: 2;
}

.paslu-sparkles {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.sparkle-rotate {
  font-size: 2rem;
  display: inline-block;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-rotate.delay-1 {
  animation-delay: 0.5s;
}

.sparkle-rotate.delay-2 {
  animation-delay: 1s;
}

@keyframes sparkleFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(-5px) rotate(180deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(270deg) scale(1.1);
  }
}

.paslu-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink), #ffd6e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 5px 15px rgba(236, 130, 173, 0.3);
  margin-bottom: 0.5rem;
  animation: floatTitle 3s ease-in-out infinite;
}

.paslu-subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dark);
  opacity: 0.8;
}


.paslu-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 35px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 
    0 15px 40px rgba(236, 130, 173, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(10px);
  margin: 2rem 0;
  overflow: hidden;
  animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% {
    box-shadow: 
      0 15px 40px rgba(236, 130, 173, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  }
  50% {
    box-shadow: 
      0 20px 50px rgba(236, 130, 173, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  }
}

.paslu-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.paslu-deco {
  position: absolute;
  font-size: 2rem;
  animation: floatDeco 4s ease-in-out infinite;
}

.paslu-deco-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.paslu-deco-2 {
  top: 15%;
  right: 5%;
  animation-delay: 1s;
}

.paslu-deco-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.paslu-deco-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes floatDeco {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}


.paslu-content {
  position: relative;
  z-index: 2;
}

.paslu-code-container {
  text-align: center;
  padding: 2rem;
}

.paslu-code-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.paslu-code {
  font-family: 'Courier New', monospace;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  color: var(--text-dark);
  background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 3px dashed var(--primary-pink);
  margin: 1rem 0;
  box-shadow: 
    0 5px 20px rgba(236, 130, 173, 0.2),
    0 0 0 5px rgba(255, 255, 255, 0.5) inset;
  letter-spacing: 3px;
  animation: codePulse 2s ease-in-out infinite;
  user-select: all;
}

@keyframes codePulse {
  0%, 100% {
    transform: scale(1);
    border-color: var(--primary-pink);
  }
  50% {
    transform: scale(1.02);
    border-color: var(--secondary-pink);
  }
}

.paslu-code-hint {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  opacity: 0.7;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hint-icon {
  font-size: 1.25rem;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.paslu-footer {
  position: relative;
  z-index: 2;
}

.paslu-message {
  margin-bottom: 1.5rem;
}

.paslu-text {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink), #ffd6e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.paslu-description {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
}

.paslu-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .paslu-actions {
    flex-direction: row;
    justify-content: center;
  }
}


.paslu-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  bottom: -50px;
  font-size: 2rem;
  animation: floatUp 6s ease-in infinite;
  animation-delay: var(--float-delay);
  left: var(--float-x);
  opacity: 0.7;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

k
.me-2 {
  margin-right: 0.5rem;
}

.d-inline {
  display: inline;
}
