/* =========================================================
   BACKGROUND IMAGE
   Put your image in this folder and name it: background.jpg

   To use a different filename, replace background.jpg below.
   ========================================================= */

:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --card: rgba(10, 12, 18, 0.76);
  --border: rgba(255, 255, 255, 0.18);
  --accent: #f5c542;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;

  /* YOUR BACKGROUND IMAGE GOES HERE */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.62)),
    url("background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.counter-card {
  width: min(900px, 100%);
  padding: clamp(28px, 6vw, 64px);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.issue-date {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
}

.divider {
  width: min(420px, 75%);
  height: 1px;
  margin: 32px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
}

.counter-label {
  margin-bottom: 18px;
  color: var(--muted);
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.time-block {
  padding: 20px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.time-block span {
  display: block;
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}

.time-block small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: clamp(0.65rem, 2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-message {
  margin: 28px 0 0;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 650px) {
  .page {
    padding: 14px;
  }

  .counter-card {
    padding: 30px 18px;
    border-radius: 22px;
  }

  .timer {
    grid-template-columns: repeat(2, 1fr);
  }
}
