:root {
  --bg: #d9d1c6;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(60, 52, 45, 0.15);
  --text: #1e1d1b;
  --muted: #5e5a54;
  --soft: #7a726b;
  --accent: #d9d9d9;
  --brand: #3a3a3a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Cairo", sans-serif;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page-shell {
  width: min(1100px, 92vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px;
  position: relative;
}

.brand-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.logo-icon {
  width: 76px;
  height: 76px;
  opacity: 0.95;
  filter: grayscale(1) brightness(1.25);
}

.logo-word {
  width: min(520px, 58vw);
  opacity: 0.92;
  filter: grayscale(1) brightness(1.15);
}

.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f4f4f4;
}

.subtitle {
  max-width: 700px;
  margin: 20px auto 36px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.9;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 140px));
  gap: 18px;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.time-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 10px 16px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}

.time-box span {
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.time-box label {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--soft);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .page-shell {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .brand-block {
    gap: 12px;
    flex-wrap: wrap;
  }

  .logo-icon {
    width: 56px;
    height: 56px;
  }

  .logo-word {
    width: min(360px, 72vw);
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 12px;
  }

  .time-box {
    min-height: 110px;
  }
}
