.epic-main-page {
    padding: 2rem 0;
    max-width: 1320px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

/* ==================== */
/* EPIC CLIPS PAGE */
/* ==================== */

.epic-clips-page {
  padding: 2rem 0;
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

.page-description {
  max-width: 600px;
  margin: 1rem auto;
  color: #555;
  line-height: 1.6;
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.clip-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clip-card:hover {
  /* transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); */
}

.clip-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.clip-thumbnail {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.clip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clip-card:hover .clip-image {
  transform: scale(1.05);
}

.clip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 40%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clip-card:hover .clip-overlay {
  opacity: 1;
}

.clip-duration {
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.9rem;
  z-index: 2;
}

.clip-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('/images/misc/play-button.png') no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.clip-card:hover .clip-play-icon {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1.1);
}

.clip-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.clip-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.3;
}

.clip-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.clip-song {
  font-weight: 500;
  color: #3a4a6b;
}

.clip-description {
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.clip-stats {
  font-size: 0.9rem;
  color: #888;
  margin-top: auto;
}

.clip-views::before {
  /* content: "👁 "; */
}

.no-clips-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background: #f9f9f9;
  border-radius: 10px;
  color: #666;
}

.btn-load-more {
  display: block;
  margin: 2rem auto 0;
  padding: 0.8rem 2rem;
  background: #3a4a6b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-load-more:hover {
  background: #2a3a5b;
  transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 1320px) {
  .epic-clips-page {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .clips-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0;
  }
  
  .clip-thumbnail {
    height: 150px;
  }
  
  .clip-info {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .clips-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .page-header {
    margin-bottom: 2rem;
  }
  
  .clip-play-icon {
    width: 50px;
    height: 50px;
  }
}

/* Хлебные крошки */
.breadcrumbs {
  padding: 1rem 5px;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumbs a {
  color: #3a4a6b;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #2a3a5b;
  text-decoration: underline;
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: #999;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 500;
}

/* Навигация в сайдбаре */
.sidebar-nav {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.sidebar-title {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: #333;
}

.all-clips-link,
.epic-home-link {
  display: flex;
  align-items: center;
  color: #3a4a6b;
  text-decoration: none;
  padding: 0.7rem;
  margin-bottom: 0;
  border-radius: 5px;
  transition: all 0.2s;
}

.all-clips-link:hover,
.epic-home-link:hover {
  background: white;
  color: #2a3a5b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.all-clips-link svg,
.epic-home-link svg {
  margin-right: 0.7rem;
}