/* ══════════════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════════════ */
:root {
  --cream:       #F8F6F1;
  --cream-dark:  #EEE9DF;
  --sage:        #8B9E7A;
  --sage-light:  #D0DAC8;
  --sage-dark:   #5C7A52;
  --charcoal:    #2C2C2C;
  --charcoal-mid:#5A5A5A;
  --charcoal-lt: #9A9A9A;
  --white:       #FFFFFF;
  --gold:        #C9A96E;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --radius:      12px;
  --shadow:      0 4px 40px rgba(0,0,0,0.08);
  --trans:       0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }


/* ══════════════════════════════════════════════════
   MUSIC BUTTON
══════════════════════════════════════════════════ */
.music-btn {
  position: fixed;
  top: 20px;
  left: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  transition: all var(--trans);
}

.music-btn svg {
  width: 16px;
  height: 16px;
}

.music-btn:hover {
  background: rgba(255,255,255,0.28);
  color: var(--white);
}

.music-btn.playing {
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ══════════════════════════════════════════════════
   LANGUAGE TOGGLE
══════════════════════════════════════════════════ */
.lang-toggle {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  padding: 6px 14px;
}

.lang-sep {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  padding: 2px 4px;
  border-radius: 4px;
  transition: color var(--trans);
}

.lang-btn.active {
  color: var(--white);
}

.lang-btn:hover {
  color: var(--white);
}


/* ══════════════════════════════════════════════════
   OPENER
══════════════════════════════════════════════════ */
@keyframes openerReveal {
  0%   { transform: scale(1.50); }
  100% { transform: scale(1); }
}

@keyframes letterAppear {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes waveLetter {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-18px); }
}

.opener {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.opener::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/ab.jpg') center center / cover no-repeat;
  animation: openerReveal 10s cubic-bezier(0.25, 0, 0.1, 1) forwards;
  z-index: 0;
}

.opener-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(30, 25, 20, 0.35) 0%,
    rgba(30, 25, 20, 0.52) 50%,
    rgba(30, 25, 20, 0.70) 100%
  );
}

.opener-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 60px;
  max-width: 700px;
  width: 100%;
}

.opener-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(21px, 4vw, 30px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 2.5s forwards;
}

.opener-names {
  font-family: var(--font-serif);
  font-size: clamp(28px, 9.5vw, 110px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
  white-space: nowrap;
}

.opener-names .l {
  display: inline-block;
  opacity: 0;
  animation: letterAppear 0.5s ease-out forwards;
  animation-delay: calc(3.0s + var(--i) * 0.12s);
}

.opener-sub .wl {
  display: inline-block;
  animation: waveLetter 1.05s ease-in-out forwards;
  animation-delay: calc(5.2s + var(--wi) * 0.135s);
}

.divider-line {
  width: 180px;
  margin: 0 auto 22px;
  opacity: 0.8;
}

.opener-date {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 8px;
}

.opener-location {
  font-family: var(--font-sans);
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 48px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.cd-num {
  font-family: var(--font-serif);
  font-size: clamp(42px, 8vw, 66px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.cd-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.58);
  text-transform: uppercase;
  margin-top: 6px;
}

.cd-sep {
  font-family: var(--font-serif);
  font-size: 36px;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-top: 8px;
  align-self: flex-start;
}

/* Scroll CTA */
.scroll-cta {
  animation: ctaPulse 1.4s ease-in-out 12s 1 forwards;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 40px;
  padding: 14px 28px 16px;
  transition: all var(--trans);
  backdrop-filter: blur(4px);
}

.scroll-cta svg {
  width: 18px;
  height: 18px;
  animation: bounce 2.2s ease-in-out infinite;
}

.scroll-cta:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}


/* ══════════════════════════════════════════════════
   UPLOAD SECTION
══════════════════════════════════════════════════ */
.upload-section {
  position: relative;
  background: var(--cream);
  padding: 80px 24px 100px;
  overflow: hidden;
}

.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.botanical-tl {
  top: 0;
  left: -20px;
  width: 130px;
  height: 270px;
}

.botanical-br {
  bottom: 0;
  right: -20px;
  width: 130px;
  height: 270px;
}

.section-inner {
  max-width: 580px;
  margin: 0 auto;
}

/* Arch card */
.arch-card {
  background: var(--white);
  border-radius: 60px 60px 16px 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.arch-top {
  height: 8px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--sage-light));
}

.arch-body {
  padding: 48px 40px 52px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal-mid);
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}


/* ══════════════════════════════════════════════════
   FORM ELEMENTS
══════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 24px;
}

.form-group.center {
  text-align: center;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
  color: var(--charcoal-lt);
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139, 158, 122, 0.15);
}

/* Drop zone */
.drop-zone {
  position: relative;
  border: 2px dashed var(--sage-light);
  border-radius: 10px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans);
  background: rgba(139, 158, 122, 0.03);
}

.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--sage);
  background: rgba(139, 158, 122, 0.07);
}

.drop-zone.has-file {
  border-color: var(--sage);
  border-style: solid;
}

.drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.drop-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
}

.drop-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal-mid);
  margin-bottom: 6px;
}

.drop-hint {
  font-size: 13px;
  color: var(--charcoal-lt);
  letter-spacing: 0.04em;
}

/* Selected file */
.selected-file {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(139, 158, 122, 0.08);
  border-radius: 6px;
}

.selected-file svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#file-name {
  font-size: 14px;
  color: var(--charcoal-mid);
  word-break: break-all;
}

/* Progress */
.progress-wrap {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.progress-track {
  flex: 1;
  height: 4px;
  background: var(--cream-dark);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sage-light), var(--sage-dark));
  border-radius: 99px;
  transition: width 0.2s ease;
}

.progress-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  min-width: 34px;
  text-align: right;
}

/* Error */
.error-msg {
  font-size: 14px;
  color: #b94a4a;
  font-weight: 400;
  margin-bottom: 12px;
  min-height: 0;
  display: none;
}

.error-msg.centered { text-align: center; }

/* Video recording tips */
.video-tips {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.video-tip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px 16px;
  background: rgba(139, 158, 122, 0.06);
  border: 1px solid rgba(139, 158, 122, 0.22);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.video-tip:nth-child(2) {
  transition-delay: 0.18s;
}

.video-tip.tip-visible {
  opacity: 1;
  transform: translateY(0);
}

.tip-icon {
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon svg {
  width: 100%;
  height: 100%;
}

.video-tip:first-child .tip-icon svg {
  animation: phoneRotateHint 3.5s ease-in-out 1.2s 1 forwards;
}

@keyframes phoneRotateHint {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-90deg) scale(0.9); }
  50%  { transform: rotate(-90deg) scale(1.05); }
  70%  { transform: rotate(-90deg) scale(1); }
  100% { transform: rotate(0deg); }
}

.tip-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.55;
}

.tip-text strong {
  font-weight: 600;
  color: var(--sage-dark);
}

/* Buttons */
.upload-hint {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all var(--trans);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-primary:hover:not(:disabled) {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92, 122, 82, 0.3);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary.inverted {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.btn-primary.inverted:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all var(--trans);
  margin-top: 8px;
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

/* Success block */
.success-block {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.success-block h3 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.success-block p {
  font-size: 15px;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════
   PHOTOGRAPHER SECTION
══════════════════════════════════════════════════ */
.photo-section {
  background: linear-gradient(160deg, #4a6040 0%, #3a5030 100%);
  padding: 80px 24px 100px;
  text-align: center;
}

.photo-section .section-inner {
  max-width: 520px;
}

.photo-section label {
  color: rgba(255,255,255,0.65);
}

.photo-section input[type="password"] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.photo-section input[type="password"]:focus {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.photo-section input::placeholder {
  color: rgba(255,255,255,0.3);
}

.photo-section .section-title {
  margin-bottom: 36px;
}

#photo-login { max-width: 320px; margin: 0 auto; }

/* File list */
.video-list {
  margin-top: 32px;
  text-align: left;
}

.video-list h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-align: center;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background var(--trans);
}

.file-item:hover {
  background: rgba(255,255,255,0.12);
}

.file-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.file-item-name {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.btn-download {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  transition: all var(--trans);
}

.btn-download:hover {
  background: rgba(255,255,255,0.15);
}

.no-files {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  padding: 24px;
}

#download-all-btn {
  max-width: 360px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   ADMIN SECTION
══════════════════════════════════════════════════ */
.admin-section {
  background: linear-gradient(160deg, #2c3a2c 0%, #1e281e 100%);
  padding: 80px 24px 100px;
  text-align: center;
}

.admin-section .section-inner {
  max-width: 520px;
}

.admin-section label {
  color: rgba(255,255,255,0.65);
}

.admin-section input[type="password"] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.admin-section input[type="password"]:focus {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.admin-section input::placeholder {
  color: rgba(255,255,255,0.3);
}

.file-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-watch {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  transition: all var(--trans);
}

.btn-watch:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.btn-delete {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8080;
  padding: 6px 14px;
  border: 1px solid rgba(255,100,100,0.4);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  transition: all var(--trans);
}

.btn-delete:hover {
  background: rgba(255,80,80,0.15);
  border-color: rgba(255,100,100,0.7);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-names {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.footer-photo-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color var(--trans);
}

.footer-photo-link:hover {
  color: rgba(255,255,255,0.65);
}


/* ══════════════════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.video-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: rgba(255,255,255,0.8);
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--trans);
  z-index: 2;
}

.video-modal-close:hover {
  color: var(--white);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .opener-content {
    padding: 60px 12px 48px;
  }

  .upload-section {
    padding: 48px 16px 72px;
  }

  .arch-card {
    border-radius: 60px 60px 16px 16px;
  }

  .arch-body {
    padding: 28px 20px 40px;
  }

  .section-title {
    font-size: 30px;
  }

  .countdown {
    gap: 4px;
  }

  .cd-sep {
    display: none;
  }

  .cd-item {
    min-width: 64px;
  }

  .botanical-tl,
  .botanical-br {
    width: 70px;
    opacity: 0.28;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .btn-secondary {
    width: 100%;
  }

  .success-block h3 {
    font-size: 30px;
  }

  .video-tips {
    gap: 8px;
  }

  .video-tip {
    padding: 14px 8px 12px;
  }

  .tip-icon {
    width: 40px;
    height: 34px;
  }

  .tip-text {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .opener-names {
    letter-spacing: 0.02em;
  }

  .arch-card {
    border-radius: 40px 40px 12px 12px;
  }

  .arch-body {
    padding: 24px 16px 36px;
  }

  .cd-num {
    font-size: 34px;
  }

  .cd-item {
    min-width: 54px;
  }
}
