@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.coming-soon-card {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.brand-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.mpesa-badge {
  position: relative;
  overflow: hidden;
}

.mpesa-badge:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  transition: all 0.4s;
}

.mpesa-badge:hover:after {
  left: 120%;
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: -1;
}

.wave-bg svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-bg .shape-fill {
  fill: #4f46e5;
  opacity: 0.05;
}

.countdown-item {
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card {
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.progress-bar {
  height: 6px;
  background: #e0e7ff;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  width: 65%;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  body {
    padding: 20px 16px;
    height: auto;
  }

  .coming-soon-card {
    border-radius: 12px;
  }

  .brand-gradient {
    padding: 16px 20px !important;
  }

  .wave-bg svg {
    height: 40px;
  }

  .hidden-mobile {
    display: none;
  }

  .flex-col-mobile {
    flex-direction: column;
  }

  .text-center-mobile {
    text-align: center;
  }

  .countdown-item {
    min-width: 60px;
    padding: 8px;
  }
}
