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

body {
    color: var(--tg-theme-text-color);
    background: var(--tg-theme-bg-color);
}

.page {
  background-color: #00abc9;
  color: white;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* Header */
.page__header {
  text-align: center;
  margin: 20px;
}

.header__date {
  display: block;
  font-size: 28px;
}

.header__quote {
  display: block;
  font-size: 20px;
  margin-top: 5px;
}

/* Circles Section */
.page__circles {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

/* Базовый круг */
.circle {
  width: 160px;
  height: 160px;
  border: 15px solid;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.circle__img {
  width: 56px;
  height: 56px;
  z-index: 2;
}

/* Цвета окружностей */
.body-item {
  border-color: #00e676;
}

.soul-item {
  border-color: #ab8df2;
}

.society-item {
  border-color: #ffc400;
}

/* Перекрытие, чтобы добиться стиля как на изображении */
.page__circles .circle:nth-child(1) {
  transform: translateX(-40%);
  z-index: 2;
}

.page__circles .circle:nth-child(2) {
  transform: translate(40%, -100%);
  z-index: 1;
}

.page__circles .circle:nth-child(3) {
  position: absolute;
  transform: translate(0%, 70%);
  z-index: 3;
}

/* Infos Section */
.page__infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin: 10px;
}

.info-body, .info-soul, .info-society{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
    font-weight: medium;
}

.info-body {
  color: #00e676;
}

.info-soul {
  color: #ab8df2;
}

.info-society {
  color: #ffc400;
}

/* Footer */
.page__footer {
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.button__img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
}

.button__caption {
  font-size: 14px;
}