
body {
  margin: 0;
}

.page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 48px 16px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  margin: 0;
  white-space: pre-wrap;
}

.group-section {
  width: 100%;
}

.group-layout {
  max-width: 600px;
  margin: 0 auto;
}

.group-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--focus0);
}

.group-stats-item {
  flex: 1 1 150px;
  text-align: center;
}

.group-stats-value {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 5px;
}

.group-stats-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33333;
}

.group-controls {
  text-align: center;
}

.group-controls-buttons {
  margin-bottom: 24px;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.group-button {
  display: block;
  width: 100%;
  padding: 18px 36px;
  border-radius: 5px;
  background: #7300F0;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.group-button + .group-button {
  margin-top: 12px;
}

.group-button:hover,
.group-button:focus {
  text-decoration: none;
  outline: none;
  background-color: #8d24ff;
}

.group-button:active {
  background: #4e00a4;
}

@media (max-width: 480px) {
  .group-stats {
    gap: 16px;
  }
}
