/* ==========================================================================
   Sangløs.dk - Premium Dark Music Theme
   ========================================================================== */

:root {
  --bg-primary: #0a0a0c;
  --bg-surface: #141418;
  --bg-card: #1c1c24;
  --bg-hover: #262633;
  --bg-input: #121216;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(30, 215, 96, 0.4);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  --accent-green: #1db954;
  --accent-green-hover: #1ed760;
  --accent-red: #ef4444;
  --accent-amber: #f59e0b;
  --accent-blue: #38bdf8;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(29, 185, 84, 0.35);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
  overflow: hidden;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.app-header {
  height: 64px;
  border-bottom: 1px solid var(--border-subtle);
  background-color: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  filter: drop-shadow(0 0 8px rgba(29, 185, 84, 0.5));
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.brand-tld {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.icon-btn:hover {
  color: var(--text-main);
  background-color: var(--bg-surface);
  border-color: var(--border-subtle);
  transform: translateY(-1px);
}

/* ==========================================================================
   Main Game Container
   ========================================================================== */

.game-container {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

/* Intro & Instructions */
.game-intro {
  text-align: center;
  padding: 4px 0 8px;
}

.game-intro h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.game-intro p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Guess Slots */
.guess-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.guess-slot {
  height: 48px;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.guess-slot.slot-current {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.slot-number {
  color: var(--text-subtle);
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 16px;
}

.slot-empty {
  flex: 1;
}

.slot-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slot-icon svg {
  width: 18px;
  height: 18px;
}

.slot-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-main);
}

.slot-correct {
  background-color: rgba(29, 185, 84, 0.15);
  border-color: var(--accent-green);
  color: #a7f3d0;
}

.slot-correct .slot-icon {
  color: var(--accent-green);
}

.slot-incorrect {
  background-color: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.slot-incorrect .slot-icon {
  color: var(--accent-red);
}

.slot-skipped {
  background-color: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.slot-skipped .slot-icon {
  color: var(--accent-amber);
}

/* ==========================================================================
   Audio Player Controls
   ========================================================================== */

.player-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

/* Timeline & Segments */
.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-bar {
  position: relative;
  height: 12px;
  background-color: var(--bg-input);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.timeline-track {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

.timeline-segment {
  height: 100%;
  border-right: 1px solid var(--bg-primary);
  position: relative;
  transition: background-color 0.2s;
  background-color: rgba(255, 255, 255, 0.04);
}

.timeline-segment:last-child {
  border-right: none;
}

.timeline-segment.segment-unlocked {
  background-color: rgba(255, 255, 255, 0.12);
}

.timeline-segment.segment-correct {
  background-color: rgba(29, 185, 84, 0.6);
}

.timeline-segment.segment-incorrect {
  background-color: rgba(239, 68, 68, 0.5);
}

.timeline-segment.segment-skipped {
  background-color: rgba(245, 158, 11, 0.5);
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #1ed760);
  box-shadow: 0 0 10px rgba(30, 215, 96, 0.8);
  z-index: 2;
  transition: width 0.06s linear;
  pointer-events: none;
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-subtle);
  padding: 0 2px;
}

/* Controls row (Play button + Volume/Status) */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s, box-shadow 0.2s;
}

.play-button svg {
  width: 26px;
  height: 26px;
}

.play-button:hover {
  background-color: var(--accent-green-hover);
  transform: scale(1.06);
  box-shadow: 0 0 26px rgba(30, 215, 96, 0.6);
}

.play-button:active {
  transform: scale(0.95);
}

.play-button.is-playing {
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(29, 185, 84, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(29, 185, 84, 0);
  }
}

/* ==========================================================================
   Action & Input Section
   ========================================================================== */

.action-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background-color: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrapper:focus-within {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(29, 185, 84, 0.2);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-subtle);
  margin-right: 10px;
  flex-shrink: 0;
}

.search-input {
  width: 100%;
  height: 48px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
}

.search-input::placeholder {
  color: var(--text-subtle);
}

.search-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Autocomplete Dropdown */
.search-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  max-height: 250px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  backdrop-filter: blur(16px);
}

.dropdown-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.15s;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--bg-hover);
}

.dropdown-artist {
  font-weight: 600;
  color: var(--text-main);
}

.dropdown-sep {
  color: var(--text-subtle);
}

.dropdown-title {
  color: var(--text-muted);
}

.dropdown-empty {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Buttons row */
.action-buttons {
  display: flex;
  gap: 10px;
}

.btn-skip {
  flex: 1;
  height: 46px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-skip:hover:not(:disabled) {
  background-color: var(--bg-hover);
  border-color: rgba(255, 255, 255, 0.3);
}

.skip-pill {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.btn-submit {
  flex: 1;
  height: 46px;
  background-color: var(--accent-green);
  border: none;
  border-radius: var(--radius-md);
  color: #000;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--accent-green-hover);
  box-shadow: 0 0 16px rgba(29, 185, 84, 0.4);
}

.btn-skip:disabled,
.btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* ==========================================================================
   Modals
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: modal-fade-in 0.2s ease-out;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-slide-up 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.15s;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-close:hover {
  color: var(--text-main);
  background-color: var(--bg-hover);
}

/* End Game Modal Details */
.end-hero {
  text-align: center;
  margin-bottom: 20px;
}

.end-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.end-title.win {
  color: var(--accent-green);
}

.end-title.loss {
  color: var(--accent-red);
}

.end-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.end-song-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
}

.end-cover {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.end-song-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.end-song-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.end-song-artist {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.end-links {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.end-link {
  font-size: 0.75rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
}

.end-link:hover {
  text-decoration: underline;
}

.end-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-share {
  height: 48px;
  background-color: var(--accent-green);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.2s ease;
}

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

.btn-share:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-1px);
}

.end-countdown {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 12px;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.countdown-timer {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

/* Stats Modal */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.stat-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 6px;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stats-chart-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.dist-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dist-num {
  font-size: 0.85rem;
  font-weight: 700;
  width: 14px;
  color: var(--text-muted);
}

.dist-bar-wrap {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 22px;
}

.dist-bar {
  height: 100%;
  background-color: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  transition: width 0.4s ease;
}

.dist-bar.highlight {
  background-color: var(--accent-green);
  color: #000;
}

/* Help Modal Steps */
.help-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.help-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-hover);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.help-text strong {
  color: var(--text-main);
}

/* Songs Archive Modal */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 350px;
  overflow-y: auto;
}

.archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.archive-item.current-playing {
  border-color: var(--accent-green);
}

.archive-info {
  display: flex;
  flex-direction: column;
}

.archive-date {
  font-size: 0.7rem;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.archive-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-play-song {
  padding: 6px 14px;
  background-color: var(--bg-hover);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-play-song:hover {
  background-color: var(--accent-green);
  color: #000;
  border-color: var(--accent-green);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Game Top Bar (Stime & Ny Sang) */
.game-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

/* Mode Bar */
.mode-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 6px;
}

.mode-switcher {
  display: flex;
  background-color: var(--bg-card);
  border-radius: var(--radius-full);
  padding: 2px;
}

.mode-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mode-switch-btn svg {
  width: 15px;
  height: 15px;
}

.mode-switch-btn.active {
  background-color: var(--accent-green);
  color: #000;
  box-shadow: 0 2px 8px rgba(29, 185, 84, 0.4);
}

.infinite-bar-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
}

.infinite-badge-streak {
  font-size: 0.8rem;
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.btn-infinite-next {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-infinite-next:hover {
  color: var(--text-main);
  background-color: var(--bg-hover);
  border-color: rgba(255, 255, 255, 0.3);
}

/* YouTube Players */
.yt-hidden-player {
  position: fixed;
  top: -9999px;
  left: -9999px;
  width: 200px;
  height: 200px;
  opacity: 0.001;
  pointer-events: none;
  z-index: -100;
}

.end-yt-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #000;
  box-shadow: var(--shadow-lg);
}

.end-yt-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Animations & Utilities */
.hidden {
  display: none !important;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-slide-up {
  from {
    transform: translateY(16px) scale(0.97);
  }

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

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .game-container {
    padding: 12px 12px 24px;
  }

  .guess-slot {
    height: 44px;
    font-size: 0.88rem;
  }

  .player-section {
    padding: 12px;
  }

  .play-button {
    width: 52px;
    height: 52px;
  }
}