/* ==========================================================================
   EGYSÉGESÍTETT STÍLUSLAP - GYDNI LEJÁTSZÓ (STABILIZÁLT VERZIÓ)
   ========================================================================== */

/* === Alap stílusok és Globális beállítások === */
:root {
  --primary-color: rgba(255, 255, 255, 0.6);
  --text-color: #ffffff;
  --background-color: #000000;
  --sidebar-bg: #121212;
  --lyrics-bg: rgba(0, 0, 0, 0.5);
  background-color: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

body,
html {
  color: var(--text-color);
  min-height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

/* Fő konténer */
.app-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  position: relative;
  z-index: 1; /* Biztosítja, hogy a lejátszó a videó felett legyen */
}

/* Bal oldali panel - Album információk */
.album-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-right: 0px;
}

/* Jobb oldali panel - Dalszöveg */
.lyrics-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-left: 0px;
}

/* Album borító */
.album-cover-container {
  width: 100%;
  max-width: 400px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; /* Skeletonhoz szükséges */
  background-color: rgba(255, 255, 255, 0.05); /* Háttér a skeletonhoz */
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.4, 1), opacity 0.5s;
  opacity: 1;
}

.album-cover.loading img {
  opacity: 0;
}

.album-cover:hover img {
  transform: scale(1.01);
}

/* Skeleton Töltőképernyő */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.06) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shine 1.5s linear infinite;
  border-radius: 4px;
}

@keyframes skeleton-shine {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

.skeleton-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.album-cover.loading .skeleton-cover {
  display: block;
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
  visibility: hidden;
}

.skeleton-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.06) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shine 1.5s linear infinite;
  visibility: visible;
}

.song-info-text.loading .song-title {
  max-width: 80%;
}
.song-info-text.loading .song-artist {
  max-width: 50%;
}

/* Zeneszám információk */
.song-info {
  width: 100%;
  max-width: 400px;
  margin-bottom: 25px;
}

.song-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lossless-icon {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.7);
  height: 22px;
  width: auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lossless-icon.visible {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.lossless-icon.visible:hover {
  transform: scale(1.15);
}
.song-title {
  font-size: 18px;
  font-weight: bold;
  color: #e7e9eb;
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.song-status-icon {
  font-size: 16px;
  transition: color 0.3s ease;
  flex-shrink: 0;
  color: rgba(165, 165, 165, 0.7);
  margin-left: 10px;
  margin-right: 5px;
}

.song-status-icon:hover {
  color: white;
}

.song-status-icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.song-status-icon.status-kesz::before {
  content: "\f058";
}

.song-status-icon.status-fejleszt::before {
  content: "\f303";
}

.song-artist {
  font-size: 14px;
  font-weight: bold;
  color: #a9b2b8;
  transition: color 0.4s, transform 0.3s ease;
  display: inline-block;
  cursor: default;
}

.clickable-artist {
  cursor: pointer;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.clickable-artist:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Vezérlő gombok */
.player-controls {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  position: relative;
  background-color: white;
  transition: width 0.1s linear;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.control-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.control-button {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.control-button:hover {
  transform: scale(1.1);
  color: white;
}
.control-button.play-pause {
  width: 56px;
  height: 56px;
}

.control-button.secondary {
  color: rgba(165, 165, 165, 0.7);
}

.control-button.secondary:hover {
  color: rgb(177, 177, 177);
}

.lyrics-panel {
  background: none;
  border: none;
  backdrop-filter: none;
  max-height: none;
  align-self: stretch;
}

.lyrics-container {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  text-align: left;
  padding: 0 60px;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.lyrics-container.scrolled-to-end {
  -webkit-mask-image: linear-gradient(transparent 0%, black 15%, black 100%);
  mask-image: linear-gradient(transparent 0%, black 15%, black 100%);
}

.lyrics-container::-webkit-scrollbar {
  display: none;
}

.lyrics-container::before,
.lyrics-container::after {
  content: "";
  display: block;
  height: 50vh;
}

.lyrics-line {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.55);
  text-rendering: optimizeLegibility;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.lyrics-line.active,
.lyrics-line.active ~ .lyrics-line {
  transform: translateY(0);
  filter: blur(0);
}

.lyrics-line.active {
  opacity: 1;
}

.lyrics-line.active ~ .lyrics-line {
  opacity: 0.55;
}

.lyrics-container.user-scrolling .lyrics-line {
  opacity: 0.35;
  transform: translateY(0);
  filter: blur(0);
}
.lyrics-container.user-scrolling .lyrics-line.active {
  opacity: 1;
}
.lyrics-container.user-scrolling .lyrics-line.active ~ .lyrics-line {
  opacity: 0.55;
}

.word {
  --word-progress: 100%;
  background: linear-gradient(
    to right,
    #ffffff 50%,
    rgba(255, 255, 255, 0.55) 50%
  );
  background-size: 200% 100%;
  background-position-x: var(--word-progress);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.05s linear;
}

.lyrics-container .lyrics-line:first-child:last-child {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: default;
  opacity: 0.5;
  transform: none;
  filter: none;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: black;
  filter: blur(100px);
  pointer-events: none;
}
.dynamic-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  --bg-color-1: #1e1e1e;
  --bg-color-2: #121212;
  background: radial-gradient(
    circle at 80% 20%,
    var(--bg-color-1),
    var(--bg-color-2) 80%
  );
  transition: background 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(80px);
  transform: scale(1.2);
}
.volume-wrapper {
  width: 100%;
  max-width: 400px;
  margin-top: 15px;
}
.volume-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.volume-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.volume-icon:hover {
  color: white;
  transform: scale(1.1);
}
.volume-slider-container {
  position: relative;
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
}
.volume-progress {
  position: absolute;
  height: 100%;
  width: 70%;
  background: white;
  border-radius: 2px;
  transition: width 0.1s linear;
}
.volume-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.control-button.secondary.active {
  transform: scale(1.1);
  color: rgb(255, 255, 255);
}

.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
.tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition-delay: 0.5s;
}

.song-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.request-button {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 32px;
  font-size: 15px;
  font-weight: bold;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.request-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1002;
}
.request-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.request-popup {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  animation: popupEntrance 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  overflow: hidden;
}
.request-overlay.active .request-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@keyframes popupEntrance {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.2);
}
.request-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}
#close-request {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}
#close-request:hover {
  color: white;
  transform: rotate(90deg) scale(1.1);
}
#request-form {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
#request-form input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  font-size: 1rem;
  color: #f5f5f5;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
#request-form input[type="text"]:focus {
  border-color: #4fc3f7;
  box-shadow: 0 0 12px rgba(79, 195, 247, 0.6);
  outline: none;
}
#request-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4fc3f7, #ff00ff, #ff9900);
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
#request-submit-btn:hover:not(:disabled) {
  background-position: right center;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  transform: translateY(-2px);
}
#request-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#versionBox {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

#idle-popup {
  display: none !important;
}

.artist-songs-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  z-index: 1005;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.artist-songs-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.artist-songs-popup {
  background: rgba(10, 10, 10, 0.7);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  height: 70vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.artist-songs-popup-overlay.active .artist-songs-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.artist-songs-popup-header {
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#artist-popup-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.artist-popup-header-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}
#artist-popup-share-button {
  font-size: 1rem;
  padding: 10px;
}
.artist-popup-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
}
.artist-popup-close:hover {
  transform: scale(1.1) rotate(90deg);
  color: white;
}
.popup-main-content {
  display: grid;
  grid-template-columns: 3fr 5fr;
  height: 100%;
  overflow: hidden;
}
.popup-left-column {
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.artist-profile-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex-shrink: 0;
}
#artist-popup-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.1);
}
.artist-profile-info {
  margin-bottom: 20px;
}
#artist-popup-name {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}
#artist-popup-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  margin-top: 5px;
}
.artist-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  margin: 0 0 20px 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.artist-description-wrapper {
  margin-top: 10px;
}
#artist-popup-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}
.popup-right-column {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.popup-left-column::-webkit-scrollbar,
.popup-right-column::-webkit-scrollbar {
  width: 8px;
}
.popup-left-column::-webkit-scrollbar-track,
.popup-right-column::-webkit-scrollbar-track {
  background: transparent;
}
.popup-left-column::-webkit-scrollbar-thumb,
.popup-right-column::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.popup-left-column::-webkit-scrollbar-thumb:hover,
.popup-right-column::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}
#artist-songs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
li.popup-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
li.popup-list-header:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.popup-list-header h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.song-count-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}
.artist-song-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.artist-song-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.artist-song-item.current-in-list {
  background-color: rgba(255, 45, 85, 0.15) !important;
  border-left: 3px solid var(--primary-color);
  padding-left: 27px;
}
.artist-song-item img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
}
.artist-song-info {
  flex-grow: 1;
  min-width: 0;
  margin-right: 15px;
}
.artist-song-info h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist-song-info p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist-song-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}
.artist-song-play-count {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 70px;
  text-align: right;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.8);
}
.artist-song-play-count .fa-play {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.artist-song-duration {
  min-width: 40px;
  text-align: right;
}

@media (max-width: 600px) {
  .app-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .lyrics-panel {
    display: none;
  }
  .album-panel {
    padding: 20px;
  }
  .lyrics-line {
    font-size: 28px;
  }
  .popup-main-content {
    grid-template-columns: 1fr;
  }
  .popup-left-column {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .lossless-indicator {
    padding: 6px;
  }
  .lossless-indicator .lossless-icon {
    height: 12px;
    width: auto;
  }
}

/* ==========================================================================
   ÚJ SZEKCIÓ: YOUTUBE HÁTTÉRVIDEÓ
   ========================================================================== */
#video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    display: none;
    background-color: #000;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

#video-background-container.active {
    display: block;
    opacity: 1;
}

#video-background-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vw;
    height: 73.125vw;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}