/* Live Session Player Styles */

.live-session-player {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 8px;
  padding-bottom: 60px; /* Space for Session Management bar (48px toggle + spacing) */
  overflow-x: hidden; /* Prevent horizontal scroll */
  overflow-y: auto; /* Allow vertical scroll on mobile */
}

/* When session management bar is hidden (non-DJs), no additional padding needed */
.live-session-player.no-session-bar {
  padding-bottom: 8px;
}

/* Mobile adjustments for live session player */
@media (max-width: 768px) {
  .live-session-player {
    gap: 6px;
    overflow-y: auto; /* Ensure scrolling on mobile */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  /* Ensure queue section is scrollable on mobile */
  .queue-section {
    flex: 1 1 auto;
    min-height: 150px;
    max-height: none; /* Remove max-height on mobile */
    overflow-y: visible; /* Let parent handle scrolling on mobile */
  }
}

@media (max-width: 480px) {
  .live-session-player {
    gap: 4px;
    overflow-y: auto; /* Ensure scrolling on mobile */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .queue-section {
    min-height: 120px;
    overflow-y: visible; /* Let parent handle scrolling on mobile */
  }
}

/* Session Info Header */
.session-info-header {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 4px;
  flex-shrink: 0;
  /* Elevate above sibling sections so the participants dropdown (inside this header)
     paints on top of now-playing and queue sections. Needed because backdrop-filter
     on these siblings creates separate stacking contexts. */
  position: relative;
  z-index: 1;
}

.session-info-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.session-icon {
  font-size: 48px;
  flex-shrink: 0;
  line-height: 1;
}

.session-details {
  flex: 1;
  min-width: 0;
}

.session-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.session-server,
.session-dj,
.session-participants {
  display: flex;
  align-items: center;
  gap: 6px;
}

.session-participants {
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 6px;
  transition: background 0.2s;
}

.session-participants:hover {
  background: rgba(139, 92, 246, 0.15);
}

.session-participants-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Participants dropdown panel - uses fixed positioning to escape overflow clipping */
.participants-panel {
  position: fixed;
  z-index: 5001;
  min-width: 220px;
  max-width: 300px;
  max-height: 300px;
  background: rgba(15, 10, 30, 0.97);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.participants-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
}

.participants-panel-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.participants-panel-close:hover {
  color: #ef4444;
}

.participants-panel-list {
  overflow-y: auto;
  max-height: 250px;
  padding: 4px 0;
}

.participant-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-primary, #e2e8f0);
  transition: background 0.15s;
}

.participant-item:hover {
  background: rgba(139, 92, 246, 0.08);
}

.participant-empty {
  color: #6b7280;
  font-style: italic;
  justify-content: center;
}

.participant-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.participant-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.participant-badge-dj {
  background: rgba(139, 92, 246, 0.25);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.participant-badge-codj {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.session-separator {
  color: rgba(139, 92, 246, 0.5);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .session-info-header {
    padding: 12px;
  }

  .session-icon {
    font-size: 36px;
  }

  .session-name {
    font-size: 20px;
  }

  .session-meta {
    font-size: 12px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .session-info-content {
    gap: 12px;
  }

  .session-icon {
    font-size: 32px;
  }

  .session-name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .session-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .session-separator {
    display: none;
  }
}

/* Now Playing Section */
.now-playing-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 12px;
  min-height: auto;
  flex-shrink: 0;
}

/* Favorite Button */
.favorite-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: auto;
}

.favorite-button:hover {
  transform: scale(1.1);
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
  background: rgba(20, 20, 30, 0.9);
  opacity: 1;
  filter: grayscale(0%);
}

.favorite-button.favorited {
  filter: grayscale(0%);
  opacity: 1;
  border-color: rgba(239, 68, 68, 0.8);
  background: rgba(239, 68, 68, 0.2);
}

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

.now-playing-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.empty-icon {
  font-size: 48px;
  opacity: 0.5;
}

.empty-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary, #a0a0a0);
}

.empty-subtext {
  font-size: 14px;
  color: var(--text-tertiary, #707070);
}

.now-playing-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

/* Desktop Layout: Cover on left, Info on right */
.now-playing-layout-desktop {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
  .now-playing-layout-desktop {
    flex-direction: column;
    align-items: center;
  }
}

.now-playing-cover {
  position: relative;
  width: 280px;
  height: 280px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: visible;
  background: #0a0a0f;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .now-playing-cover {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
  }
}

.now-playing-cover img,
.now-playing-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.now-playing-info,
.now-playing-info-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.now-playing-info-right {
  flex: 1;
  justify-content: center;
}

@media (max-width: 768px) {
  .now-playing-info-right {
    width: 100%;
    text-align: center;
  }
}

.now-playing-label {
  font-size: 12px;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: 1px;
}

.now-playing-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.now-playing-artist {
  font-size: 16px;
  color: #a78bfa;
}

.now-playing-duration {
  font-size: 14px;
  color: #6b7280;
}

/* Live Reactions Section */
.live-reactions-section {
  margin-top: 12px;
  text-align: center;
}

.live-reactions-label {
  font-size: 12px;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Emoji Reactions */
.emoji-reactions {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.emoji-reactions.disabled {
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(100%);
}

.emoji-btn {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.emoji-btn:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.5);
  transform: scale(1.15);
}

.emoji-btn:active {
  transform: scale(0.95);
}

/* Speech bubble button - kept disabled for upcoming feature */
.emoji-btn.emoji-btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(100%);
}

.emoji-btn.emoji-btn-disabled:hover {
  transform: none;
  background: rgba(107, 114, 128, 0.1);
  border-color: rgba(107, 114, 128, 0.2);
}

.discord-emoji {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Horizontal Playback Controls (Progress | Play | Volume) */
.playback-controls-horizontal {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

/* Progress Container - takes most of the space */
.progress-container-horizontal {
  flex: 1;
  min-width: 0; /* Allow shrinking */
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(107, 114, 128, 0.2);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.progress-bar-readonly {
  cursor: default;
  pointer-events: none;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color, #8b5cf6) 0%, var(--primary-color, #a78bfa) 100%);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 3px;
  pointer-events: none; /* Allow clicks to pass through to parent progress-bar */
}

.progress-time {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 11px;
  color: #9ca3af;
  font-family: monospace;
}

.time-current,
.time-duration {
  padding: 0 4px;
}

/* Control Buttons */
.control-btn {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondary-color, #8b5cf6) 40%, transparent);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.control-btn:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.05);
}

.control-btn-play {
  background: #8b5cf6;
  border-color: #8b5cf6;
  padding: 10px 14px;
}

.control-btn-play:hover {
  background: #a78bfa;
  border-color: #a78bfa;
}

.control-btn-volume {
  /* Volume button styles */
}

.now-playing-submitter {
  font-size: 11px;
  color: #6b7280;
  font-style: italic;
  margin-top: 4px;
}

.now-playing-badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* CRITICAL FIX: Center tags on mobile */
@media (max-width: 768px) {
  .now-playing-badges {
    justify-content: center;
  }
}

/* Share for Voting Button in Now Playing */
.btn-share-voting {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-share-voting:hover {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  border-color: #ef4444;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
  .btn-share-voting {
    width: 100%;
    justify-content: center;
  }
}

/* Share URL Button in Now Playing */
.btn-share-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  margin-left: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid #3b82f6;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #60a5fa;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-share-url:hover {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-color: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .btn-share-url {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}

/* Queue Section */
.queue-section {
  flex: 1 1 auto;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  /* CRITICAL: Calculate max-height to fit in viewport */
  max-height: calc(100vh - var(--sait) - var(--saib) - 450px);
  min-height: 300px;
  /* Enable momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
  /* Ensure scrolling works on mobile */
  touch-action: pan-y;
}

/* Queue section scrollbar */
.queue-section::-webkit-scrollbar {
  width: 5px;
}

.queue-section::-webkit-scrollbar-track {
  background: transparent;
}

.queue-section::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 35%, transparent);
  border-radius: 3px;
}

.queue-section::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 60%, transparent);
}

.queue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.queue-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.queue-tabs {
  display: flex;
  gap: 8px;
}

/* Queue Tabs Full Width - contains slots icon and tabs */
.queue-tabs-full-width {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Slots icon in tabs row */
.queue-tabs-full-width .emoji-btn-slots {
  padding: 6px 10px;
  font-size: 16px;
  border-radius: 8px;
  flex-shrink: 0;
}

.queue-tab {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondary-color, #8b5cf6) 30%, transparent);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color, #a78bfa);
  cursor: pointer;
  transition: all 0.2s;
}

.queue-tab:hover {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 20%, transparent);
  border-color: color-mix(in srgb, var(--secondary-color, #8b5cf6) 50%, transparent);
}

.queue-tab.active {
  background: var(--secondary-color, #8b5cf6);
  border-color: var(--secondary-color, #8b5cf6);
  color: #fff;
}

.pending-badge {
  background: #ef4444;
  color: #fff;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  display: inline-block;
  min-width: 18px;
  text-align: center;
}

.queue-content {
  flex: 1;
  overflow-y: auto;
}

.queue-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.queue-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 8px;
  transition: all 0.2s;
}

.queue-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
}

/* Drag and Drop States */
.queue-item.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.queue-item.drag-over {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.2);
  border-width: 2px;
}

.drag-handle {
  font-size: 20px;
  color: #6b7280;
  cursor: grab;
  user-select: none;
  padding: 0 4px;
  transition: color 0.2s;
}

.drag-handle:hover {
  color: #8b5cf6;
}

.drag-handle:active {
  cursor: grabbing;
}

.queue-item-number {
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  min-width: 24px;
  text-align: center;
}

.queue-item-cover {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.queue-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.queue-item-info {
  flex: 1;
  min-width: 0;
}

.queue-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-item-artist {
  font-size: 12px;
  color: #a78bfa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-item-submitter {
  font-size: 11px;
  color: #6b7280;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.queue-item-duration {
  font-size: 12px;
  color: #6b7280;
  min-width: 40px;
  text-align: right;
}

.queue-item-actions {
  display: flex;
  gap: 4px;
}

.queue-action-btn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.queue-action-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

/* Bottom Section: Session Limitations + Add Track */
.session-bottom-section {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-shrink: 0;
}

.session-limitations {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 8px;
  padding: 8px;
  min-height: 60px;
}

.limitations-header {
  font-size: 11px;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.limitations-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.limitation-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #a78bfa;
  padding: 2px 0;
}

.limitation-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.limitation-text {
  flex: 1;
}

.btn-add-track {
  flex-shrink: 0;
  flex: 0 0 auto;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 60px;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
}

.btn-add-track span:first-child {
  font-size: 20px;
}

/* Mobile adjustments for bottom section */
@media (max-width: 768px) {
  .session-bottom-section {
    flex-direction: column;
  }

  .session-limitations {
    flex: 1;
    min-height: auto;
  }

  .btn-add-track {
    flex: 1;
    min-height: 80px;
    padding: 12px 20px;
  }
}

/* Session Management Bar */
.session-management-bar {
  background: color-mix(in srgb, var(--bg-secondary, #1a1a2e) 90%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--secondary-color, #8b5cf6) 30%, transparent);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 8px;
  z-index: 100;
  position: relative;
  min-height: 60px;
}

/* Hide session management bar for non-DJs */
.session-management-bar.hidden-for-listener {
  display: none;
}

/* Mobile adjustments for session management bar */
@media (max-width: 768px) {
  .session-management-bar {
    padding: 6px;
  }

  .session-controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
}

/* Old session control button styles removed - now using modern control tiles */

/* Add Track Modal */
.add-track-modal {
  max-width: 500px;
  width: 100%;
}

.track-url-input {
  width: 100%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
}

.track-url-input:focus {
  outline: none;
  border-color: #8b5cf6;
}

.track-preview {
  margin-top: 16px;
}

.track-preview-card {
  display: flex;
  gap: 16px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 16px;
}

.track-preview-cover {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.track-preview-cover img,
.track-preview-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-preview-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.track-preview-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.track-preview-artist {
  font-size: 14px;
  color: #a78bfa;
}

.track-preview-duration {
  font-size: 12px;
  color: #6b7280;
}

.track-error {
  margin-top: 12px;
  padding: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #ef4444;
  font-size: 14px;
}

.loading {
  text-align: center;
  padding: 20px;
  color: #a78bfa;
}

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

.modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.close-modal-btn {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.close-modal-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.6);
}

.modal-body {
  margin-bottom: 20px;
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-secondary {
  background: rgba(107, 114, 128, 0.2);
  border: 1px solid rgba(107, 114, 128, 0.4);
}

.btn-secondary:hover {
  background: rgba(107, 114, 128, 0.3);
  border-color: rgba(107, 114, 128, 0.6);
}

.btn-primary {
  background: #8b5cf6;
  border: 1px solid #8b5cf6;
}

.btn-primary:hover {
  background: #a78bfa;
  border-color: #a78bfa;
}

.btn-primary:disabled {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
  opacity: 0.5;
  cursor: not-allowed;
}

/* Horizontal Volume Control */
.volume-control-horizontal {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.volume-slider {
  width: 80px;
  height: 6px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #8b5cf6;
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #8b5cf6;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.volume-value {
  font-size: 11px;
  color: #a78bfa;
  min-width: 35px;
  text-align: right;
}

/* Hide volume slider and value on mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .volume-control-horizontal {
    gap: 0;
  }
}

/* Session Controls */
.session-controls {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* End Session Modal */
.end-session-modal {
  max-width: 450px;
}

.end-session-modal .modal-body {
  padding: 20px;
}

.end-session-modal .warning-text {
  text-align: center;
  font-size: 15px;
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Track Tags */
.queue-item-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.track-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.track-tag-genre {
  background: color-mix(in srgb, var(--primary-color, #a78bfa) 20%, transparent);
  color: var(--primary-color, #a78bfa);
  border: 1px solid color-mix(in srgb, var(--primary-color, #a78bfa) 40%, transparent);
}

.track-tag-version {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.track-tag-lyrics {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.4);
}

.track-tag-wip {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
}

/* Fix genre dropdown options visibility */
.form-input option {
  background: #1a1a2e;
  color: #fff;
  padding: 8px;
}

.form-textarea {
  width: 100%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  resize: vertical;
  transition: all 0.2s;
}

.form-textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #a78bfa;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Duration Exceeded Indicator */
.duration-exceeded {
  color: #ef4444 !important;
  font-weight: 600;
}

/* DJs Modal */
.djs-modal {
  max-width: 500px;
  width: 100%;
}

.dj-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding-bottom: 8px;
}

.dj-tab {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 6px;
}

.dj-tab:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
}

.dj-tab.active {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.dj-tab-content {
  padding: 16px 0;
}

.dj-tab-content p {
  color: #a78bfa;
  margin-bottom: 16px;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.6);
}

/* Lyrics Container */
.lyrics-container {
  padding: 24px;
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 5%, transparent);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--secondary-color, #8b5cf6) 20%, transparent);
  text-align: center;
}

.lyrics-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
}

.lyrics-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color, #a78bfa);
  margin-bottom: 4px;
}

.lyrics-artist {
  font-size: 14px;
  color: var(--text-secondary, #6b7280);
}

.lyrics-toggle {
  display: flex;
  gap: 4px;
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 10%, transparent);
  border-radius: 8px;
  padding: 4px;
}

.lyrics-toggle-btn {
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color, #a78bfa);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.lyrics-toggle-btn:hover {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 20%, transparent);
}

.lyrics-toggle-btn.active {
  background: var(--secondary-color, #8b5cf6);
  color: #fff;
}

.lyrics-text {
  font-size: 15px;
  line-height: 2;
  color: var(--text-color, #d1d5db);
  white-space: pre-wrap;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  min-height: 450px;
}

/* New Features Styles */

/* Track Duration Overlay on Thumbnails */
.track-duration-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  padding: 2px 4px;
  text-align: center;
  font-weight: 600;
  font-family: monospace;
}

/* Compact Session Limitations */
.session-limitations-compact {
  flex: 1;
  background: color-mix(in srgb, var(--bg-secondary, #1a1a2e) 90%, transparent);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.limitations-header-inline {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color, #8b5cf6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.limitations-list-horizontal {
  font-size: 11px;
  color: #a78bfa;
  line-height: 1.4;
}

.btn-add-track-compact {
  flex-shrink: 0;
  width: auto;
  padding: 10px 20px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Queue Tabs Full Width */
.queue-tabs-full-width {
  display: flex;
  width: 100%;
  gap: 4px;
}

.queue-tabs-full-width .queue-tab {
  flex: 1;
  text-align: center;
  font-size: 11px;
  padding: 8px 4px;
}

/* Session Management Bar - Modern Redesign */
.session-management-bar {
  position: fixed;
  bottom: calc(var(--saib) + 50px);
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Toggle Bar */
.session-bar-toggle {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary-color, #8b5cf6) 0%, var(--primary-color, #a78bfa) 100%);
  border: none;
  border-top: 2px solid color-mix(in srgb, var(--primary-color, #a78bfa) 50%, transparent);
  box-shadow: 0 -2px 12px color-mix(in srgb, var(--secondary-color, #8b5cf6) 40%, transparent),
              0 -1px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: all;
}

.session-bar-toggle:hover {
  filter: brightness(1.1);
  box-shadow: 0 -3px 16px color-mix(in srgb, var(--secondary-color, #8b5cf6) 50%, transparent),
              0 -2px 8px rgba(0, 0, 0, 0.4);
}

.session-bar-toggle:active {
  transform: scale(0.98);
}

.toggle-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.toggle-arrow {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.9;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
  }
}

/* Session Controls Panel */
.session-controls-panel {
  width: 100%;
  background: color-mix(in srgb, var(--bg-secondary, #1a1a2e) 98%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid color-mix(in srgb, var(--secondary-color, #8b5cf6) 30%, transparent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 16px;
  max-height: 300px;
  overflow: visible;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.session-controls-panel.hidden {
  max-height: 0;
  padding: 0 16px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Control Grid */
.session-controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}

/* Control Tiles */
.control-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 8%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--secondary-color, #8b5cf6) 25%, transparent);
  border-radius: 12px;
  padding: 12px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 80px;
}

.control-tile:hover {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 15%, transparent);
  border-color: color-mix(in srgb, var(--secondary-color, #8b5cf6) 40%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--secondary-color, #8b5cf6) 20%, transparent);
}

.control-tile:active {
  transform: translateY(0);
}

.control-tile.active {
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 25%, transparent);
  border-color: var(--secondary-color, #8b5cf6);
  box-shadow: 0 0 12px color-mix(in srgb, var(--secondary-color, #8b5cf6) 30%, transparent);
}

.control-tile-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
}

.control-tile-danger:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.2);
}

.tile-icon {
  font-size: 24px;
  line-height: 1;
}

.tile-label {
  font-size: 11px;
  font-weight: 600;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tile-status {
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary-color, #8b5cf6);
  padding: 2px 6px;
  background: color-mix(in srgb, var(--secondary-color, #8b5cf6) 15%, transparent);
  border-radius: 4px;
}

.control-tile.active .tile-status {
  color: #fff;
  background: var(--secondary-color, #8b5cf6);
}

/* Desktop - 6 icons in 1 row */
@media (min-width: 768px) {
  .session-controls-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    max-width: 700px;
  }

  .control-tile {
    padding: 10px 6px;
    min-height: 70px;
  }

  .tile-icon {
    font-size: 20px;
  }

  .tile-label {
    font-size: 9px;
  }

  .tile-status {
    font-size: 9px;
    padding: 1px 4px;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .session-controls-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .control-tile {
    padding: 8px 4px;
    min-height: 70px;
  }

  .tile-icon {
    font-size: 20px;
  }

  .tile-label {
    font-size: 10px;
  }

  .session-bar-fab {
    width: 48px;
    height: 48px;
    bottom: 12px;
    right: 12px;
  }

  .fab-icon {
    font-size: 20px;
  }
}

/* Edit Limits Modal */
.edit-limits-modal {
  max-width: 500px;
  width: 100%;
}

/* Warning Text */
.warning-text {
  color: #fb923c;
  font-size: 14px;
  padding: 8px 12px;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: 6px;
  margin: 8px 0;
}

/* ==================== FLOATING EMOJI REACTIONS ==================== */

.floating-reaction-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.floating-reaction {
  position: absolute;
  animation: floatUp var(--float-duration, 3s) ease-out forwards;
  opacity: 0;
  pointer-events: none;
}

.floating-reaction img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.5));
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  10% {
    transform: translateY(-20px) scale(1.2) rotate(-5deg);
    opacity: 1;
  }
  30% {
    transform: translateY(-80px) scale(1) rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-150px) scale(1.1) rotate(-3deg);
    opacity: 0.9;
  }
  70% {
    transform: translateY(-220px) scale(1) rotate(3deg);
    opacity: 0.7;
  }
  90% {
    transform: translateY(-300px) scale(0.9) rotate(-2deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-350px) scale(0.8) rotate(0deg);
    opacity: 0;
  }
}

/* ==================== SUNO BUTTON IMAGE ==================== */

.suno-btn-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
}

.queue-action-btn.suno-link-btn {
  padding: 8px 10px;
}

.queue-action-btn.suno-link-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

/* ==================== FULL SCREEN BUTTON ==================== */

.fullscreen-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
  color: rgba(255, 255, 255, 0.6);
}

.fullscreen-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #fff;
  transform: scale(1.05);
}

/* ==================== FULL SCREEN NOW PLAYING ==================== */

.fs-np-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fs-np-overlay.active {
  opacity: 1;
}

.fs-np-overlay.closing {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Close button - appears on mouse move */
.fs-np-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.4s ease, transform 0.2s ease, background 0.2s ease;
}

.fs-np-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Content wrapper */
.fs-np-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  box-sizing: border-box;
  gap: 48px;
}

/* ---- No lyrics: art centered large ---- */
.fs-np-no-lyrics {
  flex-direction: column;
}

.fs-np-no-lyrics .fs-np-art-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fs-np-no-lyrics .fs-np-cover {
  width: min(70vh, 70vw);
  height: min(70vh, 70vw);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.fs-np-no-lyrics .fs-np-title {
  font-size: 32px;
}

.fs-np-no-lyrics .fs-np-artist {
  font-size: 20px;
}

/* ---- With lyrics: side by side ---- */
.fs-np-with-lyrics {
  flex-direction: row;
}

.fs-np-with-lyrics .fs-np-art-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.fs-np-with-lyrics .fs-np-cover {
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Short lyrics: large art, lyrics alongside */
.fs-np-lyrics-short .fs-np-cover {
  width: min(50vh, 45vw);
  height: min(50vh, 45vw);
}

/* Medium lyrics: moderate art */
.fs-np-lyrics-medium .fs-np-cover {
  width: min(42vh, 38vw);
  height: min(42vh, 38vw);
}

/* Long lyrics: smaller art to give more room */
.fs-np-lyrics-long .fs-np-cover {
  width: min(35vh, 30vw);
  height: min(35vh, 30vw);
}

/* Track info under art */
.fs-np-track-info {
  text-align: center;
}

.fs-np-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.fs-np-artist {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Lyrics section */
.fs-np-lyrics-section {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fs-np-lyrics {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  white-space: pre-wrap;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-height: 90vh;
  overflow: hidden;
}

/* Short lyrics: big and centered */
.fs-np-lyrics-short .fs-np-lyrics {
  max-width: 500px;
}

/* Medium lyrics: balanced */
.fs-np-lyrics-medium .fs-np-lyrics {
  max-width: 550px;
}

/* Long lyrics: compact two-column flow if needed */
.fs-np-lyrics-long .fs-np-lyrics {
  max-width: 600px;
  column-count: 2;
  column-gap: 40px;
  text-align: left;
}

/* ---- Phone: hide fullscreen button ---- */
@media (max-width: 768px) {
  .fs-np-overlay {
    display: none !important;
  }
}
