/* ============================================
   Header Styles (extracted from header.php)
   ============================================ */
/* ============================================
   Header - Two Row Layout với Focus Search
   ============================================ */
.lp-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd6 100%);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
  z-index: 1000;
}

/* Row 1: Logo + Navigation */
.lp-header__top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo */
.lp-header__brand a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.lp-header__brand a:hover {
  opacity: 0.9;
}

.lp-header__brand .logo-icon {
  font-size: 1.8rem;
}

/* Navigation Menu */
.lp-header__nav .lp-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.lp-header__nav .lp-header__menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp-header__nav .lp-header__menu a:hover,
.lp-header__nav .lp-header__menu .current-menu-item a {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Row 2: Search Form - FOCUS */
.lp-header__search-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px 20px;
}

.lp-search-form {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.lp-search-form:focus-within {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.lp-search-form__input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: transparent;
}

.lp-search-form__input::placeholder {
  color: #999;
}

.lp-search-form__button {
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.lp-search-form__button:hover {
  background: linear-gradient(135deg, #ee5a5a 0%, #e04949 100%);
}

.lp-search-form__button svg {
  width: 20px;
  height: 20px;
}

/* Search suggestions hint */
.lp-search-hint {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.lp-search-hint a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: all 0.2s;
}

.lp-search-hint a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Mobile Menu Toggle */
.lp-mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.lp-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.lp-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.lp-mobile-menu-toggle[aria-expanded="true"] .lp-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.lp-mobile-menu-toggle[aria-expanded="true"] .lp-hamburger span:nth-child(2) {
  opacity: 0;
}

.lp-mobile-menu-toggle[aria-expanded="true"] .lp-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
  .lp-header__nav .lp-header__menu {
    gap: 4px;
  }

  .lp-header__nav .lp-header__menu a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .lp-search-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lp-mobile-menu-toggle {
    display: block;
  }

  .lp-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #5f4dd6 0%, #4a3ab8 100%);
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .lp-header__nav.is-open {
    display: block;
  }

  .lp-header__nav .lp-header__menu {
    flex-direction: column;
    gap: 0;
  }

  .lp-header__nav .lp-header__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lp-header__nav .lp-header__menu li:last-child {
    border-bottom: none;
  }

  .lp-header__nav .lp-header__menu a {
    display: block;
    padding: 14px 0;
    border-radius: 0;
  }

  .lp-header__top {
    padding: 10px 15px;
    position: relative;
  }

  .lp-header__search-row {
    padding: 12px 15px 16px;
  }

  .lp-search-form {
    border-radius: 12px;
  }

  .lp-search-form__input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .lp-search-form__button {
    padding: 14px 20px;
  }

  .lp-search-form__button span {
    display: none;
  }

  .lp-search-form__button svg {
    width: 22px;
    height: 22px;
  }

  .lp-search-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp-header__brand a {
    font-size: 1.3rem;
  }

  .lp-header__brand .logo-icon {
    font-size: 1.5rem;
  }

  .lp-search-form__input {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .lp-search-form__button {
    padding: 12px 16px;
  }
}

/* ============================================
   Footer Styles (extracted from footer.php)
   ============================================ */
.lp-footer {
  background: #2d3436;
  color: #fff;
  padding: 24px 15px;
  text-align: center;
  margin-top: 40px;
}

.lp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Single Songs Styles (extracted from single-songs.php)
   ============================================ */
/* Breadcrumb Navigation */
.lp-breadcrumb {
  margin-bottom: 20px;
  padding: 12px 0;
  font-size: 0.9rem;
}

.lp-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.lp-breadcrumb__item {
  display: flex;
  align-items: center;
}

.lp-breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #999;
}

.lp-breadcrumb__item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-breadcrumb__item a:hover {
  color: #5f4dd6;
  text-decoration: underline;
}

.lp-breadcrumb__item--current span {
  color: #666;
}

.lp-song__container {
  /* Removed padding and margin - now handled by lp-single-layout */
}

.lp-song__title {
  font-size: 2.75rem;
  color: var(--primary-color);
  margin: 0 0 12px;
  line-height: 1.2;
}

.lp-song__meta {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lp-song__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-song__meta a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-song__meta a:hover {
  color: #5f4dd6;
  text-decoration: underline;
}

.lp-song__meta span + span::before {
  content: "•";
  display: inline-block;
  padding: 0 8px;
  color: #999;
}

.lp-song__content {
  padding-top: 20px;
}

.lp-song__youtube {
  margin-bottom: 32px;
}

.lp-song__lyrics-section {
  margin-bottom: 32px;
}

/* Lyrics Header with Toggle Button */
.lp-lyrics__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
}

.lp-lyrics__title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* Toggle Chords Button */
.lp-toggle-chords {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lp-toggle-chords:hover {
  background: #5a3dc9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(118, 78, 255, 0.3);
}

.lp-toggle-chords svg {
  flex-shrink: 0;
}

/* Hide chords when toggled */
.lp-chords-hidden .lp-chord {
  display: none;
}

/* Chord styling */
.lp-chord {
  color: var(--primary-color);
  font-weight: 600;
  font-family: monospace;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .lp-lyrics__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lp-lyrics__title {
    font-size: 1.3rem;
  }

  .lp-toggle-chords {
    align-self: flex-end;
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .lp-lyrics__title {
    font-size: 1.2rem;
  }

  .lp-toggle-chords {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .lp-toggle-chords svg {
    width: 16px;
    height: 16px;
  }
}

.lp-lyrics__content {
  line-height: 1.8;
  color: var(--text-color);
  white-space: pre-wrap;
  font-size: 1rem;
}

.lp-lyrics__content p {
  margin-bottom: 12px;
}

.lp-lyrics__original {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.lp-lyrics__translated {
  background: #f0f4ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #5f4dd6;
}

/* ============================================
   Social Share Section - Modern Design
   ============================================ */
.lp-social-share {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.lp-social-share::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.lp-social-share__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.lp-social-share__title::before {
  content: "🎵";
  font-size: 1.3rem;
}

.lp-social-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.lp-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.lp-social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.lp-social-btn:hover::before {
  left: 100%;
}

.lp-social-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.lp-social-btn:active {
  transform: translateY(0) scale(0.98);
}

.lp-social-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.lp-social-btn:hover svg {
  transform: scale(1.1);
}

.lp-social-btn--facebook {
  background: rgba(24, 119, 242, 0.9);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.lp-social-btn--facebook:hover {
  background: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
}

.lp-social-btn--twitter {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lp-social-btn--twitter:hover {
  background: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.lp-social-btn--whatsapp {
  background: rgba(37, 211, 102, 0.9);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.lp-social-btn--whatsapp:hover {
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.lp-social-btn--telegram {
  background: rgba(0, 136, 204, 0.9);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.lp-social-btn--telegram:hover {
  background: #0088cc;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.lp-social-btn--zalo {
  background: rgba(0, 106, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 106, 255, 0.4);
}

.lp-social-btn--zalo:hover {
  background: #006aff;
  box-shadow: 0 6px 20px rgba(0, 106, 255, 0.5);
}

.lp-social-btn--copy {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lp-social-btn--copy:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lp-social-btn--copy.copied {
  background: rgba(16, 185, 129, 0.9) !important;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .lp-social-share {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .lp-social-share__title {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .lp-social-share__buttons {
    gap: 10px;
  }

  .lp-social-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 25px;
  }

  .lp-social-btn span {
    display: none;
  }

  .lp-social-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .lp-social-share {
    padding: 20px 16px;
  }

  .lp-social-share__buttons {
    justify-content: center;
  }

  .lp-social-btn {
    padding: 12px;
    border-radius: 50%;
  }
}

/* Video Button */
.lp-video-button-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

.lp-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.lp-video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
  background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
}

.lp-video-btn:active {
  transform: translateY(-1px);
}

.lp-video-btn svg {
  flex-shrink: 0;
}

/* Video Modal */
.lp-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lp-video-modal--active {
  display: flex;
}

.lp-video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lp-video-modal__container {
  position: relative;
  width: 95%;
  max-width: 1400px;
  max-height: 90vh;
  z-index: 10000;
  animation: lpModalSlideIn 0.3s ease-out;
}

@keyframes lpModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lp-video-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.lp-video-modal__close:hover {
  background: rgba(255, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  transform: rotate(90deg) scale(1.1);
}

/* Modal Wrapper - 2 Column Layout */
.lp-video-modal__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  max-height: 90vh;
}

/* Video Section (Left) */
.lp-video-modal__video-section {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* Lyrics Section (Right) */
.lp-video-modal__lyrics-section {
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

.lp-video-modal__lyrics-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-bottom: 2px solid rgba(118, 78, 255, 0.3);
  flex-shrink: 0;
}

.lp-video-modal__lyrics-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.lp-video-modal__lyrics-title svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.lp-video-modal__lyrics-content {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.lp-video-modal__lyrics-content p {
  margin: 0 0 15px;
  white-space: pre-wrap;
}

.lp-video-modal__no-lyrics {
  color: #888;
  font-style: italic;
  text-align: center;
  padding: 40px 20px;
}

/* Custom Scrollbar for Lyrics */
.lp-video-modal__lyrics-content::-webkit-scrollbar {
  width: 8px;
}

.lp-video-modal__lyrics-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.lp-video-modal__lyrics-content::-webkit-scrollbar-thumb {
  background: rgba(118, 78, 255, 0.5);
  border-radius: 4px;
}

.lp-video-modal__lyrics-content::-webkit-scrollbar-thumb:hover {
  background: rgba(118, 78, 255, 0.7);
}

/* Video Player */
.lp-video-player {
  background: #000;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  width: 100%;
}

.lp-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Input Form */
.lp-video-input {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
}

.lp-video-input__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
}

.lp-video-input__title svg {
  color: #ff0000;
}

.lp-video-input__desc {
  font-size: 1rem;
  color: #aaa;
  margin: 0 0 30px;
}

.lp-video-input__form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.lp-video-input__field {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.lp-video-input__field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #ff0000;
}

.lp-video-input__field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lp-video-input__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lp-video-input__btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.lp-video-input__note {
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 15px;
}

.lp-video-input__note strong {
  color: #aaa;
}

.lp-video-input__disclaimer {
  font-size: 0.85rem;
  color: #ffa500;
  background: rgba(255, 165, 0, 0.1);
  padding: 10px 15px;
  border-radius: 6px;
  border-left: 3px solid #ffa500;
  margin: 15px 0 0;
  line-height: 1.5;
}

/* Video Saving/Saved Notifications */
.lp-video-saving,
.lp-video-saved {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 10003;
  animation: lpFadeInUp 0.3s ease-out;
}

.lp-video-saving {
  background: rgba(255, 165, 0, 0.95);
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.lp-video-saved {
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

@keyframes lpFadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
  .lp-video-modal__wrapper {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .lp-video-modal__lyrics-section {
    max-height: 400px;
  }

  .lp-video-modal__video-section {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .lp-video-modal__container {
    width: 98%;
    max-height: 95vh;
  }

  .lp-video-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lp-video-saving,
  .lp-video-saved {
    bottom: 10px;
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .lp-video-modal__wrapper {
    border-radius: 8px;
  }

  .lp-video-modal__lyrics-header {
    padding: 15px 20px;
  }

  .lp-video-modal__lyrics-title {
    font-size: 1.1rem;
  }

  .lp-video-modal__lyrics-content {
    padding: 20px;
    font-size: 0.9rem;
    max-height: 300px;
  }

  .lp-video-input {
    padding: 40px 20px;
  }

  .lp-video-input__title {
    font-size: 1.4rem;
  }

  .lp-video-input__form {
    flex-direction: column;
  }

  .lp-video-input__disclaimer {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .lp-video-input__btn {
    width: 100%;
    justify-content: center;
  }

  .lp-video-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .lp-video-modal__video-section {
    min-height: 250px;
  }

  .lp-video-player {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .lp-video-modal__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .lp-video-modal__lyrics-content {
    padding: 15px;
    font-size: 0.85rem;
    max-height: 250px;
  }

  .lp-video-modal__lyrics-header {
    padding: 12px 15px;
  }

  .lp-video-input {
    padding: 30px 15px;
  }

  .lp-video-input__disclaimer {
    font-size: 0.75rem;
    padding: 6px 10px;
    margin: 10px 0 0;
  }

  .lp-video-player {
    min-height: 200px;
  }

  .lp-video-saving,
  .lp-video-saved {
    bottom: 8px;
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* Facebook Comments */
.lp-facebook-comments {
  margin-top: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lp-comments__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 25px;
}

.lp-comments__title .lp-title-icon {
  font-size: 1.75rem;
}

.fb-comments,
.fb-comments iframe[style],
.fb-comments span {
  width: 100% !important;
}

@media (max-width: 768px) {
  .lp-facebook-comments {
    padding: 20px 15px;
  }

  .lp-comments__title {
    font-size: 1.5rem;
  }
}

.lp-song__related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
}

.lp-related__title {
  margin: 0 0 24px;
  font-size: 1.5rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-related__icon {
  font-size: 1.75rem;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.lp-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-related__list-item {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.lp-related__list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.lp-related__list-item:hover::before {
  transform: translateX(4px);
}

.lp-related__list-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.lp-related__list-link:hover {
  color: #5f4dd6;
  text-decoration: underline;
  transform: translateX(2px);
}

/* Two Column Layout */
.lp-single-layout {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.lp-single-main {
  flex: 1;
  min-width: 0;
}

.lp-single-sidebar {
  width: 320px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .lp-single-layout {
    flex-direction: column;
  }

  .lp-single-sidebar {
    width: 100%;
  }
}
