@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

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

html, body {
  background: #000;
  color: #fff;
  overflow: hidden;
  height: 100%;
  width: 100%;
  font-family: 'Montserrat', 'Poppins', sans-serif;
}

.container {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
}

/* Title */
.title-box {
  border: 2px solid #c9a227;
  padding: 8px 28px;
  margin-bottom: 22px;
  display: inline-block;
}

.title-box h1 {
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Countdown */
.countdown-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 3vw, 22px);
  justify-content: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-unit .num {
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.countdown-unit .label {
  font-size: clamp(8px, 2vw, 11px);
  color: #aaa;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.countdown-sep {
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding-top: 2px;
}

/* Tagline */
.tagline {
  font-style: italic;
  font-weight: 700;
  font-size: clamp(13px, 3.5vw, 17px);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* Circle Image */
  img {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  margin-top: 10px;
  border-radius: 50%;
}

/* Telegram Button */
.tg-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #c9a227 0%, #f0d060 50%, #c9a227 100%);
  color: #000;
  font-weight: 800;
  font-size: clamp(14px, 3.5vw, 17px);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  width: min(90vw, 380px);
  justify-content: center;
  margin-bottom: 24px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

.tg-btn:hover {
  opacity: 0.92;
}

/* Bottom Text */
.bottom-text {
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #fff;
}

/* Divider */
.divider {
  width: min(90vw, 380px);
  height: 1px;
  background: #444;
}
