:root {
  --bg-page: #f3f5fb;
  --bg-card: #ffffff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.15);
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-accent: #1d4ed8;
  --border-subtle: #e5e7eb;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 100%;
  max-width: 100%;
  background: var(--bg-card);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
}

.card__left {
  display: flex;
  flex-direction: column;
}

.card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .card__header {
    align-items: center;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo__image {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.logo__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.pill {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.8);
  color: var(--text-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.card__content {
  text-align: left;
  padding: 10px 0 0;
}

@media (max-width: 1023px) {
  .card__content {
    text-align: center;
  }
}

.title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.subtitle {
  margin: 8px 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.body {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.body--emphasis {
  font-weight: 600;
  color: var(--text-main);
}

.countdown {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.countdown__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.countdown__value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.countdown__label {
  margin-top: 3px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.countdown__separator {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

@media (min-width: 1024px) {
  .social {
    justify-content: flex-start;
  }
}

.social__button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  background: #f9fafb;
  transition: transform 0.12s ease-out, background 0.12s ease-out;
}

.social__button:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.social__icon {
  font-size: 14px;
  font-weight: 600;
}

.card__footer {
  padding-top: 20px;
  text-align: center;
  width: 100%;
}

.logo--small {
  margin-bottom: 8px;
}

.logo__image--small {
  width: 28px;
  height: 28px;
}

.footer__label {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.footer__names {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-main);
}

@media (max-width: 1023px) {
  .card {
    padding: 40px 30px;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 24px 12px;
  }

  .card {
    padding: 32px 24px;
    gap: 30px;
  }

  .logo__image {
    width: 40px;
    height: 40px;
  }

  .title {
    font-size: 26px;
  }

  .subtitle {
    font-size: 13px;
  }

  .body {
    font-size: 12px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown__time {
    min-width: 45px;
  }

  .countdown__value,
  .countdown__separator {
    font-size: 18px;
  }
}


