main {
  padding: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  height: auto !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
}

small {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.section {
  width: 100vw;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.banner-image {
  width: 100vw;
  object-fit: cover;
  object-position: top;
  display: block;
}

.scroll-container {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: fixed;
  top: 0;
  left: 0;
}

.vouchers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto 1rem;
}

.voucher-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voucher-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

.voucher-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.quantity {
  font-size: 16px;
  color: #9400d3;
  margin-bottom: 10px;
  font-weight: 600;
}

.claim-button {
  padding: 12px 25px;
  background: linear-gradient(45deg, #8a2be2, #9400d3);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.claimed-count {
  color: grey;
  font-size: 0.9rem;
  margin-top: 14px;
  margin-bottom: 0px;
}

.claim-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
  background: linear-gradient(45deg, #9400d3, #8a2be2);
}

.claim-button:disabled {
  background: linear-gradient(45deg, #4a0066, #3a1266);
  cursor: not-allowed;
}

.event-header {
  text-align: center;
  margin: 2rem auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.event-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  /* background: linear-gradient(45deg, #8a2be2, #9400d3); */
  background-color: white;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
}

.event-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
}

.countdown-badge {
  display: inline-block;
  background: #f0e6ff;
  color: #8a2be2;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 768px) {
  .vouchers-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .voucher-title {
    font-size: 16px;
  }

  .voucher-image {
    height: 120px;
  }

  .event-title {
    font-size: 1.8rem;
  }

  .event-subtitle {
    font-size: 1rem;
  }
}
