/* ========== 全局变量 ========== */
:root {
  --bg-1: #ffe4ec;
  --bg-2: #e6f3ff;
  --bg-3: #fff5e1;
  --pink: #ff8fb1;
  --pink-deep: #ff6b97;
  --mint: #7be0c2;
  --peach: #ffb48a;
  --sky: #8ec9ff;
  --lilac: #c8a8ff;
  --sun: #ffd66b;
  --text: #4a3b52;
  --text-soft: #8a7a92;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(255, 143, 177, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, var(--bg-1) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, var(--bg-2) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, var(--bg-3) 0%, transparent 50%),
    linear-gradient(180deg, #fff7fb 0%, #fff 100%);
  background-attachment: fixed;
  min-height: 100vh;
  user-select: none;
  -webkit-user-select: none;
}

/* ========== 自定义背景层 ========== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--bg-opacity, 0.6);
  filter: blur(var(--bg-blur, 0px));
  transform: scale(1.04); /* 模糊时避免边缘露白 */
  transition: opacity 0.15s linear;
}

.bg-layer:not(.bg-on) {
  display: none;
}

/* ========== 布局 ========== */
.app {
  max-width: 520px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* 设置按钮 */
.settings-wrap {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row-reverse;
}

.settings-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.settings-btn:active {
  transform: scale(0.92) rotate(-30deg);
}


.app-header {
  text-align: center;
  margin-bottom: 14px;
}

.title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.app-title {
  margin: 0;
  font-size: 28px;
  background: linear-gradient(135deg, var(--pink-deep), var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-emoji {
  display: inline-block;
  animation: wiggle 2.4s ease-in-out infinite;
}

.title-emoji:last-child {
  animation-delay: 0.6s;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

.app-subtitle {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

/* ========== Tabs ========== */
.tabs {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-soft);
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.tab.tab-active {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 143, 177, 0.35);
}

.tab-icon {
  font-size: 18px;
}

/* ========== Panel ========== */
.content {
  flex: 1;
  position: relative;
}

.panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.panel-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== 转盘 ========== */
.daily-recommendation {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 14px;
  padding: 8px;
  border: 1px solid rgba(255, 143, 177, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 22px rgba(255, 143, 177, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: recommendationIn 0.45s ease both;
}

.daily-image-wrap {
  position: relative;
  width: 104px;
  height: 78px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff0f5, #fff5e1);
}

.daily-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.daily-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 3px 7px;
  border-radius: 10px;
  background: rgba(255, 107, 151, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.daily-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.daily-eyebrow {
  color: var(--text-soft);
  font-size: 11px;
}

.daily-name {
  width: 100%;
  margin-top: 3px;
  color: var(--pink-deep);
  font-size: 18px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.daily-note {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 11px;
}

@keyframes recommendationIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wheel-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 8px auto 18px;
  aspect-ratio: 1 / 1;
}

.wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 10px 30px rgba(255, 143, 177, 0.25),
    inset 0 0 0 8px var(--white),
    inset 0 0 0 12px var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.05s linear;
}

#wheelCanvas {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 50%;
}

.wheel-center {
  position: absolute;
  width: 26%;
  height: 26%;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--sun), var(--peach));
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow:
    0 6px 16px rgba(255, 182, 107, 0.45),
    inset 0 -4px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
  font-family: inherit;
}

.wheel-center:active {
  transform: scale(0.95);
}

.wheel-center[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid var(--pink-deep);
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(255, 107, 151, 0.4));
}

.pointer::after {
  content: "";
  position: absolute;
  top: -28px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink-deep);
}

/* 提示 */
.hint {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hint span:first-child {
  animation: bounceY 1.2s ease-in-out infinite;
}

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* 转盘页背景设置提示 */
.background-hint {
  margin: 14px auto 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 143, 177, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  box-shadow: 0 4px 14px rgba(255, 143, 177, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.background-hint span:last-child {
  color: var(--pink-deep);
  font-size: 18px;
  line-height: 1;
}

.background-hint:active {
  transform: scale(0.97);
  background: rgba(255, 240, 245, 0.92);
}

/* ========== 结果卡片 ========== */
.result-card {
  margin: 18px auto 0;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  position: relative;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), glow 2.4s ease-in-out infinite 0.5s;
}

@keyframes popIn {
  0%   { transform: scale(0.4) translateY(20px); opacity: 0; }
  60%  { transform: scale(1.08) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(255, 143, 177, 0.18), 0 0 0 0 rgba(255, 143, 177, 0); }
  50%      { box-shadow: 0 8px 24px rgba(255, 143, 177, 0.28), 0 0 0 8px rgba(255, 143, 177, 0.12); }
}

.result-media {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0f5;
}

.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-emoji {
  font-size: 38px;
  animation: emojiBurst 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), wiggle 1.8s ease-in-out infinite 0.8s;
}

@keyframes emojiBurst {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  60%  { transform: scale(1.4) rotate(20deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: emojiBurst 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-text {
  flex: 1;
}

.result-label {
  color: var(--text-soft);
  font-size: 13px;
}

.result-dish {
  font-size: 22px;
  font-weight: 800;
  color: var(--pink-deep);
  margin-top: 2px;
  word-break: break-all;
  animation: dishReveal 0.7s ease-out 0.3s both;
}

@keyframes dishReveal {
  0%   { opacity: 0; transform: translateY(8px); letter-spacing: 4px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0; }
}

.result-label {
  color: var(--text-soft);
  font-size: 13px;
  animation: fadeIn 0.4s ease 0.1s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ========== 彩带礼花 ========== */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 14px;
  opacity: 0;
  animation: confettiFall 1.6s ease-out forwards;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-20px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(720deg);
  }
}

/* ========== 菜单 ========== */
.add-form {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  align-items: center;
}

/* 图片上传按钮 */
.add-img-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff0f5, #ffe4ec);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px dashed var(--pink);
  transition: transform 0.15s ease;
}

.add-img-btn:active {
  transform: scale(0.95);
}

.add-img-icon {
  font-size: 22px;
  filter: grayscale(0.2);
}

.add-img-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-img-clear {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--pink-deep);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 16px;
  background: #faf6fb;
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  min-width: 0;
}

.add-input::placeholder {
  color: #c0b3c8;
}

.add-btn {
  width: 52px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--mint), var(--sky));
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(123, 224, 194, 0.4);
  font-family: inherit;
  line-height: 1;
}

.add-btn:active {
  transform: scale(0.95);
}

.menu-stats {
  margin: 14px 4px 8px;
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.menu-stats b {
  color: var(--pink-deep);
  font-size: 16px;
  margin: 0 2px;
}

.menu-stats-sep {
  color: #d8cce0;
}

.link-btn {
  border: none;
  background: none;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 13px;
  padding: 2px 4px;
  font-family: inherit;
}

.link-btn:active {
  color: var(--pink-deep);
}

.link-btn.link-danger:active {
  color: #ff5252;
}

/* 菜单小提示 */
.menu-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 4px 14px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #fff0f5, #fff5e1);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  border-left: 3px solid var(--pink);
}

.menu-tip-icon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.5;
}

.dish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dish-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 12px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dish-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 0 4px var(--dish-color, var(--pink));
}

.dish-thumb {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: #fff0f5;
}

.dish-name {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  word-break: break-all;
  line-height: 1.3;
}

.dish-del {
  border: none;
  background: #fff0f5;
  color: var(--pink-deep);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 0;
}

.dish-del:active {
  background: var(--pink);
  color: var(--white);
}

/* ========== 空状态 ========== */
.empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-soft);
}

.empty-emoji {
  font-size: 50px;
  margin-bottom: 6px;
  animation: wiggle 2s ease-in-out infinite;
}

.empty-text {
  font-size: 14px;
}

/* ========== Toast ========== */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(28px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(74, 59, 82, 0.92);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  z-index: 999;
  animation: toastIn 0.25s ease;
  pointer-events: none;
  max-width: 80vw;
  text-align: center;
}

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ========== 背景设置面板 ========== */
.sheet-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(74, 59, 82, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.sheet {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border-radius: 28px 28px 0 0;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  animation: sheetUp 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes sheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sheet-title {
  font-size: 17px;
  font-weight: 800;
}

.sheet-close {
  border: none;
  background: #f4eef6;
  color: var(--text-soft);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.sheet-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  margin: 4px 2px 8px;
}

.sheet-note {
  margin: 8px 2px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-soft);
}

.bg-pick {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--pink);
  background: linear-gradient(135deg, #fff0f5, #e6f3ff);
  overflow: hidden;
  cursor: pointer;
}

.bg-pick:active {
  transform: scale(0.99);
}

.bg-pick-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-pick-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.bg-pick-icon {
  font-size: 20px;
}

.ctrl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.ctrl-label {
  font-size: 14px;
  font-weight: 600;
  width: 48px;
  flex-shrink: 0;
}

.ctrl-value {
  font-size: 13px;
  color: var(--text-soft);
  width: 42px;
  text-align: right;
  flex-shrink: 0;
}

.ctrl-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--pink), var(--sky));
  outline: none;
  min-width: 0;
}

.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--pink-deep);
  box-shadow: 0 2px 6px rgba(255, 107, 151, 0.4);
  cursor: pointer;
}

.ctrl-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--pink-deep);
  cursor: pointer;
}

.sheet-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.sheet-btn {
  flex: 1;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.sheet-btn:active {
  transform: scale(0.97);
}

.sheet-btn-ghost {
  background: #f4eef6;
  color: var(--text-soft);
}

.sheet-btn-main {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 143, 177, 0.35);
}

/* ========== 装饰：浮云小元素 ========== */
.app::before,
.app::after {
  content: "";
  position: absolute;
  font-size: 26px;
  opacity: 0.5;
  pointer-events: none;
}

.app::before {
  content: "☁️";
  top: 70px;
  left: -6px;
  animation: floatX 6s ease-in-out infinite;
}

.app::after {
  content: "🌸";
  top: 200px;
  right: -6px;
  animation: floatX 7s ease-in-out infinite reverse;
}

@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* 小屏适配 */
@media (max-height: 640px) {
  .wheel-wrap { max-width: 300px; }
}

/* 暗黑模式 (可选) */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #f3eaf2;
    --text-soft: #b3a8bd;
    --white: #2a2230;
  }
  body {
    background:
      radial-gradient(circle at 10% 10%, #4a3548 0%, transparent 50%),
      radial-gradient(circle at 90% 20%, #2d3a52 0%, transparent 50%),
      #1e1822;
  }
  .add-input { background: #382e3e; color: var(--text); }
  .dish-del { background: #3a2a36; }
  .sheet-close,
  .sheet-btn-ghost { background: #3a2a36; }
}