*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: #eee;
  font-family: Inter, -apple-system, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px 0 20px;
}

.wordmark {
  display: flex;
  align-items: center;
  color: #fff;
}

.wordmark svg {
  width: 120px;
  height: 24px;
}

.menu-btn {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 4px 16px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: 500 14px/20px Inter, -apple-system, Arial, sans-serif;
  cursor: default;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center right;
}

.countdown-block {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px 64px;
  gap: 16px;
}

.roadster-logo {
  margin: 0;
  width: 100%;
}

.roadster-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.timer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}

.timer .colon {
  position: relative;
  top: -3px;
  color: #d7a970;
}

.target-time {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.14px;
  text-align: center;
}

.tz-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tz-picker-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tz-picker select {
  appearance: none;
  min-width: min(320px, 86vw);
  max-width: 92vw;
  height: 36px;
  padding: 0 36px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.45);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23d7a970' d='M1.2 1.2 6 6l4.8-4.8'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  color: #fff;
  font: 500 14px/20px Inter, -apple-system, Arial, sans-serif;
  cursor: pointer;
}

.tz-picker select:focus {
  outline: 1px solid #d7a970;
  outline-offset: 2px;
}

.tz-picker option {
  color: #111;
}

.site-footer {
  background: #000;
  padding: 0 24px;
}

.site-footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 25px 0;
  list-style: none;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.14px;
  color: #eee;
}

@media (max-width: 599px) {
  .hide-phone {
    display: none;
  }

  .countdown-block {
    padding-bottom: 48px;
  }
}
