@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&display=swap');

.s1300-section {
  background: #15417b;
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.s1300-label {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #88b2ea;
  margin-bottom: 20px;
}

.s1300-slot {
  width: 100%;
  max-width: 880px;
  min-height: 160px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s1300-reason {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 800;
  color: #e6ebf3;
  text-align: center;
  line-height: 1.25;
  transition: opacity 0.06s;
}

.s1300-reason.tampon {
  font-family: 'C1300TamponPatate', 'Nunito', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  color: #ffd21f;
  line-height: 1.15;
}

.s1300-btn {
  margin-top: 36px;
  background: #ffd21f;
  color: #15417b;
  border: none;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 48px;
  cursor: pointer;
  position: relative;
  transform: scale(1);
  transition: transform 0.08s cubic-bezier(0.68,-0.55,0.265,1.55), background 0.15s;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.s1300-btn:hover {
  background: #ffe55a;
  transform: scale(1.05);
}

.s1300-btn:active {
  transform: scale(0.94);
}

.s1300-btn.shake {
  animation: btn-shake 0.38s cubic-bezier(0.68,-0.55,0.265,1.55);
}

@keyframes btn-shake {
  0%   { transform: scale(1.0) rotate(0deg); }
  15%  { transform: scale(1.12) rotate(-4deg); }
  30%  { transform: scale(1.14) rotate(4deg); }
  45%  { transform: scale(1.1) rotate(-3deg); }
  60%  { transform: scale(1.08) rotate(2deg); }
  75%  { transform: scale(1.04) rotate(-1deg); }
  100% { transform: scale(1.0) rotate(0deg); }
}

.s1300-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-fly 0.7s ease-out forwards;
}

@keyframes particle-fly {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.3); }
}

.s1300-text-flash {
  animation: text-flash 0.25s ease-out;
}

@keyframes text-flash {
  0%   { opacity: 0; transform: translateY(18px) scale(0.94); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.s1300-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
