/* ==========================================
   RESET & GLOBAL VARIABLES (BRIGHT MODE)
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Noto Sans KR', sans-serif;
}

:root {
  --bg-color: #f8f7fb;
  --bg-gradient: linear-gradient(135deg, #f8f7fb 0%, #e8e6f1 100%);
  --panel-bg: rgba(255, 255, 255, 0.8);
  --panel-border: rgba(168, 85, 247, 0.12);
  
  --primary: #9d26e5; /* Neon Violet (Slightly darker for light bg contrast) */
  --primary-glow: rgba(157, 38, 229, 0.25);
  --secondary: #e21b77; /* Neon Pink */
  --secondary-glow: rgba(226, 27, 119, 0.25);
  
  --text-main: #2b283d;
  --text-muted: #6e6a82;
  
  --font-tv: 'Orbitron', monospace;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* ==========================================
   APP CONTAINER
   ========================================== */
.app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* ==========================================
   MAIN PLAYER CONTAINER
   ========================================== */
.player-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f1eff5;
  position: relative;
}

/* Top floating brand header (Styled for Light theme) */
.player-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

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

.live-indicator {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-tv);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 0 8px var(--secondary-glow);
  animation: pulse 1.5s infinite;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(45deg, var(--text-main) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stream-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-tv);
}

.channel-num {
  color: var(--primary);
  font-weight: 700;
  text-shadow: 0 0 6px var(--primary-glow);
}

.post-title-overlay {
  font-size: 14px;
  color: var(--text-main);
  opacity: 0.9;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

/* Screen Wrapper (Canvas stays dark for best video contrast) */
.screen-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0a0e;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
}

.media-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.media-container img, 
.media-container video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.4s ease-out;
}

/* Unobtrusive Floating Unmute Pill */
.unmute-floating-pill {
  position: absolute;
  top: 85px;
  left: 25px;
  z-index: 5;
  background: rgba(157, 38, 229, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px var(--primary-glow);
  transition: var(--transition);
  pointer-events: auto;
}

.unmute-floating-pill:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.unmute-floating-pill svg {
  width: 14px;
  height: 14px;
}

/* Bottom Watermark Overlay */
.media-watermark {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--primary);
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  max-width: 60%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.media-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text-main);
}

.media-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.media-sub #media-index {
  font-family: var(--font-tv);
  color: var(--secondary);
  font-weight: 600;
}

.source-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.source-link:hover {
  color: var(--primary);
}

/* Next Item Countdown Progress Circle */
.countdown-indicator {
  position: absolute;
  top: 85px;
  right: 25px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 15px 6px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.progress-ring {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-svg {
  transform: rotate(-90deg);
  position: absolute;
}

.progress-ring-circle-bg {
  fill: transparent;
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 3.5;
}

.progress-ring-circle {
  fill: transparent;
  stroke: var(--primary);
  stroke-width: 3.5;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.countdown-text {
  font-family: var(--font-tv);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-main);
  z-index: 2;
  position: absolute;
}

/* Playback Control Bar (Light Styled) */
.player-controls {
  height: 75px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 30%;
}

.controls-right {
  justify-content: flex-end;
}

.control-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  opacity: 0.8;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.control-btn:hover {
  opacity: 1;
  background: rgba(157, 38, 229, 0.05);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(157, 38, 229, 0.1);
}

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

.media-counter {
  font-family: var(--font-tv);
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.02);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-container {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin: 0 20px;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  box-shadow: 0 0 4px var(--primary-glow);
  transition: width 0.1s linear;
}

.hidden {
  display: none !important;
}

/* ==========================================
   SIDEBAR PANEL (Light Mode Glassmorphism)
   ========================================== */
.sidebar-panel {
  width: 380px;
  height: 100%;
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  z-index: 15;
  transition: var(--transition);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.03);
}

.sidebar-panel.collapsed {
  width: 0px;
  border-left: none;
  opacity: 0;
  pointer-events: none;
}

/* Tabs selectors */
.sidebar-tabs {
  display: flex;
  height: 55px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 6px var(--primary-glow);
}

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

.tab-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* --- TAB: LIVE CHAT SIMULATOR (Bright Mode) --- */
.chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-header {
  height: 45px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pulse-icon {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
  animation: pulseGreen 1.8s infinite;
}

.chat-header h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
  flex: 1;
}

.chat-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scroll-behavior: smooth;
  background: rgba(255, 255, 255, 0.2);
}

/* Chat bubble styling (Bright Mode) */
.chat-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slideUp 0.3s ease-out;
}

.chat-bubble-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.chat-author {
  font-weight: 600;
  color: #7c3aed; /* deeper violet */
}

.chat-time {
  color: var(--text-muted);
  font-size: 10px;
}

.chat-votes {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.03);
  padding: 1px 6px;
  border-radius: 3px;
}

.chat-body {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-main);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  word-break: break-all;
}

/* Replies inside chat */
.chat-bubble.reply {
  margin-left: 20px;
  border-left: 2px solid rgba(157, 38, 229, 0.25);
  padding-left: 10px;
}

.chat-bubble.reply .chat-author {
  color: #db2777; /* pink */
}

.chat-footer {
  height: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.5);
}

.chat-input-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  width: 100%;
}

.chat-input-placeholder svg {
  width: 14px;
  height: 14px;
}

/* --- TAB: PLAYLIST CHANNEL GUIDE --- */
.playlist-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.playlist-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.shuffle-btn {
  background: rgba(157, 38, 229, 0.06);
  border: 1px solid rgba(157, 38, 229, 0.15);
  color: var(--primary);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  outline: none;
}

.shuffle-btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.shuffle-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.shuffle-btn svg {
  width: 13px;
  height: 13px;
}

.playlist-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Channel card */
.channel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.channel-card:hover {
  background: rgba(157, 38, 229, 0.03);
  border-color: rgba(157, 38, 229, 0.2);
}

.channel-card.active {
  background: rgba(157, 38, 229, 0.07);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(157, 38, 229, 0.08);
}

.channel-card-badge {
  font-family: var(--font-tv);
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(226, 27, 119, 0.05);
  border: 1px solid rgba(226, 27, 119, 0.15);
  width: 50px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.channel-card.active .channel-card-badge {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.channel-card-info {
  flex: 1;
  min-width: 0;
}

.channel-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.channel-card-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* --- TAB: SETTINGS PANEL --- */
.settings-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.settings-header {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.settings-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.settings-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow-y: auto;
}

.setting-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.setting-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.setting-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.setting-value {
  font-family: var(--font-tv);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(157, 38, 229, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
}

.setting-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.06);
  outline: none;
  transition: background 0.3s;
}

.setting-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(157, 38, 229, 0.2);
  transition: transform 0.1s;
}

.setting-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.setting-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================
   AD CONTAINER (HIGH REVENUE PLACEMENT)
   ========================================== */
.sidebar-ad-container {
  padding: 12px 15px 15px 15px;
  background: #fbf9ff;
  border-top: 1px solid rgba(157, 38, 229, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}

/* AdBlock notice message card */
.adblock-message {
  background: rgba(226, 27, 119, 0.05);
  border: 1px solid rgba(226, 27, 119, 0.15);
  color: var(--secondary);
  font-size: 10.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(226, 27, 119, 0.02);
}

.adblock-message svg {
  width: 14px;
  height: 14px;
  fill: var(--secondary);
  flex-shrink: 0;
}

.heart-pulse {
  animation: heartBeat 1.2s infinite;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
  70% { transform: scale(1); }
}

.ad-label {
  font-family: var(--font-tv);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-align: center;
  opacity: 0.7;
}

.ad-slot-wrapper {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.01);
  border: 1px dashed rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

/* ==========================================
   ANIMATIONS & SCROLLBAR
   ========================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 8px var(--secondary-glow);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 3px var(--secondary-glow);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--secondary-glow);
  }
}

@keyframes pulseGreen {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar,
.playlist-items::-webkit-scrollbar,
.settings-body::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-track,
.playlist-items::-webkit-scrollbar-track,
.settings-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb,
.playlist-items::-webkit-scrollbar-thumb,
.settings-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover,
.playlist-items::-webkit-scrollbar-thumb:hover,
.settings-body::-webkit-scrollbar-thumb:hover {
  background: rgba(157, 38, 229, 0.2);
}

/* ==========================================
   BLOCK / HIDE CHANNELS & SMART SWITCH STYLING
   ========================================== */
.playlist-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.toggle-hidden-view-btn {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  outline: none;
}

.toggle-hidden-view-btn:hover {
  background: rgba(157, 38, 229, 0.05);
  border-color: rgba(157, 38, 229, 0.15);
  color: var(--primary);
}

.toggle-hidden-view-btn.active {
  background: rgba(226, 27, 119, 0.07);
  border-color: var(--secondary);
  color: var(--secondary);
}

.toggle-hidden-view-btn svg {
  width: 12px;
  height: 12px;
}

.channel-card {
  position: relative; /* essential to absolute position hide button */
}

.channel-card-info {
  padding-right: 28px; /* reserve space for action buttons */
}

.channel-hide-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
}

.channel-card:hover .channel-hide-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .channel-hide-btn {
    opacity: 0.7;
  }
}

.channel-hide-btn:hover {
  background: rgba(226, 27, 119, 0.1);
  color: var(--secondary);
}

.channel-hide-btn svg {
  width: 14px;
  height: 14px;
}

.channel-card.blocked-card {
  opacity: 0.65;
  border-style: dashed;
}

.channel-card.blocked-card:hover {
  opacity: 0.9;
}

.channel-restore-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.channel-restore-btn:hover {
  background: rgba(157, 38, 229, 0.1);
}

.channel-restore-btn svg {
  width: 14px;
  height: 14px;
}

/* iOS Style Switch Switch */
.switch-container {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.08);
  transition: .4s;
  border-radius: 24px;
}

.slider-switch:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

input:checked + .slider-switch {
  background-color: var(--primary);
}

input:checked + .slider-switch:before {
  transform: translateX(20px);
}

/* ==========================================
   RESPONSIVENESS
   ========================================== */
@media (max-width: 1024px) {
  .app-container {
    flex-direction: column;
  }
  .sidebar-panel {
    width: 100%;
    height: 40%;
  }
  .player-container {
    height: 60%;
  }
  .media-watermark {
    max-width: 80%;
  }
}
