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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
}

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

@font-face {
  font-family: "Chakra Petch";
  src: url("../font/ChakraPetch-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../font/ChakraPetch-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../font/ChakraPetch-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../font/Rajdhani-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body.admin {
  margin: 0;
  background: #07091F;
  color: #F5F6FF;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.rack {
  width: 76px;
  flex-shrink: 0;
  background: #10133A;
  border-right: 1px solid #2A2F6B;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}

.rack__logo {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
}
.rack__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #07091F;
}

.rack__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.rack__tile {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #8890C0;
  transition: color 0.15s, background-color 0.15s, box-shadow 0.15s;
}
.rack__tile svg {
  width: 22px;
  height: 22px;
}

.rack__tile:hover {
  color: #F5F6FF;
  background: #171B4D;
}

.rack__tile--dashboard.is-active {
  color: #F5F6FF;
  background: rgba(86, 101, 244, 0.15);
  box-shadow: 0 0 16px rgba(86, 101, 244, 0.5);
}

.rack__tile--songs.is-active {
  color: #F5F6FF;
  background: rgba(86, 101, 244, 0.15);
  box-shadow: 0 0 16px rgba(86, 101, 244, 0.5);
}

.rack__tile--logout:hover {
  color: #F75454;
  box-shadow: 0 0 16px rgba(247, 84, 84, 0.35);
}

.rack__user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rack__user-name {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #171B4D;
  border: 1px solid #2A2F6B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #8890C0;
}

.admin-shell__main {
  flex: 1;
  min-width: 0;
}

.admin-content {
  padding: 40px;
  max-width: 1200px;
}

@media screen and (max-width: 991px) {
  .admin-content {
    padding: 24px;
  }
}
body {
  background: #07091F;
  color: #F5F6FF;
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(7, 9, 31, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #2A2F6B;
}

.site-header__brand img {
  height: 38px;
  display: block;
}

.site-header__nav {
  display: flex;
  gap: 24px;
}

.site-header__link {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8890C0;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-header__link:hover,
.site-header__link.is-active {
  color: #F5F6FF;
  border-color: #5665F4;
}

.site-header__toggle {
  display: none;
  background: none;
  border: none;
  color: #F5F6FF;
  font-size: 22px;
}

.site-header__mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 199;
  flex-direction: column;
  background: #07091F;
  border-bottom: 1px solid #2A2F6B;
  padding: 16px 24px 24px;
}

.site-header__mobile-nav.is-open {
  display: flex;
}

.site-header__mobile-link {
  padding: 16px 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 18px;
  border-bottom: 1px solid #2A2F6B;
  color: #F5F6FF;
}

.site-header__mobile-link.is-active {
  color: #5665F4;
}

@media screen and (max-width: 991px) {
  .site-header__nav {
    display: none;
  }
  .site-header__toggle {
    display: block;
  }
}
.site-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid #2A2F6B;
}

.site-footer__logo {
  height: 32px;
  margin: 0 auto 8px;
  opacity: 0.8;
}

.site-footer p {
  color: #8890C0;
  font-size: 13px;
}

.page-banner {
  padding: 60px 24px;
  text-align: center;
  background: #10133A;
  border-bottom: 1px solid #2A2F6B;
}

.page-banner h1 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 36px;
  margin-bottom: 8px;
}

.page-banner p {
  color: #8890C0;
  max-width: 480px;
  margin: 0 auto;
}

.public-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.stage {
  position: relative;
  height: calc(100vh - 65px);
  min-height: 500px;
  overflow: hidden;
  background: #07091F;
  display: flex;
  flex-direction: column;
}

.stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(7, 9, 31, 0.92);
  backdrop-filter: blur(4px);
  padding: 24px;
  cursor: pointer;
}

.stage__overlay[hidden] {
  display: none;
}

.stage__overlay-cover {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 0 30px rgba(86, 101, 244, 0.3);
}

.stage__overlay h1 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
  max-width: 500px;
}

.stage__overlay h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
}

.stage__overlay-hint {
  color: #8890C0;
  font-size: 14px;
  margin-bottom: 24px;
}

.stage__overlay .btn {
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  background: #171B4D;
  color: #F5F6FF;
  transition: filter 0.15s, background-color 0.15s, box-shadow 0.15s;
}

.btn:hover {
  filter: brightness(1.25);
}

.btn--primary {
  background: #5665F4;
  color: #07091F;
}

.btn--primary:hover {
  box-shadow: 0 0 16px rgba(86, 101, 244, 0.5);
}

.btn--danger {
  background: transparent;
  border-color: #F75454;
  color: #F75454;
}

.btn--danger:hover {
  background: #F75454;
  color: #fff;
  filter: none;
}

.btn--ghost {
  background: transparent;
  border-color: #2A2F6B;
}

.btn--icon {
  padding: 8px;
  width: 36px;
  height: 36px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 17px;
}

.form-card {
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  padding: 24px;
  max-width: 640px;
}

.form__field {
  margin-bottom: 16px;
}

.form__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #8890C0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field input[type=text],
.form__field input[type=number],
.form__field input[type=search],
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 10px 8px;
  background: #07091F;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  color: #F5F6FF;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: #5665F4;
}

.form__hint {
  font-size: 13px;
  color: #8890C0;
  margin-top: 4px;
}

.form__actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.alert {
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
}

.alert--success {
  background: rgba(104, 237, 90, 0.15);
  color: #a3f5b1;
  border: 1px solid rgba(104, 237, 90, 0.4);
}

.alert--error {
  background: rgba(247, 84, 84, 0.15);
  color: #ff9d9d;
  border: 1px solid rgba(247, 84, 84, 0.4);
}

.lane-dots {
  display: flex;
  gap: 6px;
}

.lane-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #171B4D;
  border: 1px solid #2A2F6B;
  transition: all 0.15s;
}

.lane-dot.is-lit {
  background: var(--lane-color, #5665F4);
  border-color: var(--lane-color, #5665F4);
  box-shadow: 0 0 8px var(--lane-color, #5665F4);
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.page-head h1 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 16px;
}

.section-head h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 20px;
}

.section-head a {
  font-size: 14px;
  font-weight: 600;
  color: #5665F4;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-box input[type=search],
.search-box input[type=text] {
  padding: 8px 8px;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  color: #F5F6FF;
  font-size: 15px;
  min-width: 220px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #2A2F6B;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8890C0;
}

.filter-chip.is-active {
  background: #5665F4;
  border-color: #5665F4;
  color: #07091F;
}

.data-table-wrap {
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8890C0;
  padding: 16px;
  border-bottom: 1px solid #2A2F6B;
  white-space: nowrap;
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid #2A2F6B;
  font-size: 15px;
  vertical-align: middle;
}

.data-table tbody tr:nth-child(even) {
  background: #171B4D;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.data-table__cover {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.data-table__actions {
  display: flex;
  gap: 8px;
}

.data-table__actions form {
  display: inline-block;
}

.mono {
  font-family: ui-monospace, "SF Mono", "Courier New", monospace;
}

.text-muted {
  color: #8890C0;
  font-size: 13px;
}

.recipe-grid-empty {
  padding: 40px;
  text-align: center;
  color: #8890C0;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
}

.lanes {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 8px 16px 110px;
}

.lane {
  position: relative;
  flex: 1;
  border-left: 1px solid #2A2F6B;
  border-right: 1px solid #2A2F6B;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%);
  overflow: hidden;
}

.lane:first-child {
  border-radius: 6px 0 0 6px;
}

.lane:last-child {
  border-radius: 0 6px 6px 0;
}

.lane__notes {
  position: absolute;
  inset: 0;
}

.note {
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 26px;
  border-radius: 6px;
  background: var(--lane-color, #5665F4);
  box-shadow: 0 0 14px var(--lane-color, #5665F4);
  transition: opacity 0.15s, transform 0.15s;
}

.note--hit {
  opacity: 0;
  transform: scale(1.8) !important;
}

.note--missed {
  opacity: 0;
  filter: grayscale(1);
}

.hit-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 110px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  max-width: 640px;
  margin: 0 auto;
  pointer-events: none;
}

.hit-line__target {
  flex: 1;
  max-width: 100px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
}

.hit-line__target--dab {
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #B84DFF 0%, rgba(184, 77, 255, 0.15) 70%);
  box-shadow: 0 0 16px #B84DFF;
  height: 24px;
  align-self: center;
  margin: 0 auto;
  width: 24px;
}

.lane-buttons {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}

.lane-button {
  flex: 1;
  max-width: 100px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--lane-color, #5665F4);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lane-color, #5665F4);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background-color 0.1s, transform 0.1s;
}

.lane-button:active {
  background: var(--lane-color, #5665F4);
  color: #07091F;
  transform: scale(0.94);
}

.is-shaking {
  animation: dabb-shake 0.25s;
}

@keyframes dabb-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}
@media screen and (max-width: 767px) {
  .lanes {
    padding-bottom: 130px;
    gap: 4px;
  }
  .hit-line {
    bottom: 130px;
    gap: 4px;
  }
  .lane-buttons {
    gap: 4px;
  }
}
.stage__progress {
  height: 4px;
  background: #10133A;
}

.stage__progress-fill {
  height: 100%;
  width: 0%;
  background: #5665F4;
  box-shadow: 0 0 10px #5665F4;
  transition: width 0.1s linear;
}

.stage__hud {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 20;
}

.hud-score {
  font-family: ui-monospace, "SF Mono", "Courier New", monospace;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #F5F6FF;
  text-shadow: 0 0 14px rgba(86, 101, 244, 0.6);
}

.hud-combo {
  margin-top: 4px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #EEF257;
  text-shadow: 0 0 10px rgba(238, 242, 87, 0.6);
}

.stage__pause {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #10133A;
  border: 1px solid #2A2F6B;
  color: #F5F6FF;
  font-size: 16px;
}

.now-playing {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 15;
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(16, 19, 58, 0.9);
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  padding: 8px;
  max-width: 220px;
}
.now-playing img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}
.now-playing div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}
.now-playing strong {
  font-family: "Chakra Petch", sans-serif;
  font-size: 13px;
}
.now-playing span {
  color: #8890C0;
}

@media screen and (min-width: 992px) {
  .now-playing {
    display: flex;
  }
}
.feedback-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 25;
}

.feedback {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  animation: dabb-feedback 0.7s ease-out forwards;
}

.feedback--perfect {
  color: #68ED5A;
  text-shadow: 0 0 12px rgba(104, 237, 90, 0.8);
}

.feedback--good {
  color: #5665F4;
  text-shadow: 0 0 12px rgba(86, 101, 244, 0.8);
}

@keyframes dabb-feedback {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.8);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -70%) scale(1);
  }
}
.results-modal {
  position: absolute;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 9, 31, 0.95);
  padding: 24px;
}

.results-modal[hidden] {
  display: none;
}

.results-modal__inner {
  width: 100%;
  max-width: 420px;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.results-modal__image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 16px;
}

.results-modal__quote {
  font-family: "Chakra Petch", sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
  color: #F5F6FF;
}

.results-modal__score {
  font-family: ui-monospace, "SF Mono", "Courier New", monospace;
  font-size: 32px;
  font-weight: 700;
  color: #5665F4;
  margin-bottom: 16px;
}

.results-modal__breakdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.results-modal__tag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #171B4D;
  border: 1px solid #2A2F6B;
  color: #8890C0;
}

.results-modal__tag--perfect {
  color: #68ED5A;
  border-color: rgba(104, 237, 90, 0.4);
}

.results-modal__tag--good {
  color: #5665F4;
  border-color: rgba(86, 101, 244, 0.4);
}

.results-modal__tag--miss {
  color: #F75454;
  border-color: rgba(247, 84, 84, 0.4);
}

.results-modal__save {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.results-modal__save input {
  flex: 1;
  padding: 10px 8px;
  background: #07091F;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  color: #F5F6FF;
  font-size: 15px;
}

.results-modal__status {
  font-size: 13px;
  color: #8890C0;
  min-height: 18px;
  margin-bottom: 16px;
}

.results-modal__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.song-card {
  display: block;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}

.song-card:hover {
  transform: translateY(-4px);
  border-color: #5665F4;
}

.song-card__media {
  position: relative;
  aspect-ratio: 1;
}

.song-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.song-card__lanes {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.song-card__body {
  padding: 16px;
}

.song-card__body h3 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 16px;
  margin-bottom: 2px;
}

.song-card__body span {
  color: #8890C0;
  font-size: 13px;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07091F;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.login-card__logo {
  width: 96px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.login-card__subtitle {
  color: #8890C0;
  font-size: 14px;
  margin-bottom: 24px;
}

.login-card .form__field {
  text-align: left;
}

.login-card .btn {
  width: 100%;
  margin-top: 8px;
}

.meter-band {
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.meter-band__stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.meter-band__value {
  font-family: "Chakra Petch", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #5665F4;
}

.meter-band__label {
  margin-top: 4px;
  color: #8890C0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meters {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 120px;
  min-width: 220px;
}

.meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.meter__track {
  width: 100%;
  max-width: 28px;
  height: 72px;
  background: #07091F;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.meter__fill {
  width: 100%;
  background: var(--meter-color, #5665F4);
  box-shadow: 0 0 10px var(--meter-color, #5665F4);
  transition: height 0.3s;
}

.meter__count {
  font-family: ui-monospace, "SF Mono", "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
}

.meter__label {
  font-size: 10px;
  color: #8890C0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 767px) {
  .meter-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .meters {
    width: 100%;
  }
}
.chart-editor__player {
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.chart-editor__player audio {
  width: 100%;
  margin-bottom: 16px;
}

.chart-editor__transport {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.chart-editor__transport #recordBtn.is-recording {
  background: #F75454;
  color: #fff;
  animation: dabb-record-pulse 1s infinite;
}

@keyframes dabb-record-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(247, 84, 84, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(247, 84, 84, 0);
  }
}
#recordStatus {
  font-size: 13px;
  color: #8890C0;
}

.chart-editor__add-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  padding: 16px;
}

.chart-editor__add-row select,
.chart-editor__add-row input {
  padding: 8px 8px;
  background: #07091F;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  color: #F5F6FF;
  font-size: 14px;
}

.chart-editor__add-row input[type=number] {
  width: 70px;
}

.home-hero {
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: radial-gradient(ellipse at 50% 30%, rgba(86, 101, 244, 0.12) 0%, transparent 60%);
}

.home-hero__logo {
  width: 260px;
  max-width: 80vw;
  margin-bottom: 16px;
}

.home-hero__tagline {
  color: #8890C0;
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 40px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.arcade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 18px 40px;
  border-radius: 12px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #10133A;
  border: 2px solid;
  transition: transform 0.15s, box-shadow 0.15s;
}

.arcade-btn:hover {
  transform: translateY(-3px);
}

.arcade-btn--blue {
  border-color: #5665F4;
  color: #5665F4;
}

.arcade-btn--blue:hover {
  box-shadow: 0 0 24px rgba(86, 101, 244, 0.5);
}

.arcade-btn--yellow {
  border-color: #EEF257;
  color: #EEF257;
}

.arcade-btn--yellow:hover {
  box-shadow: 0 0 24px rgba(238, 242, 87, 0.5);
}

.arcade-btn--green {
  border-color: #68ED5A;
  color: #68ED5A;
}

.arcade-btn--green:hover {
  box-shadow: 0 0 24px rgba(104, 237, 90, 0.5);
}

.score-pseudo-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 24px;
}

.score-pseudo-form input {
  flex: 1;
  padding: 10px 16px;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 6px;
  color: #F5F6FF;
  font-size: 15px;
}

.histoire-content {
  max-width: 720px;
}

.histoire-content__targets {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 40px 0;
  margin-bottom: 24px;
  background: #10133A;
  border: 1px solid #2A2F6B;
  border-radius: 12px;
}

.histoire-content__targets img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.histoire-content h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 22px;
  margin: 40px 0 8px;
}

.histoire-content h2:first-of-type {
  margin-top: 0;
}

.histoire-content p {
  color: #8890C0;
  line-height: 1.8;
}
