/* Background */
body {
  background: linear-gradient(160deg, #0f1a33, #1f355b 60%, #0f1a33);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #eee;
  padding-bottom: 50px;
}

/* Container */
.main-container {
  max-width: 820px;
  margin: 40px auto;
}

/* Flyer Image */
.image-wrapper {
  text-align: center;
  margin-bottom: 18px;
}

.main-image {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.ticket-counter-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.ticket-counter {
  display: inline-block;
  background: linear-gradient(135deg, #f2c94c, #d89a00);
  color: #000;
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
/* Card */
.raffle-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  color: #333;
}

.raffle-card h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  color: #1f355b;
}

/* Inputs */
.form-control,
.bootstrap-select .btn {
  height: 48px;
  font-size: 1rem;
}

.total-line {
  text-align: center;
  margin: 20px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f355b;
}

/* Buttons */
#submitButton {
  width: 100%;
  height: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  background: #1f355b;
}

#submitButton:hover:not(:disabled) {
  background: #28467a;
}

/* Footer */
.footer {
  margin-top: 35px;
  text-align: center;
  color: #ddd;
  font-size: 0.98rem;
}

/* Mobile Tweaks */
@media(max-width: 600px) {
  .raffle-card {
    padding: 24px;
  }
  .main-image {
    max-width: 100%;
  }
  .ticket-counter {
    font-size: 1.1rem;
    padding: 8px 20px;
  }
}

.winner-announcement {
  text-align: center;
  padding: 40px 15px;
  padding-bottom: 10px;
  padding-top: 10px;
}

/* Big intro line */
.winner-intro {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 35px;
  color: #333;
}

/* ABSOLUTE STAR */
.winner-name {
  font-size: 4.8rem;   /* ← THIS IS THE MONEY */
  font-weight: 900;
  margin-bottom: 40px;
  color: #1f355b;
}

/* Supporting line */
.winner-thanks {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

/* Hebrew — big and proud */
.winner-hebrew {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1f355b;
   margin-bottom: 0;       /* kill extra space */
  line-height: 1.2;
}

