.bottom-line {
  background: linear-gradient(135deg, #412d85 0%, #f59c0c 100%);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(37, 17, 107, 0.4);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Animated background particles */
.bottom-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}

.bottom-line > * {
  position: relative;
  z-index: 1;
}

.summary {
  margin-bottom: 15px;
}

.summary h2 {
  font-size: 2em;
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  animation: fadeInScale 1.2s ease-out 0.6s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.account-section p {
  font-size: 1.2em;
  font-weight: 600;
  color: white;
  margin: 0;
  opacity: 0.95;
  max-width: 500px;
}

.account-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 8px 12px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
  color: #26116b;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.whatsapp-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 20px;
  border-radius: 18px;
  margin: 20px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1.5s ease-out 0.9s both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.whatsapp-section h3 {
  margin: 0 0 12px 0;
  font-size: 1.4em;
  font-weight: 700;
}

.whatsapp-section p {
  margin: 0 0 8px 0;
  opacity: 0.9;
  font-size: 1.1em;
}

.whatsapp-section a {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  animation: pulseGlow 2s ease-in-out infinite 1.2s;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
  }
}

.whatsapp-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.tagline {
  font-style: italic;
  font-size: 1.2em;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 650px;
  margin: 10px auto 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1.8s ease-out 1.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .bottom-line {
    width: 96%;
    padding: 10px 5px;
    border-radius: 15px;
  }
  .summary h2 {
    font-size: 1.5em;
  }
  .account-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  .account-section {
    gap: 10px;
  }

  .account-section p{
    font-size: 0.9em;
  }

  .whatsapp-section {
    margin: 10px ;
  }

  .whatsapp-section h3 {
    font-size: 1.1em;
  }

  .whatsapp-section p {
    font-size: 0.8em;
  }

  .whatsapp-section a {
    font-size: 0.9em;
  }

  .tagline{
    font-size: 0.9em;
  }
}
