.main-default-page .section-head{
  margin-bottom:18px;
}
.main-default-page .section-title{
  margin:0;
}

/* featured */
.featured-section {
  margin-bottom: 42px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.featured-card {
  position: relative;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.featured-bg {
  position: absolute;
  inset: 0;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.48) 45%, rgba(0,0,0,0.20) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
}

.featured-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 34px 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.featured-name a,
.artist-link,
.music-link{
  color:inherit;
  text-decoration:none;
}
.featured-name a:hover,
.artist-link:hover,
.music-link:hover{
  text-decoration:underline;
}
.featured-name {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.featured-desc {
  margin: 0;
  max-width: 92%;
  min-height: 56px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.btn-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e11111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(225,17,17,0.35);
}

.play-icon {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  margin-left: 2px;
}

.btn-more {
  min-width: 78px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 600;
}


/* recent section */
.recent-section {
  margin-top: 8px;
}

.section-title {
  margin: 0 0 26px;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.upload-table-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}

.upload-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.upload-table thead th {
  height: 54px;
  padding: 0 18px;
  background: rgba(0,0,0,0.58);
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.upload-table thead th.th-like {
  text-align: center;
}

.upload-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.upload-table tbody tr:nth-child(odd) {
  background: rgba(255,255,255,0.015);
}

.upload-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.10);
}

.upload-table tbody td {
  padding: 14px 18px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  vertical-align: middle;
}

.title-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.thumb {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 42px;
  background: #222;
}

.title-text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-pill {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.like-cell{text-align:center;}
.like-btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-width:78px;height:38px;padding:0 12px;border:1px solid #e5e5e5;border-radius:999px;background:#fff;color:#666;cursor:pointer;font-size:15px;}
.like-btn.active{border-color:#111;color:#111;font-weight:700;}
.like-btn:disabled{opacity:.65;cursor:wait;}
.empty-box,.empty-row{text-align:center;padding:40px 20px;color:#666;}

/* responsive */
@media (max-width: 1280px) {
  .section-title {
    font-size: 42px;
  }

  .featured-grid {
    gap: 18px;
  }

  .featured-content {
    padding: 26px 24px 22px;
  }

  .featured-name {
    font-size: 22px;
  }

  .featured-desc {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .upload-table-wrap {
    overflow-x: auto;
  }

  .upload-table {
    min-width: 980px;
  }
}

@media (max-width: 768px) {


  .section-title {
    font-size: 30px;
  }

  .featured-card {
    min-height: 200px;
  }

  .featured-name {
    font-size: 20px;
  }

  .featured-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {


  .section-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .featured-content {
    padding: 20px 18px 18px;
  }

  .btn-play {
    width: 38px;
    height: 38px;
  }

  .btn-more {
    min-width: 70px;
    height: 36px;
    font-size: 14px;
  }
}

.main-musicians, .main-music {
    margin: 40px 0;
}

.musician-list, .music-list {
    display: flex;
    gap: 20px;
}

.musician-card, .music-card {
    width: 200px;
}

.musician-img, .music-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.musician-name, .music-title {
    margin-top: 8px;
    font-weight: bold;
}