:root {
  --ivory: #fffaf0;
  --cream: #f7efe2;
  --linen: #eee1cf;
  --champagne: #c9a86a;
  --gold-dark: #8a6a31;
  --ink: #3b332b;
  --muted: #7c7167;
  --rose: #d8b7a6;
  --sage: #8c9a83;
  --white: #ffffff;
  --line: rgba(138, 106, 49, 0.18);
  --shadow: 0 18px 50px rgba(75, 59, 37, 0.12);
  --radius: 8px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Noto Sans TC", "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.92), rgba(247, 239, 226, 0.7)),
    radial-gradient(circle at 18% 12%, rgba(201, 168, 106, 0.08), transparent 28%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: grid;
  gap: 0;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(54, 43, 32, 0.1), rgba(54, 43, 32, 0.45)),
    url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1800&q=85") center/cover;
  transform: scale(1.02);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.2) 56%, rgba(255, 250, 240, 0.04));
  z-index: -1;
}

.hero-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 13vh 0 15vh;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

.hero h1 {
  max-width: 720px;
  margin: 16px 0;
  color: #342a22;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  font-weight: 500;
}

.hero-date {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 92px 24px;
}

.section.alt {
  background: rgba(238, 225, 207, 0.46);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, 100%);
}

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-title.center {
  text-align: center;
  justify-items: center;
}

.section-title h2,
.page-title h1 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
}

.section-title p,
.page-title p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--gold-dark);
  color: var(--white);
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(138, 106, 49, 0.18);
}

.btn.secondary {
  border-color: rgba(138, 106, 49, 0.32);
  background: rgba(255, 255, 255, 0.62);
  color: var(--gold-dark);
}

.btn.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--gold-dark);
}

.btn.danger {
  border-color: rgba(176, 78, 65, 0.28);
  background: rgba(176, 78, 65, 0.08);
  color: #9d4639;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.music-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 106, 0.46);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.9);
  color: var(--gold-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.count-item,
.info-item,
.timeline-item,
.form-panel,
.result-panel,
.admin-panel,
.guide-block,
.hotel-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.count-item {
  padding: 26px 14px;
  text-align: center;
}

.count-item strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.count-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-item {
  padding: 26px;
}

.info-item span {
  color: var(--gold-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-item h3 {
  margin: 8px 0;
  font-size: 1.15rem;
}

.info-item p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 24px;
}

.timeline-time {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 78px 24px 42px;
  background: linear-gradient(135deg, rgba(238, 225, 207, 0.72), rgba(255, 250, 240, 0.92));
  border-bottom: 1px solid var(--line);
}

.page-title {
  width: min(920px, 100%);
  margin: 0 auto;
}

.form-panel,
.result-panel,
.admin-panel,
.guide-block {
  padding: clamp(22px, 4vw, 38px);
}

.hidden {
  display: none !important;
}

.deadline-note,
.muted-text {
  margin: 0 0 20px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(138, 106, 49, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  outline: none;
  padding: 12px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(138, 106, 49, 0.64);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.14);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.notice {
  display: none;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.notice.show {
  display: block;
}

.notice.success {
  border: 1px solid rgba(91, 132, 94, 0.28);
  background: rgba(91, 132, 94, 0.12);
  color: #3f7145;
}

.notice.error {
  border: 1px solid rgba(176, 78, 65, 0.28);
  background: rgba(176, 78, 65, 0.1);
  color: #9d4639;
}

.spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(138, 106, 49, 0.2);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner.show {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.result-panel {
  display: none;
  margin-top: 22px;
}

.result-panel.show {
  display: block;
}

.table-no {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 1;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.venue-highlight {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 38px);
}

.venue-highlight h2 {
  margin: 8px 0 10px;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
}

.venue-highlight p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.venue-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.venue-facts article {
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 239, 226, 0.55);
  padding: 18px;
}

.venue-facts strong {
  color: var(--gold-dark);
}

.venue-facts span {
  color: var(--muted);
}

.guide-grid-featured {
  margin-top: 28px;
}

.guide-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  text-transform: uppercase;
}

.guide-block h3,
.hotel-item h3 {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.guide-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.hotel-list {
  display: grid;
  gap: 14px;
}

.hotel-item {
  padding: 22px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 1fr 180px repeat(3, auto);
  gap: 12px;
  margin-bottom: 18px;
}

.admin-tools {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.tool-box {
  display: grid;
  gap: 8px;
  align-content: end;
}

.tool-box.actions {
  display: flex;
  align-items: end;
  gap: 8px;
}

.inline-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.warning-panel {
  margin-bottom: 18px;
  border: 1px solid rgba(176, 78, 65, 0.28);
  border-radius: var(--radius);
  background: rgba(176, 78, 65, 0.08);
  padding: 16px;
}

.warning-panel h3 {
  color: #9d4639;
  font-size: 1rem;
}

.warning-item {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  color: var(--muted);
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  cursor: pointer;
}

.check-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-dark);
}

.row-actions {
  display: flex;
  gap: 8px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-topbar h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.stats-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
  padding: 18px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.stat-card strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.tabbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 14px;
}

.tab-button.active {
  border-bottom-color: var(--gold-dark);
  color: var(--gold-dark);
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.seating-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.unassigned-panel {
  margin-bottom: 18px;
  border: 1px dashed rgba(138, 106, 49, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.62);
  overflow: hidden;
}

.table-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.table-card.over-capacity {
  border-color: rgba(176, 78, 65, 0.48);
  box-shadow: 0 18px 50px rgba(176, 78, 65, 0.12);
}

.table-card.over-capacity .table-card-head {
  background: rgba(176, 78, 65, 0.1);
}

.table-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 225, 207, 0.35);
}

.table-card-head span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.table-card-head h3 {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.table-card-head strong {
  color: var(--ink);
  white-space: nowrap;
}

.table-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px 0;
}

.table-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 3px 9px;
}

.table-note {
  display: grid;
  gap: 6px;
  padding: 12px 18px 0;
}

.table-note textarea {
  min-height: 72px;
  padding: 9px 11px;
}

.table-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 18px 18px;
  list-style: none;
}

.table-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
}

.table-card small {
  color: var(--muted);
  white-space: nowrap;
}

.guest-dropzone {
  min-height: 88px;
  padding: 14px 18px 18px;
  transition: background 0.2s ease, outline 0.2s ease;
}

.guest-dropzone.drag-over {
  background: rgba(201, 168, 106, 0.12);
  outline: 2px dashed rgba(138, 106, 49, 0.45);
  outline-offset: -8px;
}

.mini-guest-list {
  display: grid;
  gap: 10px;
}

.guest-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(138, 106, 49, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  cursor: grab;
  padding: 10px 12px;
}

.guest-card:active {
  cursor: grabbing;
}

.guest-card small,
.guest-card em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.guest-card em {
  color: #9d4639;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--linen);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 20px 22px;
  text-align: left;
}

.faq-item button span {
  font-weight: 600;
}

.faq-item button strong {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.faq-item.open button strong {
  transform: rotate(45deg);
}

.wishes-heading {
  margin-top: 58px;
}

.wish-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wish-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  padding: 22px;
}

.wish-card p {
  margin: 0;
  color: var(--ink);
}

.wish-card strong {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 1680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.56);
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid rgba(138, 106, 49, 0.13);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 600;
}

td {
  color: var(--muted);
  font-size: 0.92rem;
}

td input,
td select {
  min-width: 120px;
  padding: 8px 10px;
}

.footer {
  padding: 42px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .nav {
    min-height: 64px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 0;
  }

  .hero {
    min-height: calc(92vh - 64px);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(255, 250, 240, 0.26), rgba(54, 43, 32, 0.16));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 11vh;
  }

  .section {
    padding: 68px 18px;
  }

  .countdown,
  .info-grid,
  .guide-grid,
  .venue-highlight,
  .venue-facts,
  .form-grid,
  .mini-form,
  .stats-grid,
  .seating-board,
  .gallery-grid,
  .wish-wall {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .search-row,
  .admin-toolbar,
  .admin-tools,
  .inline-controls {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .tabbar {
    overflow-x: auto;
  }

  .tool-box.actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .count-item {
    padding: 20px 12px;
  }

  .music-button {
    right: 16px;
    bottom: 16px;
  }
}
