@charset "UTF-8";
body {
  display: flex;
  justify-content: center;
  font-family: "Pretendard";
  height: 100vh;
  overflow: hidden;
}

.page {
  width: 100%;
  max-width: 480px;
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow-y: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  box-sizing: border-box;
}

/* NAV */
nav {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem 0 1.25rem;
  top: 0;
  z-index: 100;
  position: relative;
}
nav.play {
  padding: 0 0.75rem;
}
nav.title {
  position: relative;
  justify-content: flex-start;
}
nav.title .nav-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 700;
  line-height: 160%;
  font-size: 1.125rem;
}
nav .logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
nav .nav-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .nav-icon img {
  width: 1.5rem;
}
nav .nav-back {
  background: none;
  border: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
nav .nav-back img {
  width: 100%;
}

.section {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.section::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.section .contents {
  flex: 1;
}

/* CAROUSEL */
.carousel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}
.carousel-wrap .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-wrap .carousel-track .carousel-slide {
  min-width: 100%;
  height: 100%;
}
.carousel-wrap .carousel-track .carousel-slide .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e2e 0%, #2a1a2e 40%, #1a2a1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}
.carousel-wrap .carousel-track .carousel-slide .placeholder-img::after {
  position: absolute;
  content: "";
  height: 7.5rem;
  width: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111 90%);
  bottom: 0;
}
.carousel-wrap .carousel-track .carousel-slide .placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-wrap .carousel-dots {
  position: absolute;
  bottom: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.carousel-wrap .carousel-dots .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.carousel-wrap .carousel-dots .dot::after {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
  display: block;
}
.carousel-wrap .carousel-dots .dot.active::after {
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  margin-top: -2px;
  border-radius: 50%;
}
.carousel-wrap .cta-section {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
}
.carousel-wrap .cta-section .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.carousel-wrap .cta-section .cta-btn .cta-coin {
  margin: 0 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.carousel-wrap .cta-section .cta-btn .cta-coin img {
  width: 1.5rem;
  display: flex;
}
.carousel-wrap .cta-section .cta-btn .cta-badge {
  position: absolute;
  right: -0.5rem;
  top: -1rem;
  background: #111;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0.125rem 0.5rem;
  border-radius: 0.5rem;
  white-space: pre;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.carousel-wrap .cta-section .cta-btn .cta-badge span {
  color: #53ffa0;
  font-weight: 700;
}

/* CONTENT */
.content {
  padding: 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.content .artist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.content .artist-header .artist-name {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
  flex: 1;
}
.content .artist-header .share-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  border: none;
  background: none;
  margin-left: 12px;
}
.content .artist-header .share-btn img {
  width: 1.5rem;
}
.content .album-card {
  display: flex;
  align-items: center;
  height: 4rem;
  background: #000;
}
.content .album-card .album-cover {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  flex-shrink: 0;
  overflow: hidden;
}
.content .album-card .album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .album-card .album-info {
  flex: 1;
  overflow: hidden;
  padding: 0.5rem 1rem;
}
.content .album-card .album-info .album-title {
  font-size: 1rem;
  color: #dedede;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  line-height: 140%;
  text-overflow: ellipsis;
}
.content .album-card .album-info .album-sub {
  font-size: 0.875rem;
  color: #777;
  line-height: 140%;
}
.content .desc-section .desc-text {
  font-size: 15px;
  line-height: 160%;
  color: #777;
  overflow: hidden;
  max-height: 4.5rem; /* 3줄 */
  transition: max-height 0.4s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
}
.content .desc-section .desc-text.expanded {
  max-height: 999px;
  -webkit-line-clamp: none;
}
.content .desc-section .more-btn {
  background: none;
  border: none;
  color: #777;
  font-size: 15px;
  cursor: pointer;
  font-weight: 400;
  line-height: 160%;
  padding: 4px 0;
  text-decoration: underline;
}
.content .links-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.content .links-section .link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  height: 2rem;
  text-decoration: none;
  color: #fff;
}
.content .links-section .link-item .link-icon {
  width: 1.25rem;
}
.content .links-section .link-item .link-icon img {
  width: 100%;
}
.content .links-section .link-item .link-label {
  font-size: 15px;
  color: #dedede;
  font-weight: 400;
}

footer {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  flex-shrink: 0;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background: #1b1b1b;
}
footer .footer-brand {
  font-size: 13px;
  color: #dedede;
  font-weight: 400;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  height: 3rem;
  cursor: pointer;
}
footer .footer-brand span {
  width: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-brand span img {
  width: 100%;
}
footer .footer-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: underline;
  color: #777;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.reward-box {
  padding: 1rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reward-box .progress-bar {
  width: 100%;
  height: 0.25rem;
  background: #343434;
  border-radius: 0.125rem;
  overflow: hidden;
}
.reward-box .progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background: #53ffa0;
  border-radius: 0.125rem;
  transition: width 1s linear;
}
.reward-box .reward-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.reward-box .reward-section .reward-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.reward-box .reward-section .reward-left .reward-time {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  color: #fff;
}
.reward-box .reward-section .reward-left .reward-time span {
  padding-right: 0.25rem;
  font-weight: 700;
}
.reward-box .reward-section .reward-left .reward-meta {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.4;
}
.reward-box .reward-section .reward-right {
  display: flex;
  align-items: center;
}
.reward-box .reward-section .reward-right .reward-coin-img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.reward-box .reward-section .reward-right .reward-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
}

.page--login {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.page--login .login-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page--login .login-main .login-headline {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.25rem 1.5rem;
}
.page--login .login-main .login-headline h2 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.page--login .login-main .login-headline .login-title {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.page--login .login-main .login-headline .login-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
.page--login .login-main .login-headline .login-benefits li {
  font-size: 1rem;
  color: #777;
  line-height: 160%;
  font-weight: 400;
}
.page--login .login-main .login-headline .login-benefits li .point-text {
  color: #53ffa0;
}
.page--login .login-main .login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem 2.5rem;
}
.page--login .login-main .login-buttons .login-btn {
  width: 100%;
  height: 3rem;
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.15s, transform 0.1s;
}
.page--login .login-main .login-buttons .login-btn .login-btn-icon {
  position: absolute;
  left: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page--login .login-main .login-buttons .login-btn .login-btn-icon img {
  width: 1.5rem;
}
.page--login .login-main .login-buttons .login-btn.login-btn--kakao {
  background: #FEE500;
  color: #1f1f1f;
}
.page--login .login-main .login-buttons .login-btn.login-btn--naver {
  background: #03C75A;
  color: #fff;
}
.page--login .login-main .login-buttons .login-btn.login-btn--google {
  background: #fff;
  color: #1f1f1f;
}

.page--add-info {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.page--add-info .add-info-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page--add-info .add-info-main .add-info-body {
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.page--add-info .add-info-main .add-info-body .add-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 140%;
}
.page--add-info .add-info-main .add-info-body .add-info-title .point-text {
  color: #53ffa0;
}
.page--add-info .add-info-main .add-info-body .form-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.page--add-info .add-info-main .add-info-body .form-row .input-wrap {
  flex: 1;
}
.page--add-info .add-info-main .add-info-body .form-row .input-wrap .form-input {
  width: 100%;
  height: 3rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid #1b1b1b;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 400;
  outline: none;
  padding: 0 0.25rem;
  caret-color: #fff;
}
.page--add-info .add-info-main .add-info-body .form-row .input-wrap .form-input::placeholder {
  color: #777;
}
.page--add-info .add-info-main .add-info-body .form-row .input-wrap .form-input:focus {
  border-bottom-color: #fff;
}
.page--add-info .add-info-main .add-info-body .form-row .gender-wrap {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}
.page--add-info .add-info-main .add-info-body .form-row .gender-wrap .gender-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid #1b1b1b;
  background: transparent;
  color: #777;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.page--add-info .add-info-main .add-info-body .form-row .gender-wrap .gender-btn.active {
  border-color: #fff;
  color: #fff;
  font-weight: 700;
}
.page--add-info .add-info-main .add-info-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  padding: 1.5rem 1.25rem 2.5rem 1.25rem;
}
.page--add-info .add-info-main .add-info-actions .btn-submit {
  width: 100%;
  height: 3rem;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 160%;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.page--add-info .add-info-main .add-info-actions .btn-submit:disabled {
  background: #343434;
  color: #777;
  cursor: auto;
}
.page--add-info .add-info-main .add-info-actions .btn-later {
  width: 100%;
  height: 3rem;
  background: none;
  border: none;
  color: #777;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0.75rem 0;
}

.mypage {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* 유저 헤더 */
}
.mypage .my-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mypage .my-header .user-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #dedede;
  line-height: 160%;
}
.mypage .my-header .user-name span {
  color: #fff;
  font-weight: 700;
}
.mypage .my-header .user-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #777;
  font-weight: 400;
}
.mypage .my-header .user-meta .kakao-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: #FEE500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .my-header .user-meta .kakao-icon img {
  width: 100%;
}

/* 포인트 적립 배너 */
.point-banner {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #1b1b1b;
  height: 3rem;
  transition: background 0.2s;
}
.point-banner .banner-text {
  font-size: 0.875rem;
  color: #dedede;
  font-weight: 400;
}
.point-banner .banner-text strong {
  color: #53ffa0;
  font-weight: 700;
}

/* 포인트 카드 */
.point-card {
  background: #000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.point-card .card-label {
  font-size: 0.875rem;
  color: #777;
  font-weight: 400;
  line-height: 160%;
  padding-left: 0.25rem;
}
.point-card .card-amount {
  display: flex;
  align-items: center;
}
.point-card .card-amount .coin-icon {
  width: 2rem;
  height: 2rem;
}
.point-card .card-amount .coin-icon img {
  width: 100%;
}
.point-card .card-amount .amount-value {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 160%;
}
.point-card .withdraw-btn {
  margin-top: 1rem;
  width: 100%;
  height: 3rem;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.1s;
}

.card-notice {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #777;
  gap: 0.25rem;
}
.card-notice .notice-icon {
  width: 1rem;
}
.card-notice .notice-icon img {
  width: 100%;
}

/* 포인트 내역 */
.history-section {
  padding: 1.5rem 1.25rem;
}
.history-section.history-view {
  padding: 0 1.25rem 5rem;
}
.history-section .history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.5rem;
}
.history-section .history-header .history-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.history-section .history-header .more-link {
  font-size: 0.875rem;
  height: 3rem;
  color: #777;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s;
}
.history-section .history-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1b1b1b;
}
.history-section .history-list .history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #1b1b1b;
}
.history-section .history-list .history-item .item-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.history-section .history-list .history-item .item-left .item-name {
  font-size: 15px;
  color: #dedede;
  font-weight: 400;
  line-height: 140%;
}
.history-section .history-list .history-item .item-left .item-date {
  font-size: 0.875rem;
  color: #777;
  line-height: 140%;
  font-weight: 400;
}
.history-section .history-list .history-item .item-right {
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
  white-space: nowrap;
}
.history-section .history-list .history-item .item-right.negative {
  color: #777;
}
.history-section .history-list .history-item .item-right.positive {
  color: #53ffa0;
}

/* ===== 로딩 스피너 ===== */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0;
}
.loading-spinner .spinner {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #1b1b1b;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* 로그아웃 */
.logout-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem 2.5rem;
}
.logout-section .logout-btn {
  background: none;
  border: none;
  padding: 0.75rem;
  height: 3rem;
  color: #777;
  font-weight: 700;
  flex: 1 0 0;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.15s;
}

/* ===== 맨 위로 버튼 ===== */
.scroll-top-btn {
  position: absolute;
  bottom: 2rem;
  right: 0.75rem; /* max-width 480px 기준 오른쪽 20px */
  width: 3.5rem;
  height: 3.5rem;
  background: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn svg {
  color: #dedede;
}

.divider-line {
  width: 100%;
  height: 0.625rem;
  background: #1b1b1b;
}

/* 히어로 섹션 */
.hero-section {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-section .hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
}
.hero-section {
  /* 혜택 리스트 */
}
.hero-section .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem 0;
  list-style: none;
}
.hero-section .benefit-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-section .benefit-list .benefit-item .benefit-num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(83, 255, 160, 0.05);
  color: #53ffa0;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-section .benefit-list .benefit-item .benefit-text {
  font-size: 15px;
  color: #dedede;
  font-weight: 400;
  line-height: 160%;
}
.hero-section .benefit-list .benefit-item .benefit-text strong {
  color: #53ffa0;
  font-weight: 700;
}
.hero-section {
  /* CTA 버튼 */
}
.hero-section .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.hero-section .cta-btn:active {
  opacity: 0.85;
}

/* 영상 리스트 섹션 */
.video-list-section {
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-list-section .section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
}
.video-list-section .section-title .point-text {
  color: #53ffa0;
  font-weight: 700;
}
.video-list-section .video-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* 영상 아이템 */
}
.video-list-section .video-list .video-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #000;
}
.video-list-section .video-list .video-item:last-child {
  border-bottom: none;
}
.video-list-section .video-list .video-item .video-thumb {
  width: 6.375rem;
  height: 6.375rem;
  flex-shrink: 0;
  overflow: hidden;
  background: #343434;
  position: relative;
}
.video-list-section .video-list .video-item .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-list-section .video-list .video-item .video-thumb {
  /* 이미지 없을 때 플레이스홀더 */
}
.video-list-section .video-list .video-item .video-thumb.no-img {
  background: linear-gradient(135deg, #1e1e2e 0%, #2a1a2e 40%, #1a2a1e 100%);
}
.video-list-section .video-list .video-item .video-thumb.no-img::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.2);
}
.video-list-section .video-list .video-item .video-info {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.875rem 1rem;
}
.video-list-section .video-list .video-item .video-info .video-title {
  font-size: 1rem;
  font-weight: 400;
  color: #dedede;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 140%;
}
.video-list-section .video-list .video-item .video-info .video-artist {
  font-size: 0.875rem;
  color: #777;
  line-height: 140%;
}
.video-list-section .video-list .video-item .video-info .video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.video-list-section .video-list .video-item .video-info .video-meta .video-point {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.video-list-section .video-list .video-item .video-info .video-meta .video-point .point-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 160%;
}
.video-list-section .video-list .video-item .video-info .video-meta .video-point .point-val img {
  width: 1.125rem;
}
.video-list-section .video-list .video-item .video-info .video-meta .video-badge {
  font-size: 13px;
  font-weight: 400;
  color: #dedede;
}
.video-list-section .video-list .video-item .video-info .video-meta .video-badge span {
  font-weight: 700;
  color: #53ffa0;
  font-weight: 700;
}
.video-list-section {
  /* 리스트 안내 문구 */
}
.video-list-section .list-notice {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #777;
  line-height: 160%;
}
.video-list-section .list-notice img {
  flex-shrink: 0;
  width: 1rem;
}

/* hero-section--empty: 마감된 캠페인 상태 */
.hero-section--empty {
  padding: 3rem 1.25rem 3rem;
  justify-content: center;
}
.hero-section--empty .empty-hero {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-section--empty .empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
}
.hero-section--empty .empty-desc {
  font-size: 15px;
  color: #777;
  line-height: 160%;
  font-weight: 400;
}

/* ===== 포인트 적립 팝업 ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.popup-overlay.show {
  display: flex;
}
.popup-overlay .popup-sheet {
  position: relative;
  width: 90%;
  max-width: 22.5rem;
  background: #111;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-overlay .popup-sheet.is-full {
  width: 100%;
}
.popup-overlay .popup-sheet .popup-body {
  padding: 2.5rem 2rem;
  width: 100%;
  border-bottom: 1px solid #1b1b1b;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.popup-overlay .popup-sheet .popup-body.popup-body--point .popup-point {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-overlay .popup-sheet .popup-body.popup-body--point .popup-point .popup-coin {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
}
.popup-overlay .popup-sheet .popup-body.popup-body--point .popup-point .popup-coin img {
  width: 1.5rem;
  height: 1.5rem;
}
.popup-overlay .popup-sheet .popup-body.popup-body--point .popup-point {
  /* 안내 문구 */
}
.popup-overlay .popup-sheet .popup-body.popup-body--point .popup-point .popup-desc {
  font-size: 15px;
  color: #777;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}
.popup-overlay .popup-sheet .popup-body {
  /* 포인트 금액 */
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-icon img {
  width: 100%;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning {
  /* 제목 */
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning {
  /* 본문 설명 */
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-desc {
  font-size: 15px;
  color: #777;
  font-weight: 400;
  line-height: 160%;
  text-align: left;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning {
  /* 주의 박스 */
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-caution {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid #1b1b1b;
  padding-top: 1rem;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-caution .popup-caution-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #53ffa0;
  line-height: 160%;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-caution .popup-caution-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-caution .popup-caution-list li {
  font-size: 0.875rem;
  color: #777;
  font-weight: 400;
  line-height: 160%;
  padding-left: 0.75rem;
  position: relative;
  letter-spacing: -0.28px;
}
.popup-overlay .popup-sheet .popup-body.popup-body--warning .popup-caution .popup-caution-list li::before {
  content: "";
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  left: 0;
  background: #777;
  top: 50%;
  transform: translateY(-50%);
}
.popup-overlay .popup-sheet {
  /* 버튼 */
}
.popup-overlay .popup-sheet .popup-btn {
  width: 100%;
  height: 3rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

/*# sourceMappingURL=style.css.map */
