:root {
  --bg: #fbf7f8;
  --bg-soft: #fffdfd;
  --text: #1d1b1f;
  --muted: #6c6670;
  --line: #eadfe5;
  --white: #ffffff;
  --pink: #db2777;
  --pink-deep: #c2186a;
  --gold: #d9a441;
  --shadow-soft: 0 20px 60px rgba(62, 35, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, #fff1f7 0%, transparent 28%),
    linear-gradient(180deg, #fbf7f8 0%, #fffdfd 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, #ef4c97 100%);
  box-shadow: 0 18px 36px rgba(219, 39, 119, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(219, 39, 119, 0.34);
}

@media (max-width: 900px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}