/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* PRIZE GRID (optional wrapper) */
.prizes-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

/* PRIZE CARD */
.prize-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.prize-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}

/* TITLE */
.prize-card h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* IMAGE */
.prize-image {
  position: relative;
  height: 190px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 14px;
}

/* IMAGE DARK OVERLAY */
.prize-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.7)
  );
}

/* DAYS LEFT */
.days-left {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f5c400;
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

/* TAG */
.prize-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ffb703;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* SUBTITLE */
.prize-card h2 {
  font-size: 14px;
  font-weight: 400;
  opacity: .85;
  margin-bottom: 14px;
}

/* BUTTON */
.prize-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.prize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,183,3,.45);
}

/* MODAL BACKDROP */
.prize-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* SHOW MODAL */
.prize-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* MODAL BOX */
.prize-modal-content {
  background: #0f1115;
  width: 92%;
  max-width: 420px;
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
  animation: modalPop .35s ease;
}

@keyframes modalPop {
  from {
    transform: scale(.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MODAL TITLE */
.prize-modal-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* MODAL TEXT */
.prize-modal-content p {
  font-size: 14px;
  opacity: .85;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* MODAL BUTTON */
.prize-modal-content button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  cursor: pointer;
}