:root {
  --bg: #1a1410;
  --bg-elev: #241c17;
  --bg-soft: #2d231c;
  --lamp: #f5d76e;
  --lamp-dim: #b89c4d;
  --lamp-soft: rgba(245, 215, 110, 0.12);
  --text: #ede6d8;
  --text-dim: #9b8e7c;
  --accent: #c97b5a;
  --danger: #d76a4e;
  --border: rgba(245, 215, 110, 0.14);
  --shadow-lamp: 0 0 60px rgba(245, 215, 110, 0.18);
  --serif: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--lamp); text-decoration: none; }
a:hover { color: var(--lamp-dim); }

button, input, textarea {
  font-family: inherit;
  color: var(--text);
}
button {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
button:hover { border-color: var(--lamp); color: var(--lamp); }
button:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-dim);
  padding: 6px 12px;
  font-size: 0.85em;
}

input, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text);
  width: 100%;
  font-size: 0.95em;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--lamp);
  box-shadow: 0 0 0 3px var(--lamp-soft);
}
textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

/* 暖灯光晕 */
.lamp-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 215, 110, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 18% 80%, rgba(201, 123, 90, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(245, 215, 110, 0.05) 0%, transparent 45%);
}

/* ---------------- Topbar ---------------- */
.topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(26, 20, 16, 0.6);
  backdrop-filter: blur(6px);
}
.brand-mini { color: var(--lamp); font-size: 1.1em; letter-spacing: 0.1em; }
.page-title { margin: 0; font-weight: 400; letter-spacing: 0.3em; color: var(--lamp); }
.nav-links { display: flex; gap: 28px; justify-content: center; }
.nav-links a { color: var(--text-dim); letter-spacing: 0.2em; }
.nav-links a:hover { color: var(--lamp); }
.user-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.user-chip-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--border);
}
.user-chip-link:hover { border-color: var(--lamp); }
.username { font-size: 0.9em; }
.points { color: var(--lamp); font-size: 0.85em; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-elev);
}
.avatar.big { width: 96px; height: 96px; }

/* ---------------- Auth pages ---------------- */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.auth-card {
  position: relative; z-index: 1;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 48px;
  width: 360px;
  box-shadow: var(--shadow-lamp);
}
.brand {
  margin: 0; text-align: center;
  font-size: 2.2em; letter-spacing: 0.5em;
  color: var(--lamp); font-weight: 400;
}
.brand-sub { text-align: center; color: var(--text-dim); margin: 8px 0 28px; letter-spacing: 0.15em; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9em; color: var(--text-dim); }
.auth-form button { background: var(--lamp); color: var(--bg); border: none; padding: 10px; font-size: 1em; margin-top: 8px; }
.auth-form button:hover { background: var(--lamp-dim); color: var(--bg); }
.auth-msg, .msg { color: var(--accent); font-size: 0.85em; min-height: 1em; }
.auth-footer { text-align: center; margin-top: 20px; color: var(--text-dim); font-size: 0.9em; }

/* ---------------- Home ---------------- */
.home-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 24px;
  padding: 32px;
  min-height: calc(100vh - 80px);
}
.side-left, .side-right { display: flex; flex-direction: column; gap: 20px; }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.card h3 {
  margin: 0 0 14px;
  font-weight: 400; letter-spacing: 0.25em;
  color: var(--lamp); font-size: 0.95em;
}
.card h4 { color: var(--text-dim); font-weight: 400; margin: 18px 0 8px; letter-spacing: 0.15em; font-size: 0.85em; }
.card-link { display: inline-block; margin-top: 10px; font-size: 0.85em; color: var(--text-dim); }
.card-link:hover { color: var(--lamp); }

.center-stage {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.clock {
  font-size: 7em;
  letter-spacing: 0.05em;
  color: var(--lamp);
  text-shadow: 0 0 40px var(--lamp-soft);
  font-variant-numeric: tabular-nums;
  font-weight: 300;
}
.clock .seconds {
  font-size: 0.35em;
  vertical-align: super;
  margin-left: 0.2em;
  color: var(--lamp-dim);
}
.quote {
  margin-top: 24px;
  font-size: 1.2em;
  color: var(--text-dim);
  letter-spacing: 0.2em;
}

/* Sticky 便签 */
.sticky-stack {
  width: 100%;
  height: 90px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.sticky-stack::before, .sticky-stack::after {
  content: ""; position: absolute; inset: 4px 6px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  z-index: -1;
}
.sticky-stack::after { transform: rotate(2deg) translate(2px, 2px); }
.sticky-paper { color: var(--text-dim); font-size: 1.5em; }
.sticky-stack:hover { border-color: var(--lamp); }

.sticky-note {
  margin-top: 12px;
  position: relative;
  background: #f5d76e;
  color: #2a1f15;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg);
}
.sticky-note textarea {
  background: transparent;
  border: none;
  color: inherit;
  font-family: var(--serif);
  width: 100%;
  min-height: 80px;
  padding: 0;
}
.sticky-note textarea:focus { box-shadow: none; }
.sticky-close {
  position: absolute; top: 4px; right: 8px;
  background: transparent; border: none; color: #2a1f15;
  font-size: 1.4em; cursor: pointer; line-height: 1;
}
.sticky-close:hover { color: var(--danger); }

/* Timer */
.timer-display {
  font-size: 2.4em;
  font-variant-numeric: tabular-nums;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--lamp);
  margin: 8px 0;
}
.timer-controls { display: grid; grid-template-columns: 1fr auto auto auto; gap: 6px; }
.timer-controls input { padding: 6px 8px; font-size: 0.9em; }
.timer-controls button { padding: 6px 10px; font-size: 0.85em; }

/* Radio */
.radio-toggle { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 24px; transition: 0.3s;
}
.slider::before {
  content: ""; position: absolute;
  height: 16px; width: 16px;
  left: 3px; top: 3px;
  background: var(--text-dim);
  border-radius: 50%; transition: 0.3s;
}
.switch input:checked + .slider { background: var(--lamp-soft); border-color: var(--lamp); }
.switch input:checked + .slider::before { transform: translateX(20px); background: var(--lamp); }
.now-playing {
  font-size: 0.95em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 6px 0;
}
.now-playing.big { font-size: 1.4em; color: var(--lamp); margin: 14px 0; }
.elapsed { color: var(--text-dim); font-variant-numeric: tabular-nums; }
.radio-iframe-host { display: none; margin-top: 12px; }
.radio-iframe-host.active { display: block; }
.radio-iframe-host iframe {
  width: 100%;
  height: 80px;
  border: none;
  border-radius: 6px;
  background: var(--bg);
}
.radio-iframe-host.big iframe { height: 240px; }

/* Online */
.online-count {
  text-align: center;
  font-size: 2.4em;
  color: var(--lamp);
  font-variant-numeric: tabular-nums;
}

/* ---------------- 文海 ---------------- */
.wenhai-stage {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.bubble {
  position: absolute;
  width: 220px;
  min-height: 130px;
  background: rgba(36, 28, 23, 0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  font-size: 0.9em;
  color: var(--text);
  display: flex; flex-direction: column; gap: 8px;
}
.bubble:hover {
  transform: scale(1.06);
  border-color: var(--lamp);
  box-shadow: 0 0 32px var(--lamp-soft);
  z-index: 5;
}
.bubble-author {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-dim); font-size: 0.85em;
}
.bubble-author .avatar { width: 22px; height: 22px; }
.bubble-content {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bubble-score {
  position: absolute; right: 10px; top: 10px;
  color: var(--lamp); font-size: 0.85em;
}

.fab {
  position: fixed; right: 32px; bottom: 32px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lamp);
  color: var(--bg);
  font-size: 0.95em;
  border: none;
  z-index: 50;
  box-shadow: 0 6px 24px rgba(245, 215, 110, 0.35);
  letter-spacing: 0.1em;
}
.fab:hover { background: var(--lamp-dim); color: var(--bg); }

/* Modal */
.modal {
  position: fixed; inset: 0;
  background: rgba(10, 7, 5, 0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  backdrop-filter: blur(4px);
}
.modal.hidden { display: none; }
.modal-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  width: 520px;
  max-width: 90vw;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-card.wide { width: 720px; }
.modal-close {
  position: absolute; right: 14px; top: 12px;
  background: transparent; border: none; color: var(--text-dim);
  font-size: 1.6em; cursor: pointer; line-height: 1; padding: 4px 8px;
}
.modal-close:hover { color: var(--lamp); }
.modal-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.char-count { color: var(--text-dim); font-size: 0.85em; }
.hint { color: var(--text-dim); font-size: 0.85em; margin: 6px 0 14px; }

/* Post detail */
.post-detail { display: flex; flex-direction: column; gap: 14px; padding-bottom: 18px; border-bottom: 1px dashed var(--border); }
.post-detail-header { display: flex; align-items: center; gap: 12px; }
.post-detail-content { line-height: 1.8; white-space: pre-wrap; }
.vote-row { display: flex; gap: 8px; align-items: center; color: var(--text-dim); font-size: 0.9em; margin-top: 4px; }
.vote-btn {
  background: transparent; border: 1px solid transparent;
  color: var(--text-dim); padding: 2px 8px; cursor: pointer;
  font-size: 1.1em; border-radius: 4px;
}
.vote-btn.up.active { color: var(--lamp); border-color: var(--lamp); }
.vote-btn.down.active { color: var(--accent); border-color: var(--accent); }
.vote-btn:hover { color: var(--text); }

.comments { padding: 14px 0; display: flex; flex-direction: column; gap: 12px; }
.comment {
  display: flex; gap: 10px;
  font-size: 0.9em;
}
.comment .avatar { width: 28px; height: 28px; flex-shrink: 0; }
.comment-body { background: var(--bg-soft); padding: 8px 12px; border-radius: 8px; flex: 1; }
.comment-author { color: var(--text-dim); font-size: 0.85em; margin-bottom: 4px; }
.comment-form { display: flex; gap: 8px; padding-top: 12px; border-top: 1px dashed var(--border); }

/* ---------------- Diantai ---------------- */
.diantai-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; padding: 32px; max-width: 1100px; margin: 0 auto;
}
.request-form { display: flex; gap: 8px; }
.request-form input { flex: 1; }
.song-list { padding-left: 20px; color: var(--text); }
.song-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  display: flex; justify-content: space-between; gap: 12px;
}
.song-list li .meta { color: var(--text-dim); font-size: 0.85em; }
.song-list.now-playing-line { color: var(--lamp); }

/* ---------------- Weituo ---------------- */
.weituo-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 24px; padding: 32px; max-width: 1200px; margin: 0 auto;
}
.weituo-form { display: flex; flex-direction: column; gap: 12px; }
.weituo-form label { display: flex; flex-direction: column; gap: 4px; font-size: 0.9em; color: var(--text-dim); }
.commission-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.commission-row { display: flex; align-items: center; gap: 10px; }
.commission-title { color: var(--lamp); font-size: 1em; }
.commission-desc { color: var(--text); line-height: 1.6; font-size: 0.9em; white-space: pre-wrap; }
.points-badge {
  background: var(--lamp);
  color: var(--bg);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.8em;
}
.commission-actions { display: flex; gap: 8px; justify-content: flex-end; }
.commission-actions button { padding: 4px 10px; font-size: 0.85em; }
.status-tag { font-size: 0.75em; color: var(--text-dim); padding: 2px 8px; border: 1px solid var(--border); border-radius: 999px; }

/* ---------------- Profile ---------------- */
.profile-card {
  max-width: 560px;
  margin: 32px auto;
  display: flex; flex-direction: column; gap: 24px;
}
.profile-row { display: flex; align-items: center; gap: 20px; }
.profile-name { font-size: 1.4em; color: var(--lamp); }
.profile-meta { color: var(--text-dim); font-size: 0.9em; margin-top: 4px; }
.avatar-form { display: flex; flex-direction: column; gap: 10px; }
.file-label {
  display: inline-block;
  padding: 8px 14px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-dim);
}
.file-label:hover { border-color: var(--lamp); color: var(--lamp); }
.file-label input { display: none; }

.hidden { display: none !important; }

/* ---------------- 树洞 ---------------- */
.shudong-stage {
  max-width: 720px;
  margin: 32px auto;
  padding: 0 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.shudong-compose textarea { min-height: 90px; }
.hollow-list {
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.hollow-list::before {
  content: ""; position: absolute;
  left: 18px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}
.hollow {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px 12px 38px;
  position: relative;
  line-height: 1.7;
}
.hollow::before {
  content: "·";
  position: absolute; left: 14px; top: 14px;
  color: var(--lamp);
  font-size: 1.6em;
  line-height: 1;
}
.hollow-content { color: var(--text); white-space: pre-wrap; word-break: break-word; }
.hollow-meta {
  margin-top: 8px;
  display: flex; justify-content: space-between;
  font-size: 0.78em; color: var(--text-dim);
}
.hollow-fade { opacity: 0.6; }
.hint.center { text-align: center; padding: 28px; }

/* ---------------- Profile edit sections ---------------- */
.edit-section {
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
.edit-section summary {
  cursor: pointer;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  padding: 6px 0;
  outline: none;
}
.edit-section summary:hover { color: var(--lamp); }
.edit-section[open] summary { color: var(--lamp); }
.edit-form {
  display: flex; flex-direction: column; gap: 10px;
  padding: 12px 0 4px;
}
.edit-form label { display: flex; flex-direction: column; gap: 4px; font-size: 0.9em; color: var(--text-dim); }

/* ---------------- 信箱（信封 + 信纸） ---------------- */
.xinxiang-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 24px; padding: 32px; max-width: 1200px; margin: 0 auto;
}
.letter-form { display: flex; flex-direction: column; gap: 12px; }
.letter-form label { display: flex; flex-direction: column; gap: 4px; font-size: 0.9em; color: var(--text-dim); }
.letter-form textarea { min-height: 200px; }
.letter-form input[type="datetime-local"] {
  color-scheme: dark;
}
.presets { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.presets button { padding: 4px 10px; font-size: 0.82em; }
.muted { color: var(--text-dim); font-size: 0.85em; font-weight: normal; letter-spacing: normal; margin-left: 6px; }

.letter-list { display: flex; flex-direction: column; gap: 12px; }
.envelope {
  background: linear-gradient(135deg, #2d2218 0%, #241c17 100%);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}
.envelope:hover {
  border-color: var(--lamp);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.envelope.sealed { cursor: default; padding-left: 26px; }
.envelope.sealed::before {
  /* 红色火漆封 */
  content: "封";
  position: absolute;
  left: 8px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-size: 0.7em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 6px rgba(201, 123, 90, 0.4);
}
.envelope.sealed:hover { transform: none; border-color: var(--border); }
.envelope.sealed .env-flap {
  /* 信封封口三角，简单装饰 */
  position: absolute; top: 0; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.envelope.opened.unread {
  border-color: var(--lamp);
  box-shadow: 0 0 24px rgba(245, 215, 110, 0.18);
  animation: env-pulse 2.4s ease-in-out infinite;
}
@keyframes env-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(245, 215, 110, 0.18); }
  50%      { box-shadow: 0 0 36px rgba(245, 215, 110, 0.30); }
}
.envelope.opened.unread::after {
  content: "新到";
  position: absolute;
  top: 8px; right: 10px;
  font-size: 0.7em;
  color: var(--lamp);
  border: 1px solid var(--lamp);
  padding: 1px 6px;
  border-radius: 999px;
}
.env-title { color: var(--lamp); font-size: 1.05em; margin-bottom: 4px; }
.env-meta { color: var(--text-dim); font-size: 0.8em; margin-bottom: 4px; }
.env-preview {
  color: var(--text-dim);
  font-size: 0.88em;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 6px;
}
.env-withdraw {
  margin-top: 8px; padding: 3px 10px; font-size: 0.78em;
}

/* 信纸样式 — 在 modal 里展示 */
.letter-paper {
  background: linear-gradient(180deg, #f5e8c8 0%, #ebd9b0 100%);
  color: #3a2a1c;
  padding: 36px 44px 44px;
  border-radius: 4px;
  font-family: var(--serif);
  line-height: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  background-image:
    linear-gradient(180deg, #f5e8c8 0%, #ebd9b0 100%),
    repeating-linear-gradient(180deg, transparent 0, transparent 31px, rgba(58, 42, 28, 0.08) 32px);
  background-blend-mode: multiply;
}
.paper-meta {
  display: flex; justify-content: space-between;
  font-size: 0.82em; color: rgba(58, 42, 28, 0.6);
  border-bottom: 1px dashed rgba(58, 42, 28, 0.2);
  padding-bottom: 8px; margin-bottom: 16px;
}
.paper-title {
  font-weight: 400;
  font-size: 1.4em;
  margin: 0 0 16px;
  color: #2a1c0e;
}
.paper-body {
  white-space: pre-wrap;
  font-size: 1.02em;
}

/* 顶栏邮件徽章 */
.mail-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--lamp);
  border-radius: 999px;
  color: var(--lamp);
  font-size: 0.85em;
  background: var(--lamp-soft);
  animation: env-pulse 2.4s ease-in-out infinite;
}
.mail-badge:hover { color: var(--bg); background: var(--lamp); }

/* 首页"未来的信"小卡 */
.letter-summary { color: var(--text); line-height: 1.8; min-height: 1.5em; }
.lamp-text { color: var(--lamp); }

/* ---------------- Night quiet (local 03-06) ---------------- */
body.night-quiet .lamp-glow { opacity: 0.35; transition: opacity 1.2s ease; }
body.night-quiet { filter: brightness(0.78); transition: filter 1.2s ease; }
body.night-quiet .clock { color: var(--lamp-dim); text-shadow: none; }
body.night-quiet .quote {
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.3em;
}
body.night-quiet .bubble {
  animation-duration: 120s !important;
  opacity: 0.7;
}
