/* базовые вещи */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #e4edf7; /* фон на всю страницу */
}

.page {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: center;
}

/* card – просто контейнер по центру */
.card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 96px 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.hero__image {
  max-width: 340px;
  height: auto;
}

/* Party Time pill */
.game-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 40px;
  border-radius: 999px;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.game-pill__text {
  font-weight: 800;          /* ExtraBold */
  font-style: italic;
  font-size: 30px;
  color: #000000;
}

/* круг под Poki – только твой PNG */
.game-pill__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
}

.game-pill__circle img {
  width: 100%;
  height: auto;
}

/* ===================== */
/*  PEEPS BUTTON (BAR)   */
/* ===================== */

.links-bar {
  position: relative;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;

  /* анимация ширины – от маленькой к большой */
  width: 260px;
  max-width: 640px;
  min-height: 64px;
  transition: width 0.25s ease;
}

/* компактный вид */
.links-bar__compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.15s ease;
}

.links-bar__icon {
  display: block;
  height: 22px;
  width: auto;
}

.links-bar__icon-mail {
  height: 20px;
}

.links-bar__label {
  font-weight: 800;          /* ExtraBold */
  font-style: italic;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

/* раскрытый вид (структура: K | [links] | mail ) */
.links-bar__expanded {
  position: absolute;
  inset: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.links-bar__links {
  flex: 1;
  display: flex;
  justify-content: center;   /* центрируем группу ссылок */
  gap: 32px;
  font-size: 20px;
}

.links-bar__links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;          /* ExtraBold */
}

.links-bar__links a:hover {
  text-decoration: underline;
}

.links-bar__mail-link {
  margin-left: auto;
}

/* ОТКРЫТОЕ СОСТОЯНИЕ */
.links-bar--open {
  width: 640px;
}

/* сначала расширяется бар, потом показываем ссылки */
.links-bar--open.links-bar--links-visible .links-bar__expanded {
  opacity: 1;
  pointer-events: auto;
}

.links-bar--links-visible .links-bar__compact {
  opacity: 0;
  pointer-events: none;
}

/* --- ADAPTIVE --- */
@media (max-width: 900px) {
  .page {
    padding: 16px;
  }

  .card {
    padding: 72px 24px 56px;
    gap: 64px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero__image {
    max-width: 280px;
  }

  .game-pill__text {
    font-size: 26px;
  }

  .links-bar {
    width: 260px;
    max-width: 360px;
    padding: 16px 24px;
  }

  .links-bar--open {
    width: 100%;
    max-width: 360px;
  }

  .links-bar__expanded {
    padding: 0 24px;
  }

  .links-bar__links {
    gap: 16px;
    font-size: 13px;          /* уменьшил, чтобы всё влезло */
  }

  .links-bar__links a {
    font-size: 13px;
    font-weight: 700;
  }
}
