/* ============================================================
   王贵 & 欧定金 · 婚礼电子请柬
   主题：新中式 · 朱砂与宣纸
   ============================================================ */

@font-face {
  font-family: 'NotoSerifSC';
  src: url('../fonts/noto-serif-sc-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSerifSC';
  src: url('../fonts/noto-serif-sc-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --red: #a63a2b;          /* 朱砂 */
  --red-deep: #7e2a1e;     /* 深朱 */
  --red-ink: #5f1f16;      /* 暗朱 */
  --paper: #f7f2e7;        /* 宣纸 */
  --paper-2: #efe7d6;      /* 宣纸阴影 */
  --gold: #b98f4e;         /* 鎏金 */
  --gold-bright: #d4af6e;  /* 亮金 */
  --ink: #332a24;          /* 墨 */
  --ink-soft: #6b5d52;     /* 淡墨 */
  --serif: 'NotoSerifSC', 'Songti SC', 'SimSun', serif;
  --brush: 'MaShanZheng', 'NotoSerifSC', 'Kaiti SC', 'STKaiti', 'KaiTi', serif;
  --card-shadow: 0 18px 45px -18px rgba(63, 26, 18, .45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--red-deep);
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

/* 桌面端：居中竖幅，像一张立在案上的请柬 */
#app {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255,255,255,.5), transparent 60%),
    var(--paper);
  box-shadow: 0 0 80px rgba(0,0,0,.5);
  overflow: hidden;
}

/* 宣纸噪点 */
#app::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------------- 信封开屏 ---------------- */
#envelope {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  background:
    radial-gradient(100% 70% at 50% 30%, #93392a, var(--red-deep) 75%);
  transition: opacity .8s ease .55s, visibility 0s 1.4s;
}
#envelope::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
#envelope.opened {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.env-body {
  position: relative;
  width: min(78vw, 320px);
  aspect-ratio: 3 / 4.35;
  transform: translateY(14px);
  transition: transform .9s cubic-bezier(.2,.7,.2,1) .5s;
}
#envelope.opened .env-body { transform: translateY(-46vh); }

.env-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #f9f4e8, #efe5d0);
  border-radius: 6px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 11%;
  text-align: center;
}
.env-inner .seal { display: none; }
.env-inner .env-names {
  font-family: var(--brush);
  font-size: 30px;
  color: var(--red-deep);
  letter-spacing: .08em;
}
.env-inner .env-sub {
  font-size: 12px;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--ink-soft);
}
.env-inner .env-line {
  width: 46px; height: 1px;
  background: var(--gold);
  position: relative;
}
.env-inner .env-line::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.env-inner .env-date {
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--ink-soft);
  font-weight: 700;
}

/* 封盖（翻开动画） */
.env-flap {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 34%;
  background: linear-gradient(180deg, #a03828, #8c2f21);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transition: transform .9s cubic-bezier(.6,.05,.3,1);
  z-index: 3;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.22));
}
#envelope.opened .env-flap { transform: rotateX(178deg); }
.env-flap::after {
  content: '囍';
  position: absolute;
  left: 50%; bottom: -17px;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #d7543f, #7e2a1e 78%);
  color: #f3e2b8;
  font-family: var(--brush);
  font-size: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.35), inset 0 0 6px rgba(0,0,0,.3);
}
#envelope.opened .env-flap::after { opacity: 0; transition: opacity .2s; }

.env-pocket {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(140,47,33,.0) 0%, rgba(140,47,33,.0) 55%, #96352a 56%, #8a2f22 100%);
  clip-path: polygon(0 100%, 0 55%, 50% 74%, 100% 55%, 100% 100%);
  border-radius: 6px;
}

.env-hint {
  position: absolute;
  left: 50%;
  bottom: max(7vh, 34px);
  transform: translateX(-50%);
  color: rgba(247,242,231,.92);
  font-size: 13px;
  letter-spacing: .5em;
  text-indent: .5em;
  white-space: nowrap;
  animation: breath 2.4s ease-in-out infinite;
  z-index: 5;
}
@keyframes breath {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}

/* ---------------- 通用布局 ---------------- */
section {
  position: relative;
  z-index: 1;
  padding: 72px 26px;
}

/* 竖排旁款 */
.side-mark {
  position: absolute;
  top: 64px;
  left: 18px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: .5em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.side-mark::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* 金线分隔 */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  width: min(240px, 64%);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider i {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* 章节标题 */
.sec-title {
  text-align: center;
  font-family: var(--brush);
  font-size: 32px;
  color: var(--red-deep);
  letter-spacing: .14em;
  text-indent: .14em;
}
.sec-eyebrow {
  text-align: center;
  font-size: 10px;
  letter-spacing: .5em;
  text-indent: .5em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

/* 入场动画 */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .15s; }
.reveal[data-delay="2"] { transition-delay: .3s; }
.reveal[data-delay="3"] { transition-delay: .45s; }

/* ---------------- HERO ---------------- */
#hero {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
}
.hero-top {
  text-align: center;
  padding: 0 26px;
}
.hero-top .eyebrow {
  font-size: 10px;
  letter-spacing: .46em;
  text-indent: .46em;
  color: var(--gold);
  font-weight: 700;
}
.hero-names {
  margin-top: 16px;
  font-family: var(--brush);
  font-size: 52px;
  line-height: 1.25;
  color: var(--red-deep);
  letter-spacing: .04em;
}
.hero-names .amp {
  font-size: .62em;
  color: var(--gold);
  margin: 0 .12em;
  font-family: var(--serif);
  font-style: italic;
}
.hero-photo {
  width: calc(100% - 52px);
  margin: 30px auto 0;
  position: relative;
  border-radius: 4px;
  padding: 10px;
  background: #fffdf8;
  box-shadow: var(--card-shadow), inset 0 0 0 1px rgba(185,143,78,.35);
}
.hero-photo::after {
  content: '囍';
  position: absolute;
  top: -17px; right: 14px;
  width: 40px; height: 40px;
  background: linear-gradient(145deg, #b84230, #8c2f21);
  color: #f6ecd9;
  font-family: var(--brush);
  font-size: 23px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transform: rotate(5deg);
  box-shadow: inset 0 0 0 2px rgba(246,236,217,.5), 0 5px 12px rgba(95,31,22,.4);
}
.hero-photo img { border-radius: 2px; }
.hero-note {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: .18em;
}
.hero-date {
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--ink);
}
.hero-date b { color: var(--red); }
.scroll-hint {
  margin: 42px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .4em;
  text-indent: .4em;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------------- 邀请词 ---------------- */
#invite {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(185,143,78,.08), transparent),
    var(--paper-2);
  text-align: center;
}
.invite-poem {
  margin: 30px auto 0;
  max-width: 300px;
  font-size: 15px;
  line-height: 2.35;
  color: var(--ink);
  letter-spacing: .12em;
}
.invite-poem p + p { margin-top: 22px; }
.invite-poem .em {
  color: var(--red);
  font-weight: 700;
}
.invite-card {
  width: min(320px, 84%);
  margin: 40px auto 0;
  padding: 10px;
  background: #fffdf8;
  box-shadow: var(--card-shadow), inset 0 0 0 1px rgba(185,143,78,.3);
  transform: rotate(-1.2deg);
}
.invite-card img { border-radius: 2px; }

/* ---------------- 倒计时 ---------------- */
#countdown {
  background:
    radial-gradient(110% 90% at 50% 10%, #9c3a2a, var(--red-deep) 72%);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
#countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
#countdown .sec-eyebrow { color: rgba(247,242,231,.65); }
#countdown .sec-title { color: #f3e6cd; }
.cd-cols {
  margin-top: 34px;
  display: flex;
  gap: 12px;
}
.cd-col {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(212, 175, 110, .4);
  border-radius: 6px;
  padding: 14px 8px 12px;
  background: rgba(247, 242, 231, .06);
}
.cd-col-head {
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(212, 175, 110, .35);
}
.cd-col-head b {
  display: block;
  font-size: 17px;
  letter-spacing: .3em;
  text-indent: .3em;
  color: #f3e6cd;
  font-weight: 700;
}
.cd-col-head span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(212, 175, 110, .95);
  font-weight: 700;
}
.cd-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cd-cell {
  padding: 10px 2px 8px;
  background: rgba(247, 242, 231, .07);
  border: 1px solid rgba(212, 175, 110, .35);
  border-radius: 4px;
  text-align: center;
}
.cd-num {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  color: #f3e6cd;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.cd-num span {
  display: inline-block;
  animation: tick .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes tick {
  from { transform: translateY(.55em); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cd-label {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: .3em;
  text-indent: .3em;
  color: rgba(247,242,231,.6);
}
.cd-status {
  padding: 14px 4px 6px;
  text-align: center;
  font-size: 15px;
  letter-spacing: .2em;
  color: #f3e6cd;
  font-weight: 700;
}
.cd-note {
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(247,242,231,.55);
}

/* ---------------- 婚宴信息 ---------------- */
#events .sec-title { margin-bottom: 6px; }
.event-card {
  margin-top: 34px;
  position: relative;
  background: #fffdf8;
  border-radius: 6px;
  padding: 30px 24px 26px;
  box-shadow: var(--card-shadow), inset 0 0 0 1px rgba(185,143,78,.28);
}
.event-card::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185,143,78,.35);
  border-radius: 3px;
  pointer-events: none;
}
.event-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #b84230, #8c2f21);
  color: #f6ecd9;
  font-size: 12px;
  letter-spacing: .3em;
  text-indent: .3em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(95,31,22,.35);
}
.event-date {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: .06em;
}
.event-date b { color: var(--red); font-size: 30px; }
.event-lunar {
  text-align: center;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 700;
}
.event-addr {
  text-align: center;
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: .1em;
}
.event-btns {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .16em;
  text-indent: .16em;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:active { transform: scale(.96); }
.btn-primary {
  background: linear-gradient(145deg, #b84230, #8c2f21);
  color: #f6ecd9;
  box-shadow: 0 8px 18px rgba(140,47,33,.38);
}
.btn-ghost {
  background: transparent;
  color: var(--red-deep);
  box-shadow: inset 0 0 0 1px rgba(140,47,33,.55);
}
.copy-link {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(185,143,78,.6);
}

/* ---------------- 画廊 ---------------- */
#gallery {
  background:
    radial-gradient(90% 50% at 50% 0%, rgba(185,143,78,.09), transparent),
    var(--paper-2);
  overflow: hidden;
}
.gallery-wrap { position: relative; }
.gallery-track {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 26px 26px;
  margin-left: -26px;
  margin-right: -26px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img { -webkit-user-drag: none; user-select: none; }
.g-item {
  flex: none;
  width: min(68vw, 268px);
  scroll-snap-align: center;
  background: #fffdf8;
  padding: 8px;
  border-radius: 4px;
  box-shadow: var(--card-shadow), inset 0 0 0 1px rgba(185,143,78,.28);
}
.g-item:nth-child(even) { transform: rotate(1.4deg); }
.g-item:nth-child(odd) { transform: rotate(-1.2deg); }
.g-item img { border-radius: 2px; aspect-ratio: 2/3; object-fit: cover; }
.g-item figcaption {
  padding: 10px 4px 4px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .32em;
  text-indent: .32em;
  color: var(--ink-soft);
}
.gallery-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  z-index: 5;
  width: 42px; height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(51, 42, 36, .45);
  color: #f7f2e7;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 4px;
  font-family: var(--serif);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(247,242,231,.35), 0 6px 14px rgba(63,26,18,.25);
  transition: background .25s ease, transform .25s ease;
}
.gallery-nav:hover { background: rgba(140, 47, 33, .75); transform: translateY(-40%) scale(1.06); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
@media (hover: hover) and (pointer: fine) {
  .gallery-nav { display: grid; place-items: center; }
  .gallery-track { cursor: grab; }
  .gallery-track.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
}
.gallery-note {
  text-align: center;
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--ink-soft);
}

/* ---------------- 结尾 ---------------- */
#ending {
  background:
    radial-gradient(110% 80% at 50% 0%, #9c3a2a, var(--red-deep) 74%);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
#ending::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.end-photo {
  width: min(300px, 78%);
  margin: 0 auto;
  padding: 9px;
  background: #fffdf8;
  box-shadow: 0 22px 55px -18px rgba(0,0,0,.55), inset 0 0 0 1px rgba(185,143,78,.35);
  transform: rotate(1.1deg);
}
.end-photo img { border-radius: 2px; }
.end-title {
  margin-top: 40px;
  font-family: var(--brush);
  font-size: 40px;
  letter-spacing: .18em;
  text-indent: .18em;
  color: #f3e6cd;
}
.end-sign {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: .24em;
  color: rgba(247,242,231,.85);
}
.end-date {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(247,242,231,.55);
}
.end-seal {
  width: 52px; height: 52px;
  margin: 34px auto 0;
  background: linear-gradient(145deg, #c14a36, #8c2f21);
  color: #f6ecd9;
  font-family: var(--brush);
  font-size: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  transform: rotate(-4deg);
  box-shadow: inset 0 0 0 2px rgba(246,236,217,.55), inset 0 0 14px rgba(0,0,0,.3), 0 8px 18px rgba(0,0,0,.35);
}
.end-footer {
  margin-top: 40px;
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(247,242,231,.4);
}

/* ---------------- 音乐按钮 ---------------- */
#music-btn {
  position: fixed;
  top: calc(14px + env(safe-area-inset-top));
  right: 14px;
  z-index: 90;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(51, 42, 36, .34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(247,242,231,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease .8s;
}
body.started #music-btn { opacity: 1; pointer-events: auto; }
#music-btn svg {
  width: 20px; height: 20px;
  animation: spin 3.2s linear infinite;
  animation-play-state: paused;
}
body.playing #music-btn svg { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }
#music-btn .mute-line {
  display: none;
  position: absolute;
  width: 26px; height: 1.6px;
  background: rgba(247,242,231,.9);
  transform: rotate(45deg);
  border-radius: 2px;
}
body:not(.playing) #music-btn .mute-line { display: block; }

/* toast */
#toast {
  position: fixed;
  left: 50%;
  bottom: 12vh;
  transform: translateX(-50%) translateY(8px);
  z-index: 120;
  background: rgba(43, 38, 34, .88);
  color: #f7f2e7;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 10px 20px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
#toast.show { opacity: 1; transform: translateX(-50%); }

@media (min-width: 520px) {
  section { padding: 84px 40px; }
  .gallery-track { margin-left: -40px; margin-right: -40px; padding-left: 40px; padding-right: 40px; }
}
