/* ============================================
   DY Selects - 抖阴精选 主样式表
   CSS/ID前缀: ds-
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ds-primary: #FFFFFF;
  --ds-secondary: #000000;
  --ds-accent-magenta: #FF00FF;
  --ds-accent-cyan: #00FFFF;
  --ds-text: #1A1A1A;
  --ds-link: #007BFF;
  --ds-gray-light: #F5F5F5;
  --ds-gray-mid: #999999;
  --ds-gray-border: #EEEEEE;
  --ds-gradient: linear-gradient(135deg, #FF00FF, #00FFFF);
  --ds-gradient-h: linear-gradient(90deg, #FF00FF, #00FFFF);
  --ds-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --ds-shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
  --ds-radius: 12px;
  --ds-radius-sm: 8px;
  --ds-font-title: "PingFang SC", "Helvetica Neue", sans-serif;
  --ds-font-body: "Roboto", sans-serif;
  --ds-max-width: 1440px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ds-font-body);
  color: var(--ds-text);
  background: var(--ds-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--ds-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ds-accent-magenta);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ds-font-title);
  font-weight: 600;
  line-height: 1.3;
}

.ds-container {
  width: 100%;
  max-width: var(--ds-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 干扰码隐藏 --- */
.feed-jammer-block {
  display: none;
}

/* --- Header / Navigation --- */
#ds-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--ds-gray-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

#ds-header.ds-header-hidden {
  transform: translateY(-100%);
}

.ds-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--ds-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.ds-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ds-font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ds-text);
}

.ds-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.ds-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.ds-nav-links li {
  position: relative;
}

.ds-nav-links a {
  display: block;
  padding: 18px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ds-text);
  transition: color 0.2s;
}

.ds-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--ds-gradient-h);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.ds-nav-links a:hover::after,
.ds-nav-links a.ds-active::after {
  transform: scaleX(1);
}

.ds-nav-links a:hover,
.ds-nav-links a.ds-active {
  color: var(--ds-accent-magenta);
}

.ds-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.ds-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ds-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Mobile Nav --- */
@media (max-width: 768px) {
  .ds-nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ds-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .ds-nav-links.ds-nav-open {
    transform: translateX(0);
  }

  .ds-nav-links a {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--ds-gray-border);
  }

  .ds-nav-links a::after {
    display: none;
  }

  .ds-hamburger {
    display: flex;
  }
}

/* --- Main Content Area --- */
.ds-main {
  padding-top: 60px;
}

/* --- Section Base --- */
.ds-section {
  padding: 48px 0;
}

.ds-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.ds-section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--ds-gradient-h);
  border-radius: 2px;
}

.ds-section-subtitle {
  font-size: 0.95rem;
  color: var(--ds-gray-mid);
  margin-bottom: 32px;
}

/* --- Video Card Grid (Waterfall/Feed) --- */
.ds-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .ds-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ds-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.ds-video-card {
  background: var(--ds-primary);
  border-radius: var(--ds-radius);
  overflow: hidden;
  box-shadow: var(--ds-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  animation: ds-fadeInUp 0.5s ease both;
}

.ds-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ds-shadow-hover);
}

.ds-video-card:nth-child(1) { animation-delay: 0.05s; }
.ds-video-card:nth-child(2) { animation-delay: 0.1s; }
.ds-video-card:nth-child(3) { animation-delay: 0.15s; }
.ds-video-card:nth-child(4) { animation-delay: 0.2s; }
.ds-video-card:nth-child(5) { animation-delay: 0.25s; }
.ds-video-card:nth-child(6) { animation-delay: 0.3s; }
.ds-video-card:nth-child(7) { animation-delay: 0.35s; }
.ds-video-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes ds-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ds-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.ds-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ds-video-card:hover .ds-card-thumb img {
  transform: scale(1.05);
}

.ds-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ds-video-card:hover .ds-card-play {
  opacity: 1;
}

.ds-card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 3px;
}

.ds-card-stats {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 12px;
  color: #fff;
  font-size: 0.75rem;
}

.ds-card-stats span {
  display: flex;
  align-items: center;
  gap: 3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.ds-card-info {
  padding: 10px 12px;
}

.ds-card-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.ds-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--ds-gray-mid);
}

.ds-card-author img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.ds-card-bgm {
  font-size: 0.7rem;
  color: var(--ds-gray-mid);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Challenge Cards (Horizontal Scroll) --- */
.ds-challenge-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ds-challenge-scroll::-webkit-scrollbar {
  height: 4px;
}

.ds-challenge-scroll::-webkit-scrollbar-track {
  background: var(--ds-gray-border);
  border-radius: 2px;
}

.ds-challenge-scroll::-webkit-scrollbar-thumb {
  background: var(--ds-gradient-h);
  border-radius: 2px;
}

.ds-challenge-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--ds-radius);
  overflow: hidden;
  box-shadow: var(--ds-shadow);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.ds-challenge-card:hover {
  transform: translateY(-3px);
}

.ds-challenge-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ds-challenge-body {
  padding: 12px 14px;
}

.ds-challenge-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--ds-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 6px;
}

.ds-challenge-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.ds-challenge-meta {
  font-size: 0.75rem;
  color: var(--ds-gray-mid);
}

/* --- Creator Rankings --- */
.ds-ranking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ds-ranking-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--ds-primary);
  border-radius: var(--ds-radius-sm);
  box-shadow: var(--ds-shadow);
  transition: transform 0.2s ease;
}

.ds-ranking-item:hover {
  transform: translateX(4px);
}

.ds-ranking-num {
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
  background: var(--ds-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-ranking-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ds-gray-border);
}

.ds-ranking-info {
  flex: 1;
}

.ds-ranking-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.ds-ranking-heat {
  font-size: 0.75rem;
  color: var(--ds-gray-mid);
}

.ds-btn-follow {
  padding: 6px 16px;
  background: var(--ds-gradient);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.ds-btn-follow:hover {
  opacity: 0.9;
}

.ds-btn-follow:active {
  transform: scale(0.95);
}

/* --- Upload Section --- */
.ds-upload-zone {
  border: 2px dashed var(--ds-gray-border);
  border-radius: var(--ds-radius);
  padding: 60px 20px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.ds-upload-zone:hover {
  border-color: var(--ds-accent-magenta);
  background: rgba(255,0,255,0.02);
}

.ds-upload-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--ds-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.ds-upload-text {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.ds-upload-hint {
  font-size: 0.8rem;
  color: var(--ds-gray-mid);
}

/* --- BGM Library --- */
.ds-bgm-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ds-bgm-tab {
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid var(--ds-gray-border);
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--ds-font-body);
}

.ds-bgm-tab:hover,
.ds-bgm-tab.ds-active {
  background: var(--ds-gradient);
  color: #fff;
  border-color: transparent;
}

.ds-bgm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-bgm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--ds-gray-light);
  border-radius: var(--ds-radius-sm);
  transition: background 0.2s ease;
}

.ds-bgm-item:hover {
  background: var(--ds-gray-border);
}

.ds-bgm-cover {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.ds-bgm-info {
  flex: 1;
}

.ds-bgm-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.ds-bgm-artist {
  font-size: 0.75rem;
  color: var(--ds-gray-mid);
}

.ds-btn-use {
  padding: 5px 14px;
  background: var(--ds-secondary);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.ds-btn-use:hover {
  opacity: 0.8;
}

/* --- Topic Tags --- */
.ds-topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--ds-gray-light);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--ds-text);
  transition: all 0.2s ease;
  cursor: pointer;
}

.ds-topic-tag:hover {
  background: var(--ds-gradient);
  color: #fff;
}

.ds-topic-tag .ds-topic-count {
  font-size: 0.7rem;
  color: var(--ds-gray-mid);
}

.ds-topic-tag:hover .ds-topic-count {
  color: rgba(255,255,255,0.8);
}

/* --- Creator Fund --- */
.ds-fund-banner {
  background: var(--ds-gradient);
  border-radius: var(--ds-radius);
  padding: 40px 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .ds-fund-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }
}

.ds-fund-text {
  flex: 1;
}

.ds-fund-text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.ds-fund-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.ds-btn-apply {
  padding: 12px 32px;
  background: #fff;
  color: var(--ds-accent-magenta);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.ds-btn-apply:hover {
  transform: scale(1.05);
}

/* --- Advertising Section --- */
.ds-ad-section {
  background: var(--ds-gray-light);
}

.ds-ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .ds-ad-grid {
    grid-template-columns: 1fr;
  }
}

.ds-ad-card {
  background: var(--ds-primary);
  border-radius: var(--ds-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--ds-shadow);
}

.ds-ad-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--ds-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.ds-ad-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ds-ad-card p {
  font-size: 0.85rem;
  color: var(--ds-gray-mid);
  line-height: 1.6;
}

/* --- APP Download Section --- */
.ds-app-section {
  background: var(--ds-secondary);
  color: #fff;
  overflow: hidden;
}

.ds-app-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .ds-app-inner {
    flex-direction: column;
    text-align: center;
  }
}

.ds-app-text {
  flex: 1;
}

.ds-app-text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.ds-app-text p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.ds-app-btns {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .ds-app-btns {
    justify-content: center;
  }
}

.ds-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.ds-app-btn:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.ds-app-mockup {
  flex: 0 0 240px;
}

.ds-app-mockup img {
  max-height: 400px;
  margin: 0 auto;
}

/* --- Community Guidelines --- */
.ds-community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--ds-gray-border);
}

.ds-community-links a {
  font-size: 0.85rem;
  color: var(--ds-gray-mid);
  transition: color 0.2s;
}

.ds-community-links a:hover {
  color: var(--ds-accent-magenta);
}

/* --- Footer --- */
#ds-footer {
  background: var(--ds-secondary);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.ds-footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.ds-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}

.ds-footer-row a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.ds-footer-row a:hover {
  color: #fff;
}

.ds-footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.ds-footer-bottom p {
  margin-bottom: 4px;
}

/* --- Page Banner (for inner pages) --- */
.ds-page-banner {
  background: var(--ds-gradient);
  padding: 80px 0 40px;
  color: #fff;
  text-align: center;
}

.ds-page-banner h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ds-page-banner p {
  font-size: 1rem;
  opacity: 0.9;
}

/* --- Inner Page Content --- */
.ds-page-content {
  padding: 40px 0 60px;
}

.ds-page-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- APP Download Page Specific --- */
.ds-app-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0030 30%, #002040 70%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding-top: 60px;
}

.ds-app-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,0,255,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(0,255,255,0.15) 0%, transparent 50%);
  animation: ds-float 8s ease-in-out infinite;
}

@keyframes ds-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

.ds-app-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

.ds-app-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.ds-app-hero .ds-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

.ds-app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .ds-app-features {
    grid-template-columns: 1fr;
  }
}

.ds-app-feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--ds-gray-light);
  border-radius: var(--ds-radius);
}

.ds-app-feature-card .ds-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--ds-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.ds-app-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ds-app-feature-card p {
  font-size: 0.85rem;
  color: var(--ds-gray-mid);
  line-height: 1.6;
}

/* --- Utility Classes --- */
.ds-text-gradient {
  background: var(--ds-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-mt-0 { margin-top: 0; }
.ds-mb-16 { margin-bottom: 16px; }
.ds-mb-24 { margin-bottom: 24px; }
.ds-mb-32 { margin-bottom: 32px; }

/* --- Responsive Adjustments --- */
@media (max-width: 360px) {
  html { font-size: 14px; }
  .ds-nav-inner { height: 52px; }
  .ds-main { padding-top: 52px; }
  .ds-section { padding: 32px 0; }
}

@media (min-width: 361px) and (max-width: 768px) {
  .ds-section { padding: 36px 0; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ds-section { padding: 40px 0; }
}

/* --- Jingshen Girl Page --- */
.ds-girl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .ds-girl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ds-girl-card {
  border-radius: var(--ds-radius);
  overflow: hidden;
  box-shadow: var(--ds-shadow);
  transition: transform 0.2s ease;
}

.ds-girl-card:hover {
  transform: translateY(-3px);
}

.ds-girl-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.ds-girl-card-body {
  padding: 10px 12px;
}

.ds-girl-card-body h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.ds-girl-card-body p {
  font-size: 0.75rem;
  color: var(--ds-gray-mid);
}

/* --- Inner page video list --- */
.ds-video-list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ds-gray-border);
}

@media (max-width: 768px) {
  .ds-video-list-item {
    flex-direction: column;
  }
}

.ds-video-list-thumb {
  flex: 0 0 200px;
  aspect-ratio: 16/9;
  border-radius: var(--ds-radius-sm);
  overflow: hidden;
}

.ds-video-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-video-list-info {
  flex: 1;
}

.ds-video-list-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.ds-video-list-info p {
  font-size: 0.85rem;
  color: var(--ds-gray-mid);
  line-height: 1.6;
}

/* --- Breadcrumb --- */
.ds-breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--ds-gray-mid);
}

.ds-breadcrumb a {
  color: var(--ds-gray-mid);
}

.ds-breadcrumb a:hover {
  color: var(--ds-accent-magenta);
}

.ds-breadcrumb span {
  margin: 0 6px;
}
