/* --- Music Control CSS --- */
/* 이 CSS는 style.css 파일로 옮기는 것이 좋습니다. */
.music-control-container {
  margin-left: 20px;
  /* 헤더 링크들과의 간격 조정 */
  display: flex;
  align-items: center;
}

.music-control {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  /* 아이콘 크기 조정 */
  color: #333;
  /* 아이콘 색상 (기존 디자인에 맞춰 조정) */
  padding: 5px;
}

.music-control .icon-pause {
  display: none;
  /* 일시정지 아이콘 기본 숨김 */
}

.music-control.music-playing .icon-play {
  display: none;
  /* 음악 재생 중일 때 재생 아이콘 숨김 */
}

.music-control.music-playing .icon-pause {
  display: inline;
  /* 음악 재생 중일 때 일시정지 아이콘 표시 */
}

/* 커스텀 스타일 */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* 애니메이션 */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* 카드 호버 효과 */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 버튼 스타일 */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 네비게이션 그림자 */
nav {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 로딩 스피너 */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 카테고리 필터 활성화 상태 */
.category-filter.active {
  transform: scale(1.05);
}

/* 상품 카드 이미지 */
.product-image {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* 강의 카드 스타일 */
.course-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* 폼 입력 필드 포커스 */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

/* 사용자 드롭다운 */
#user-dropdown {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

/* 장바구니 뱃지 */
#cart-count {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* 반응형 그리드 */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .md\\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .md\\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .md\\:grid-cols-3,
  .lg\\:grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 텍스트 라인 클램프 */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 유튜브 플레이어 스타일 */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 강의 카드 호버 효과 */
.course-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 로딩 상태 개선 */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* 풀스크린 비디오 페이지 */
.fullscreen-video {
  background: #000;
  min-height: 100vh;
}

/* Udemy 스타일 강의 페이지 */
.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.section-content.expanded {
  max-height: 1000px;
  /* 충분히 큰 값 */
}

/* 강의 커리큘럼 스타일 */
.curriculum-section {
  transition: all 0.3s ease;
}

.curriculum-section.collapsed .section-content {
  display: none;
}

.curriculum-lesson:hover {
  background-color: rgba(75, 85, 99, 0.5);
}

/* 진도 표시 */
.progress-bar {
  background: linear-gradient(
    90deg,
    #10b981 0%,
    #10b981 var(--progress, 0%),
    #374151 var(--progress, 0%),
    #374151 100%
  );
  height: 4px;
  border-radius: 2px;
}

/* 플레이리스트 스타일 */
.playlist-item.active {
  background-color: #7c3aed;
  color: white;
}

.playlist-item.locked {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 반응형 플레이리스트 */
@media (max-width: 1024px) {
  #course-playlist {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    z-index: 50;
    transition: right 0.3s ease;
    width: 100vw;
    max-width: 400px;
  }

  #course-playlist.show {
    right: 0;
  }
}

/* 강의 카드 개선 */
.course-card-udemy {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card-udemy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 강의 상세 페이지 스타일 */
.course-header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.course-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 섹션 아코디언 애니메이션 */
.rotate-180 {
  transform: rotate(180deg);
}

/* 커스텀 스크롤바 (플레이리스트용) */
.playlist-scroll::-webkit-scrollbar {
  width: 4px;
}

.playlist-scroll::-webkit-scrollbar-track {
  background: #374151;
}

.playlist-scroll::-webkit-scrollbar-thumb {
  background: #6b7280;
  border-radius: 2px;
}

.playlist-scroll::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* --- End Music Control CSS --- */
.video-item {
  padding: 12px;
  background-color: #e5e7eb;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 12px;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
}
.video-item-title {
  font-weight: bold;
  margin-bottom: 4px;
}
.video-item-text {
  font-size: 14px;
}
.video-item-minute {
  margin-top: 2px;
  font-size: 14px;
}
