* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --spacing-unit: 8px;
  --primary-color: #0099FF;
  --text-color: #333;
  --bg-color: #fff;
  --border-color: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--bg-color);
}

body.ui-style-0 { --primary-color: #FF6B6B; --bg-color: #1a1a1a; --text-color: #fff; }
body.ui-style-1 { --primary-color: #FF5722; --bg-color: #121212; --text-color: #fff; }
body.ui-style-2 { --primary-color: #FF9800; --bg-color: #fff; --text-color: #333; }
body.ui-style-3 { --primary-color: #E91E63; --bg-color: #fff; --text-color: #333; }
body.ui-style-4 { --primary-color: #F44336; --bg-color: #fff; --text-color: #222; }
body.ui-style-5 { --primary-color: #D32F2F; --bg-color: #141414; --text-color: #fff; }
body.ui-style-6 { --primary-color: #0288D1; --bg-color: #0d1117; --text-color: #e6edf3; }
body.ui-style-7 { --primary-color: #1976D2; --bg-color: #1a1f2e; --text-color: #e1e8ed; }
body.ui-style-8 { --primary-color: #00C851; --bg-color: #0d0d0d; --text-color: #fff; }
body.ui-style-9 { --primary-color: #fff; --bg-color: #000; --text-color: #fff; }
body.ui-style-10 { --primary-color: #00C75A; --bg-color: #fff; --text-color: #222; }
body.ui-style-11 { --primary-color: #0099FF; --bg-color: #f5f7fa; --text-color: #333; }
body.ui-style-12 { --primary-color: #FF6700; --bg-color: #fff; --text-color: #222; }
body.ui-style-13 { --primary-color: #00A1D6; --bg-color: #fff; --text-color: #333; }
body.ui-style-14 { --primary-color: #003d7a; --bg-color: #fff; --text-color: #333; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 2);
}

.site-nav {
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  padding: calc(var(--spacing-unit) * 2) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: calc(var(--spacing-unit) * 3);
  flex-wrap: nowrap;
  overflow-x: auto;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  padding: calc(var(--spacing-unit) * 1) 0;
  transition: color 0.2s;
}

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

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
  }

  .nav-links {
    width: 100%;
    justify-content: space-around;
    gap: calc(var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 1);
  }

  .nav-links a {
    font-size: 14px;
  }
}

.hero-section {
  padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 6);
  background: linear-gradient(135deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 60%, black));
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 20px;
    padding: 0 calc(var(--spacing-unit) * 2);
  }
}

.site-intro {
  padding: calc(var(--spacing-unit) * 6) 0;
  background: color-mix(in srgb, var(--primary-color) 5%, var(--bg-color));
}

.site-intro p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.content-module {
  padding: calc(var(--spacing-unit) * 6) 0;
}

.module-title {
  font-size: 28px;
  margin-bottom: calc(var(--spacing-unit) * 4);
  color: var(--text-color);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 2);
  }
}

.video-card {
  background: var(--bg-color);
  border-radius: calc(var(--spacing-unit) * 1);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-cover {
  position: relative;
  width: 100%;
  padding-top: 140%;
  overflow: hidden;
  background: #f0f0f0;
}

.video-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: calc(var(--spacing-unit) * 2);
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-one-line {
  font-size: 14px;
  color: color-mix(in srgb, var(--text-color) 70%, transparent);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  .video-cover {
    padding-top: 120%;
  }

  .video-info {
    padding: calc(var(--spacing-unit) * 1.5);
  }

  .video-title {
    font-size: 14px;
  }

  .video-one-line {
    font-size: 12px;
  }
}

.page-header {
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.page-header h1 {
  font-size: 32px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.page-header p {
  font-size: 16px;
  color: color-mix(in srgb, var(--text-color) 70%, transparent);
}

.filter-bar {
  padding: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 3);
  background: color-mix(in srgb, var(--primary-color) 10%, var(--bg-color));
  border-radius: calc(var(--spacing-unit) * 1);
}

.page--with-sidebar {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: calc(var(--spacing-unit) * 4);
}

.layout__side--filters {
  padding: calc(var(--spacing-unit) * 3);
  background: color-mix(in srgb, var(--primary-color) 5%, var(--bg-color));
  border-radius: calc(var(--spacing-unit) * 1);
  height: fit-content;
}

@media (max-width: 768px) {
  .page--with-sidebar {
    grid-template-columns: 1fr;
  }

  .layout__side--filters {
    display: none;
  }
}

.top-list__items {
  list-style: none;
}

.top-item {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
  padding: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 2);
  background: var(--bg-color);
  border-radius: calc(var(--spacing-unit) * 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-rank {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-cover {
  width: 80px;
  height: 120px;
  flex-shrink: 0;
  border-radius: calc(var(--spacing-unit) * 0.5);
  overflow: hidden;
}

.top-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-info {
  flex: 1;
}

.top-info h3 {
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.top-info h3 a {
  color: var(--text-color);
  text-decoration: none;
}

.top-info h3 a:hover {
  color: var(--primary-color);
}

.top-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--text-color) 70%, transparent);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.top-info .meta {
  font-size: 12px;
  color: color-mix(in srgb, var(--text-color) 50%, transparent);
}

.group {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.group-title {
  font-size: 24px;
  margin-bottom: calc(var(--spacing-unit) * 3);
  padding-bottom: calc(var(--spacing-unit) * 2);
  border-bottom: 2px solid var(--primary-color);
}

.group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

@media (max-width: 768px) {
  .group__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 2);
  }
}

.video-player-section {
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.video-player {
  max-width: 100%;
  margin: 0 auto;
}

.video-player-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: calc(var(--spacing-unit) * 1);
  overflow: hidden;
}

.player-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: all 0.3s;
}

.player-play-btn:hover {
  background: rgba(255,255,255,1);
  transform: translate(-50%, -50%) scale(1.1);
}

.player-play-icon {
  font-size: 32px;
  color: var(--primary-color);
}

.detail-header {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.detail-header h1 {
  font-size: 32px;
  line-height: 1.2;
}

.detail-info {
  margin-bottom: calc(var(--spacing-unit) * 4);
  padding: calc(var(--spacing-unit) * 3);
  background: color-mix(in srgb, var(--primary-color) 5%, var(--bg-color));
  border-radius: calc(var(--spacing-unit) * 1);
}

.detail-info h2 {
  font-size: 20px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.info-list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: calc(var(--spacing-unit) * 1.5);
  row-gap: calc(var(--spacing-unit) * 2);
}

.info-list dt {
  font-weight: 600;
  color: var(--text-color);
}

.info-list dd {
  color: color-mix(in srgb, var(--text-color) 80%, transparent);
}

.detail-module {
  margin-bottom: calc(var(--spacing-unit) * 4);
  padding: calc(var(--spacing-unit) * 3);
  border-left: 4px solid var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 3%, var(--bg-color));
}

.detail-module h2 {
  font-size: 22px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.detail-module p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--text-color) 85%, transparent);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing-unit) * 1);
}

.tag {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
  background: var(--primary-color);
  color: #fff;
  border-radius: calc(var(--spacing-unit) * 3);
  font-size: 14px;
}

.related-section {
  margin-top: calc(var(--spacing-unit) * 6);
  padding-top: calc(var(--spacing-unit) * 4);
  border-top: 2px solid var(--border-color);
}

.related-section h2 {
  font-size: 24px;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 2);
  }
}

.site-footer {
  margin-top: calc(var(--spacing-unit) * 8);
  padding: calc(var(--spacing-unit) * 4) 0;
  background: color-mix(in srgb, var(--primary-color) 5%, var(--bg-color));
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.site-footer p {
  font-size: 14px;
  color: color-mix(in srgb, var(--text-color) 60%, transparent);
}

.list-main {
  padding: calc(var(--spacing-unit) * 4) 0;
}

@media (max-width: 768px) {
  .detail-header h1 {
    font-size: 24px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .detail-module {
    padding: calc(var(--spacing-unit) * 2);
  }
}
