* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Space out top box, center content, and footer spacer */
  color: #fff;
  overflow-x: hidden;
  position: relative;
  padding: 30px 20px;
}

/* Base body overlay for readability if background is too bright */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15); /* Subtly darkens the background photo */
  z-index: 1;
}

/* Make sure all interactive/visible components sit above the body::before overlay */
.offer-box,
.center-content,
.footer-spacer {
  position: relative;
  z-index: 2;
}

/* Offer Box at the Top */
.offer-box {
  background: rgba(255, 255, 255, 0.45); /* Transparent light-grey glassmorphic background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 15px 35px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  max-width: 90%;
  width: 480px;
  transition: transform 0.3s ease;
}

.offer-box:hover {
  transform: translateY(-2px);
}

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.whatsapp-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 2px;
}

.whatsapp-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.whatsapp-number:hover {
  color: #ff0000;
  transform: scale(1.02);
}

/* Center Content Section */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 40px 0;
  text-align: center;
}

/* Heading with Red Side Lines */
.heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.heading-line {
  flex-grow: 1;
  height: 4px;
  background-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.cursive-heading {
  font-family: 'Playball', cursive;
  color: #ff0000;
  font-size: 5.5rem;
  font-weight: normal;
  margin: 0 30px;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.4);
}

/* Block Texts - Arbitrary Detention, Solitary Confinement */
.block-text-container {
  margin-bottom: 25px;
}

.block-text {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: #d4c29d; /* Khaki/sand/gold color matching sample page */
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.15;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.95);
  margin-bottom: 5px;
}

/* Live Counter Container */
.counter-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 25px;
}

.counter-number {
  font-family: 'Anton', sans-serif;
  font-size: 9rem;
  color: #ff0000;
  line-height: 0.85;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.95);
  margin-right: 20px;
}

.counter-label {
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  color: #ff0000;
  text-transform: uppercase;
  line-height: 0.85;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.95);
}

/* Gothic Bottom Text */
.bottom-gothic-text {
  font-family: 'Pirata One', cursive;
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.95);
  margin-top: 15px;
  letter-spacing: 1px;
}

/* Footer Spacer */
.footer-spacer {
  height: 50px;
}

/* Responsive Styles for Tablet / Small Screen */
@media (max-width: 900px) {
  .cursive-heading {
    font-size: 4rem;
    margin: 0 20px;
  }
  .block-text {
    font-size: 3rem;
    letter-spacing: 3px;
  }
  .counter-number {
    font-size: 7.5rem;
    margin-right: 15px;
  }
  .counter-label {
    font-size: 3.5rem;
  }
  .bottom-gothic-text {
    font-size: 2rem;
  }
}

/* Responsive Styles for Mobile */
@media (max-width: 600px) {
  body {
    padding: 20px 10px;
    justify-content: space-around;
  }
  .offer-box {
    padding: 12px 20px;
  }
  .offer-title {
    font-size: 1.25rem;
  }
  .whatsapp-number {
    font-size: 1.25rem;
  }
  .cursive-heading {
    font-size: 2.8rem;
    margin: 0 10px;
  }
  .heading-line {
    height: 3px;
  }
  .block-text {
    font-size: 2.1rem;
    letter-spacing: 2px;
  }
  .counter-container {
    flex-direction: row;
    align-items: center;
  }
  .counter-number {
    font-size: 5.5rem;
    margin-right: 10px;
  }
  .counter-label {
    font-size: 2.8rem;
  }
  .bottom-gothic-text {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.3;
  }
  .footer-spacer {
    display: none;
  }
}
