:root {
  color-scheme: dark;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  background: #060606;
  color: #f5f7fb;
  --surface: #101010;
  --surface-soft: #171717;
  --border: #2b2b2b;
  --border-strong: #454545;
  --text-muted: #b7bcc5;
  --text-subtle: #ff9d3d;
  --accent: #ff7a00;
  --accent-hover: #e76d00;
  --accent-soft: rgba(255, 122, 0, 0.14);
  --danger-soft: rgba(185, 28, 28, 0.18);
  --danger-text: #ff8f8f;
  --success-soft: rgba(22, 101, 52, 0.22);
  --success-text: #94f0b7;
  --shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.26);
  --ring: 0 0 0 1px rgba(255, 122, 0, 0.2), 0 0 0 5px rgba(255, 122, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top center, rgba(255, 122, 0, 0.18) 0%, transparent 30%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  color: #f5f7fb;
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 122, 0, 0.32);
  color: #fff7ef;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 75ms ease,
    transform 75ms ease,
    filter 75ms ease,
    background 75ms ease;
}

body::before {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 122, 0, 0.24), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(255, 122, 0, 0.32), transparent 30%);
  mix-blend-mode: screen;
  transform:
    scale(calc(1 + (var(--pulse-strength, 0) * 0.022) + (var(--kick-strength, 0) * 0.06) + (var(--hit-strength, 0) * 0.14)))
    translateY(calc((var(--kick-strength, 0) * -0.45rem) + (var(--hit-strength, 0) * -1.35rem)));
}

body::after {
  background:
    radial-gradient(circle at 50% 88%, rgba(255, 186, 92, calc(0.34 + (var(--hit-strength, 0) * 0.58))), transparent 16%),
    radial-gradient(circle at 50% 79%, rgba(255, 122, 0, calc(0.26 + (var(--kick-strength, 0) * 0.34))), transparent 23%),
    radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.14), transparent 42%);
  filter: blur(calc(18px + (var(--pulse-blur-strength, 0) * 24px) + (var(--kick-strength, 0) * 14px) + (var(--hit-strength, 0) * 34px)));
  transform:
    scale(calc(1 + (var(--pulse-blur-strength, 0) * 0.03) + (var(--kick-strength, 0) * 0.08) + (var(--hit-strength, 0) * 0.24)))
    translateY(calc((var(--kick-strength, 0) * -0.7rem) + (var(--hit-strength, 0) * -2rem)));
}

body.is-audio-reactive::before {
  opacity: calc(0.07 + (var(--pulse-strength, 0) * 0.14) + (var(--kick-strength, 0) * 0.28) + (var(--hit-strength, 0) * 0.52));
}

body.is-audio-reactive::after {
  opacity: calc(0.06 + (var(--pulse-blur-strength, 0) * 0.18) + (var(--kick-strength, 0) * 0.3) + (var(--hit-strength, 0) * 0.9));
}

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

button {
  cursor: pointer;
}

a {
  color: #ff9d3d;
}

.app-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 40px;
}

.app-header {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(200px, 0.64fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.brand-block,
.account-box,
.panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%),
    var(--surface);
  box-shadow: var(--shadow);
}

.brand-block,
.account-box {
  padding: 20px 22px;
}

.brand-block h1,
.panel h2 {
  margin: 0;
  letter-spacing: 0;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 26px rgba(255, 122, 0, 0.2));
}

.brand-titles {
  min-width: 0;
}

.brand-titles h1 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.brand-subtitle {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-meta,
.current-track-meta,
.user-email,
.folder-link,
.timeline-meta,
.track-item-meta,
.volume-header span,
.filter-field span {
  color: var(--text-muted);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--text-subtle);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.library-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  margin-top: 18px;
}

.search-field,
.filter-field {
  display: grid;
  gap: 6px;
}

.filter-field span {
  font-size: 0.9rem;
  font-weight: 600;
}

.search-field input,
.filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    #0d0d0d;
  color: #f5f7fb;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.search-field input:focus,
.filter-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring);
}

.search-field input:hover,
.filter-field select:hover {
  border-color: #4b4b4b;
  background-color: #101010;
}

.account-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  justify-self: end;
  width: min(100%, 280px);
  gap: 10px;
  padding: 12px 14px;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(16, 16, 16, 0.88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  margin-right: 10%;
}

.user-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 2px 0;
}

.user-menu {
  position: relative;
}

.user-menu-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.user-menu-trigger:hover {
  transform: none;
  box-shadow: none;
}

.user-menu-trigger.is-open .user-menu-caret {
  transform: rotate(225deg);
}

.user-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.user-menu-caret {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  transition: transform 140ms ease;
}

.user-name,
.user-email {
  margin: 0;
  overflow-wrap: anywhere;
}

.user-name {
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.2;
}

.user-email {
  margin-top: 1px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.auth-button {
  width: auto;
  min-height: 34px;
  padding: 0 12px;
  align-self: flex-start;
  font-size: 0.82rem;
  box-shadow: 0 6px 14px rgba(255, 122, 0, 0.16);
  margin-left: 5%;
}

.user-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(18, 18, 18, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  z-index: 10;
}

.logout-chip {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  justify-content: flex-start;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.panel {
  min-height: 560px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.playlist-panel {
  display: flex;
  flex-direction: column;
}

.panel-header,
.player-top,
.volume-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-header,
.player-top {
  margin-bottom: 16px;
}

.panel-meta {
  margin: 0;
  white-space: nowrap;
}

.source-row {
  min-height: 24px;
  margin-bottom: 12px;
}

.folder-link {
  margin: 0;
  overflow-wrap: anywhere;
}

.status-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    #181818;
  color: #d8dee8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.status-banner.error {
  border-color: rgba(242, 197, 205, 0.35);
  background: var(--danger-soft);
  color: var(--danger-text);
}

.status-banner.success {
  border-color: rgba(198, 234, 217, 0.3);
  background: var(--success-soft);
  color: var(--success-text);
}

.status-icon-wrap {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.status-copy {
  min-width: 0;
}

.status-title,
.status-message {
  margin: 0;
}

.status-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.status-message {
  margin-top: 2px;
  font-weight: 600;
  color: #f7f8fb;
}

.status-banner.error .status-message,
.status-banner.success .status-message {
  color: inherit;
}

.status-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.status-icon-loading {
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

.status-icon-success {
  position: relative;
}

.status-icon-success::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
}

.status-icon-success::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.status-icon-error {
  position: relative;
}

.status-icon-error::before,
.status-icon-error::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 2px;
  height: 14px;
  background: currentColor;
  border-radius: 999px;
}

.status-icon-error::before {
  transform: rotate(45deg);
}

.status-icon-error::after {
  transform: rotate(-45deg);
}

.status-icon-info {
  position: relative;
  border-radius: 999px;
  border: 2px solid currentColor;
}

.status-icon-info::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.status-icon-info::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 2px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  min-height: 0;
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pagination-meta,
.page-indicator {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-button {
  min-height: 40px;
  padding: 0 14px;
}

.track-list[data-state="empty"]:empty::before {
  content: "Nincs a keresésnek megfelelő lejátszható fájl.";
  display: block;
  padding: 18px 16px;
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text-muted);
}

.track-list[data-state="loading"] {
  gap: 12px;
}

.track-list[data-state="loading"]::before,
.track-list[data-state="loading"]::after {
  content: none;
}

.track-skeleton {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%),
    #131313;
  overflow: hidden;
  position: relative;
}

.track-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmer 1.2s infinite;
}

.track-skeleton-line {
  position: relative;
  z-index: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.track-skeleton-line.title {
  width: 68%;
  height: 15px;
}

.track-skeleton-line.meta {
  width: 42%;
}

.track-item-button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%),
    #131313;
  text-align: left;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
  animation: trackEnter 260ms ease both;
}

.track-item-button:hover {
  border-color: #ff9d3d;
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.14);
}

.track-item-button:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.track-item-button.is-active {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.16) 0%, rgba(255, 122, 0, 0.06) 100%),
    var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 173, 92, 0.22);
}

.track-item-text {
  min-width: 0;
}

.track-item-title {
  display: block;
  color: #f7f8fb;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.track-item-meta {
  display: block;
  margin-top: 2px;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.track-item-state {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.player-panel {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.player-top {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.player-top h2 {
  overflow-wrap: anywhere;
}

.player-top p {
  margin: 0;
}

.player-main {
  display: grid;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 100%),
    var(--surface-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

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

.primary-button,
.secondary-button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease;
}

.primary-button {
  background:
    linear-gradient(180deg, #ff8f28 0%, #ff7a00 58%, #e96b00 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
}

.primary-button:hover {
  background:
    linear-gradient(180deg, #ff9c42 0%, #ff820e 58%, #f07200 100%);
  transform: translateY(-1px);
}

.primary-button:disabled,
.secondary-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.secondary-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    #181818;
  border-color: var(--border);
  color: #f5f7fb;
}

.secondary-button:hover {
  background: #202020;
  border-color: #4a4a4a;
  transform: translateY(-1px);
}

.timeline,
.volume-row {
  display: grid;
  gap: 10px;
}

.seek-bar,
.volume-bar {
  width: 100%;
  margin: 0;
  accent-color: #ff7a00;
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-variant-numeric: tabular-nums;
}

.volume-header {
  align-items: center;
}

.volume-header label {
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.app-footer {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 140ms ease;
}

.footer-link:hover {
  color: #ffffff;
}

.info-shell {
  padding-top: 28px;
}

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

.info-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

.info-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255, 122, 0, 0.22));
}

.info-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.info-header-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.info-layout {
  display: grid;
  gap: 24px;
}

.info-hero,
.info-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%),
    var(--surface);
  box-shadow: var(--shadow);
}

.info-hero {
  padding: 26px 28px;
}

.info-kicker {
  margin: 0 0 8px;
  color: var(--text-subtle);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.info-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.info-lead {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

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

.info-card {
  padding: 22px;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

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

.info-contact-copy {
  margin-bottom: 14px !important;
}

.info-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.info-list li + li {
  margin-top: 8px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.info-field {
  display: grid;
  gap: 6px;
}

.info-field span {
  color: #f7f8fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.info-field input,
.info-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    #0d0d0d;
  color: #f5f7fb;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.info-field input:focus,
.info-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-feedback {
  margin: 0;
  font-size: 0.92rem;
}

.contact-feedback[data-tone="loading"] {
  color: var(--text-muted);
}

.contact-feedback[data-tone="success"] {
  color: var(--success-text);
}

.contact-feedback[data-tone="error"] {
  color: var(--danger-text);
}

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

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes trackEnter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  




}

@media (max-width: 980px) {
  .app-shell {
    width: min(100vw - 24px, 1180px);
    padding-top: 24px;
  }

  .app-header,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .player-panel {
    position: static;
  }

  .panel {
    min-height: auto;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: min(100vw - 16px, 1180px);
    padding-top: 16px;
    padding-bottom: 24px;

  }

  .brand-block,
  .account-box,
  .panel {
    padding: 18px;
  }

  .library-tools,
  .player-controls,
  .track-item-button {
    grid-template-columns: 1fr;
  }

  .pagination-bar,
  .pagination-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .track-item-state {
    white-space: normal;
  }

  .info-header {
    flex-direction: column;
    align-items: stretch;
  }

  .info-header-links {
    flex-direction: column;
    align-items: stretch;
  }

  .info-brand {
    font-size: 1.25rem;
  }

  .info-hero,
  .info-card {
    padding: 18px;
  }
}
