* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #fff6ed;
  color: #3d2914;
  -webkit-font-smoothing: antialiased;
}

.recipe-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  overflow: hidden;
}

.recipe-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(255, 214, 170, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 183, 120, 0.22), transparent 55%),
    linear-gradient(180deg, #fff8f1 0%, #fff1e3 45%, #fdebd0 100%);
}

.recipe-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.recipe-bg-orb--1 {
  width: 220px;
  height: 220px;
  top: 8%;
  left: -40px;
  background: rgba(255, 170, 90, 0.35);
}

.recipe-bg-orb--2 {
  width: 180px;
  height: 180px;
  right: -30px;
  bottom: 18%;
  background: rgba(255, 120, 70, 0.22);
}

.recipe-bg-orb--3 {
  width: 120px;
  height: 120px;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  background: rgba(255, 220, 170, 0.45);
}

.recipe-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow:
    0 18px 50px rgba(180, 98, 30, 0.12),
    0 4px 14px rgba(120, 72, 24, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.recipe-icon-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
}

.recipe-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff7ef 0%, #ffe6cc 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 24px rgba(230, 126, 34, 0.16);
}

.recipe-icon-img,
.recipe-icon-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.recipe-icon-fallback svg {
  width: 100%;
  height: 100%;
  display: block;
}

.recipe-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c27a35;
}

.recipe-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: #3d2914;
}

.recipe-subtitle {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #9a7b5d;
}

.recipe-btn {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 15px 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #f39c34 0%, #e67e22 55%, #d35400 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(230, 126, 34, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.recipe-btn:active {
  transform: scale(0.985);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.28);
}

.recipe-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.recipe-hint {
  margin: 24px 0 0;
  min-height: 20px;
  font-size: 13px;
  color: #b8a990;
  line-height: 1.6;
}

.recipe-hint strong {
  color: #e67e22;
  font-weight: 600;
}

.recipe-btn.is-copied {
  background: linear-gradient(180deg, #3ddc84 0%, #27ae60 100%);
  box-shadow: 0 10px 24px rgba(39, 174, 96, 0.28);
}
