:root {
  --bg-main: #C4D7DD;
  --bg-secondary: #DDDAC4;
  --bg-tertiary: #202020;

  --text-primary: #000000;
  --text-secondary: #b3b3b3;
  --text-muted: #777;

  --accent: #C4DDCE;
  --accent-secondary: #DDC4D3;

  --border: #2a2a2a;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
}

.title {
  text-align: center;
  margin: 20px 0 10px;
  font-size: 2rem;
  font-weight: 600;
}

.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-box {
  background: var(--bg-secondary);
  padding: 30px 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 500px;
  height: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;

  display: flex;
  flex-direction: column;
}

.main-image {
  display: block;
  width: auto;
  height: 150px;
  margin: 20px auto;
  border-radius: 12px;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;

  flex: 1;
  align-items: center;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn.primary {
  --scale: 1;
  background: var(--accent);
  scale: var(--scale);
}

.btn.secondary {
  background: var(--accent-secondary);
}