.event-banner {
  color: white;
  text-align: center;
  padding: 0.7rem 1rem;
  font-weight: bold;
  font-size: 0.95rem;
  position: relative;
  z-index: 20;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.banner-rock {
  background: linear-gradient(90deg, #f44336 0%, #9c27b0 50%, #ff4081 100%);
}

.banner-future {
  background: linear-gradient(90deg, #00e676 0%, #00bcd4 50%, #448aff 100%);
}

.banner-horror {
  background: linear-gradient(90deg, #4a148c 0%, #f44336 50%, #ff9800 100%);
}

.banner-space {
  background: linear-gradient(90deg, #3f51b5 0%, #673ab7 100%);
}

.banner-last-day {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.banner-text {
  display: inline-block;
  letter-spacing: 0.05em;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

header {
  clip-path: none !important;
  box-shadow: none !important;
}

.contributor-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #333;
  width: 54px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  transition: transform 0.2s;
  line-height: 1.1;
  border: 1px solid #ccc;
  cursor: pointer;
}

.contributor-button:hover {
  transform: translateY(-50%) scale(1.05);
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-color: #bbb;
}

@media (min-width: 1001px) {
  .contributor-button {
    right: calc((100% - 1000px) / 2);
  }
}

.contributors-list {
  background: white;
  padding: 0.5rem 0.3rem;
  min-height: 400px;
}

.contributor-item {
  display: inline-block;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  padding: 0.6rem 0.9rem;
  margin: 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.2s;
  cursor: pointer;
  vertical-align: top;
}

.contributor-item:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  transform: scale(1.05);
  border-color: #bbb;
}

.contributor-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
}

.contributor-name {
  font-weight: 600;
}

.contributor-song-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  background: rgba(255, 255, 255, 0.7);
  color: #666;
  font-size: 0.55rem;
  font-weight: normal;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.contributor-zones {
  margin-top: 0.15rem;
  line-height: 1;
}

.contributor-zones > div {
  margin-bottom: 0;
}

.contributor-count {
  text-align: center;
  padding: 1rem 0;
  color: #666;
  font-size: 0.95rem;
  font-weight: 600;
  background: white;
  margin-top: 0.5rem;
}

.contributor-zone-label {
  display: inline-block;
  padding: 0.15rem 0.3rem;
  margin-right: 0.2rem;
  margin-bottom: 0;
  border-radius: 3px;
  color: white;
  font-size: 0.55rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.contributor-zone-label.rock {
  background: var(--zone-rock);
}
.contributor-zone-label.fantasy {
  background: var(--zone-fantasy);
}
.contributor-zone-label.future {
  background: var(--zone-future);
}
.contributor-zone-label.water {
  background: var(--zone-water);
}
.contributor-zone-label.horror {
  background: var(--zone-horror);
}
.contributor-zone-label.food {
  background: var(--zone-food);
}
.contributor-zone-label.space {
  background: var(--zone-space);
}
.contributor-zone-label.castle {
  background: var(--zone-castle);
}
.contributor-zone-label.extra {
  background: var(--zone-extra);
}
.contributor-zone-label.finale {
  background: var(--zone-finale);
}

.contributor-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.contributor-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contributor-modal .modal-content {
  position: absolute !important;
  top: 5% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 95%;
  max-width: 1200px;
  max-height: 85vh;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contributor-modal .modal-header {
  padding: 0.7rem 1.2rem !important;
  background: linear-gradient(90deg, #ffe600 0%, #ffd000 100%) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: none !important;
  border-bottom: 2px solid #ffb300 !important;
  position: relative !important;
  min-height: 2.8rem !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contributor-modal .modal-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin: 0 !important;
  flex: 1;
  padding-right: 1rem;
  letter-spacing: 0.02em;
}

.contributor-modal .modal-close {
  background: rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  color: #666 !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 6px !important;
  transition: background 0.2s ease !important;
  flex-shrink: 0 !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  opacity: 0.9;
}

.contributor-modal .modal-close::before,
.contributor-modal .modal-close::after {
  display: none !important;
  content: none !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transform: none !important;
}

.contributor-modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.15) !important;
  transform: none !important;
  opacity: 1;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: linear-gradient(to bottom, #fafafa 0%, white 100%);
}

.modal-songs-list {
  padding: 0;
}

.modal-songs-list .song-item {
  margin: 0;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.2s ease;
}

.modal-songs-list .song-item:hover {
  background: linear-gradient(to right, rgba(255, 230, 0, 0.05) 0%, rgba(255, 208, 0, 0.05) 100%);
}

.modal-songs-list .song-item:last-child {
  border-bottom: none;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ffb300 0%, #ff9800 100%);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ff6f00 100%);
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 0.8rem 1rem;
  }

  .modal-title {
    font-size: 1.1rem;
  }
}

.page-header {
  background: linear-gradient(90deg, #ffe600 0%, #ffd000 100%);
  color: #333;
  padding: 0.3rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
}

.horror-active .page-header {
  background: linear-gradient(to bottom, #0f1420 0%, #4d5f85 100%);
}

.header-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(45deg, #ff3d00, #ff3d00 10px, #00bcd4 10px, #00bcd4 20px);
}

.header-deco-bottom {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(45deg, #ff3d00, #ff3d00 10px, #00bcd4 10px, #00bcd4 20px);
}

.container {
  width: 100%;
  padding: 0 1rem;
}

.page-header h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  color: #ff3d00;
  font-weight: 700;
}

.horror-active .page-header h1 {
  color: #e8e8e8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  animation: horrorShakeBurst 1.5s steps(1) infinite;
}

@keyframes horrorShakeBurst {
  0%,
  50%,
  100% {
    transform: translateY(0);
  }
  2% {
    transform: translateY(-1px);
  }
  4% {
    transform: translateY(1px);
  }
  6% {
    transform: translateY(-0.5px);
  }
  8% {
    transform: translateY(1px);
  }
  10% {
    transform: translateY(-1px);
  }
  12% {
    transform: translateY(0.5px);
  }
  14% {
    transform: translateY(-0.5px);
  }
  16% {
    transform: translateY(1px);
  }
  18% {
    transform: translateY(-1px);
  }
  20% {
    transform: translateY(0.5px);
  }
  22% {
    transform: translateY(-0.5px);
  }
  24% {
    transform: translateY(1px);
  }
  26% {
    transform: translateY(-1px);
  }
  28% {
    transform: translateY(0.5px);
  }
  30% {
    transform: translateY(-0.5px);
  }
}

.header-sew {
  font-family: "Fredoka", sans-serif;
  font-size: 0.8rem;
  color: #ff3d00;
  font-weight: 700;
  margin-bottom: 0.2rem;
  display: inline-block;
}

.horror-active .header-sew {
  color: #f0f0f0;
}

.horror-active .header-sew .char {
  color: #f0f0f0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.header-sew .char {
  display: inline-block;
  opacity: 0;
}

.header-sew .char.space {
  width: 0.3em;
}

.header-sew .char:nth-child(odd) {
  animation: spinDrop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: calc(var(--char-index, 0) * 0.08s);
}

.header-sew .char:nth-child(even) {
  animation: slideWobble 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: calc(var(--char-index, 0) * 0.08s);
}

.header-sew .char:nth-child(5n) {
  animation: crazyBounce 1.2s ease-out forwards;
  animation-delay: calc(var(--char-index, 0) * 0.08s);
}

@keyframes spinDrop {
  0% {
    transform: translateY(-100px) rotate(0deg) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(0) rotate(720deg) scale(1.3);
    opacity: 1;
  }
  70% {
    transform: translateY(-10px) rotate(740deg) scale(0.9);
  }
  100% {
    transform: translateY(0) rotate(720deg) scale(1);
    opacity: 1;
  }
}

@keyframes slideWobble {
  0% {
    transform: translateX(100px) rotate(-180deg) scale(0.5);
    opacity: 0;
  }
  40% {
    transform: translateX(-20px) rotate(20deg) scale(1.2);
    opacity: 1;
  }
  60% {
    transform: translateX(10px) rotate(-10deg) scale(0.95);
  }
  80% {
    transform: translateX(-5px) rotate(5deg) scale(1.05);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes crazyBounce {
  0% {
    transform: translate(-50px, -50px) rotate(0deg) scale(0);
    opacity: 0;
  }
  25% {
    transform: translate(50px, 0) rotate(90deg) scale(1.5);
    opacity: 1;
  }
  50% {
    transform: translate(-30px, 30px) rotate(180deg) scale(0.8);
  }
  75% {
    transform: translate(20px, -20px) rotate(270deg) scale(1.2);
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 1;
  }
}

.header-sew .char:nth-child(1) {
  --char-index: 0;
}
.header-sew .char:nth-child(2) {
  --char-index: 1;
}
.header-sew .char:nth-child(3) {
  --char-index: 2;
}
.header-sew .char:nth-child(4) {
  --char-index: 3;
}
.header-sew .char:nth-child(5) {
  --char-index: 4;
}
.header-sew .char:nth-child(6) {
  --char-index: 5;
}
.header-sew .char:nth-child(7) {
  --char-index: 6;
}
.header-sew .char:nth-child(8) {
  --char-index: 7;
}
.header-sew .char:nth-child(9) {
  --char-index: 8;
}
.header-sew .char:nth-child(10) {
  --char-index: 9;
}
.header-sew .char:nth-child(11) {
  --char-index: 10;
}
.header-sew .char:nth-child(12) {
  --char-index: 11;
}
.header-sew .char:nth-child(13) {
  --char-index: 12;
}
.header-sew .char:nth-child(14) {
  --char-index: 13;
}
.header-sew .char:nth-child(15) {
  --char-index: 14;
}
.header-sew .char:nth-child(16) {
  --char-index: 15;
}
.header-sew .char:nth-child(17) {
  --char-index: 16;
}

.back-to-home {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: #ff6f00;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.back-to-home:hover {
  background: #ff8a00;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 8px rgba(255, 111, 0, 0.3);
}

/* メインコンテンツ */
.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ゾーンフィルター */
.zone-filter {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.zone-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  gap: 0.2rem;
  padding: 0.5rem;
}

.zone-btn {
  flex: 0 0 auto;
  min-width: fit-content;
  padding: 1rem 0.3rem;
  border: none;
  background: transparent;
  color: #666;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  white-space: nowrap;
  border-radius: 8px 8px 0 0;
}

.zone-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.zone-btn:hover {
  background: #f5f5f5;
}

.zone-btn.active {
  color: #333;
  background: #f8f8f8;
  border-radius: 8px 8px 0 0;
}

.zone-btn.active::after {
  background: #ff6f00;
}

.zone-btn.all.active::after {
  background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
}

.zone-btn.rock.active::after {
  background: var(--zone-rock);
}
.zone-btn.fantasy.active::after {
  background: var(--zone-fantasy);
}
.zone-btn.future.active::after {
  background: var(--zone-future);
}
.zone-btn.water.active::after {
  background: var(--zone-water);
}
.zone-btn.horror.active::after {
  background: var(--zone-horror);
}
.zone-btn.food.active::after {
  background: var(--zone-food);
}
.zone-btn.space.active::after {
  background: var(--zone-space);
}
.zone-btn.castle.active::after {
  background: var(--zone-castle);
}
.zone-btn.final-day.active::after {
  background: linear-gradient(90deg, var(--zone-extra), var(--zone-finale));
}

/* 楽曲リスト */
.songs-list {
  background: white;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: visible;
  min-height: 400px;
}

.song-item {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.98);
}

.song-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 1.4rem;
  transition: all 0.3s ease;
}

.song-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
  transition: all 0.3s ease;
}

.song-item[data-zone="rock"]::before {
  background: var(--zone-rock);
}
.song-item[data-zone="fantasy"]::before {
  background: var(--zone-fantasy);
}
.song-item[data-zone="future"]::before {
  background: var(--zone-future);
}
.song-item[data-zone="water"]::before {
  background: var(--zone-water);
}
.song-item[data-zone="horror"]::before {
  background: var(--zone-horror);
}
.song-item[data-zone="food"]::before {
  background: var(--zone-food);
}
.song-item[data-zone="space"]::before {
  background: var(--zone-space);
}
.song-item[data-zone="castle"]::before {
  background: var(--zone-castle);
}
.song-item[data-zone="extra"]::before {
  background: var(--zone-extra);
}
.song-item[data-zone="finale"]::before {
  background: var(--zone-finale);
}

.song-item[data-zone="rock"] {
  border-bottom-color: var(--zone-rock);
}
.song-item[data-zone="fantasy"] {
  border-bottom-color: var(--zone-fantasy);
}
.song-item[data-zone="future"] {
  border-bottom-color: var(--zone-future);
}
.song-item[data-zone="water"] {
  border-bottom-color: var(--zone-water);
}
.song-item[data-zone="horror"] {
  border-bottom-color: var(--zone-horror);
}
.song-item[data-zone="food"] {
  border-bottom-color: var(--zone-food);
}
.song-item[data-zone="space"] {
  border-bottom-color: var(--zone-space);
}
.song-item[data-zone="castle"] {
  border-bottom-color: var(--zone-castle);
}
.song-item[data-zone="extra"] {
  border-bottom-color: var(--zone-extra);
}
.song-item[data-zone="finale"] {
  border-bottom-color: var(--zone-finale);
}

.song-item:hover {
  background: #f8f8f8;
}

.song-title-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.song-title-link:hover {
  opacity: 0.8;
}

.song-artist-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.song-artist-link:hover {
  text-decoration: none;
}

.song-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  margin-right: 1rem;
}

.song-title {
  font-size: 1.1rem;
  color: #222;
  word-break: break-all;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.song-artist-container {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.song-artist {
  font-size: 0.85rem;
  color: #666;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.x-account-link {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.x-account-link:hover {
  text-decoration: none;
}

.x-logo {
  width: 12px;
  height: 12px;
  object-fit: contain;
  background-color: #000;
  border-radius: 2px;
  padding: 2px;
  box-sizing: border-box;
}

.x-account {
  font-size: 0.85rem;
  color: #333;
  transition: color 0.3s ease;
  word-break: break-all;
}

.x-account-link:hover .x-account {
  color: #000;
  text-decoration: underline;
}

.horror-active .song-item[data-zone="horror"] .song-title {
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  background: linear-gradient(to bottom, #000d1a 0%, #003366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.horror-active .song-item[data-zone="horror"] .song-artist {
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.horror-active .song-item[data-zone="horror"] .x-account {
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.song-zone-link {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.song-zone-link:hover .song-zone {
  opacity: 0.9;
  transform: scale(1.05);
}

.song-zone {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.song-zone.rock {
  background: var(--zone-rock);
}
.song-zone.fantasy {
  background: var(--zone-fantasy);
}
.song-zone.future {
  background: var(--zone-future);
}
.song-zone.water {
  background: var(--zone-water);
}
.song-zone.horror {
  background: var(--zone-horror);
}
.song-zone.food {
  background: var(--zone-food);
}
.song-zone.space {
  background: var(--zone-space);
}
.song-zone.castle {
  background: var(--zone-castle);
}
.song-zone.extra {
  background: var(--zone-extra);
}
.song-zone.finale {
  background: var(--zone-finale);
}

.no-songs {
  text-align: center;
  padding: 3rem 1rem;
  color: #1a1a1a;
  font-size: 1.2rem;
  background: white;
}

.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.star {
  position: absolute;
  color: #ffd54f;
  font-size: 14px;
  opacity: 0.1;
  animation: sparkle 6s ease-in-out infinite;
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 0.2;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(var(--fall-distance, 100px));
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .songs-list {
    padding: 0;
  }

  .song-content {
    padding: 0.8rem 0.6rem 0.8rem 0.8rem;
  }

  .song-info {
    margin-right: 0.5rem;
  }

  .song-title {
    font-size: 1rem;
    font-weight: 600;
  }

  .song-artist {
    font-size: 0.75rem;
  }

  .x-logo {
    width: 12px;
    height: 12px;
    padding: 1.5px;
  }

  .x-account {
    font-size: 0.7rem;
  }

  .song-zone {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem;
    margin-left: 0.5rem;
  }

  .zone-btn {
    padding: 0.8rem 0.25rem;
    font-size: 0.8rem;
  }
}
