/* HQPorner 风格样式 - 基于实际网站设计 */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic|Open+Sans+Condensed:700');

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

:root {
  --primary-pink: #ff8397;
  --primary-pink-hover: #ffb8c3;
  --primary-pink-active: #df7c8c;
  --bg-light: #f2f5f3;
  --bg-white: #ffffff;
  --bg-gray: #e7eae8;
  --text-dark: #6b7770;
  --text-muted: #a1aaa5;
  --text-light: #c1cac5;
  --border-light: #e7eae8;
  --accent-green: #a1cd9b;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  font-size: 11.5pt;
  line-height: 2em;
  background: var(--bg-light);
  margin: 0;
  padding-top: 80px;
}

/* 头部导航样式 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-container {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-container a {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 28px;
  color: var(--text-dark);
  line-height: 1;
}

.logo-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
  line-height: 1;
}

.logo a .logo-icon {
  color: var(--primary-pink);
}

.logo a {
  color: var(--text-dark);
}

.header-center {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}

.search-form {
  position: relative;
  display: flex;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
  transition: border-color 0.3s ease;
}

.search-form:focus-within {
  border-color: var(--accent-green);
}

.search-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 15px;
  outline: none;
  font-family: 'Open Sans', sans-serif;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  padding: 12px 20px;
  border: none;
  background: var(--primary-pink);
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-pink-hover);
}

.header-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--primary-pink);
  background: rgba(255, 131, 151, 0.1);
}

/* 汉堡菜单 */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-navigation {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-white);
  border-left: 1px solid var(--border-light);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-navigation.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-header h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 18px;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-link {
  display: block;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}

.mobile-menu-link:hover {
  background: var(--primary-pink);
  color: white;
}

/* 主内容区 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 网格系统 */
.row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-start;
}

.3u {
  width: 25%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.9u {
  width: 75%;
  flex: 1;
  box-sizing: border-box;
}

/* 移动端隐藏侧边栏 */
@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
  
  .row {
    flex-direction: column;
    gap: 0;
  }
  
  .3u {
    width: 100%;
  }
  
  .9u {
    width: 100%;
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* 超小屏幕 */
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 侧边栏样式 */
.sidebar {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 4px var(--shadow);
  margin-bottom: 20px;
}

.sidebar .button {
  display: block;
  background: var(--primary-pink);
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.sidebar .button:hover {
  background: var(--primary-pink-hover);
}

.sidebar .divided {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar .divided li {
  margin-bottom: 12px;
}

.sidebar .box.post-summary {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.sidebar .box.post-summary h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
}

.sidebar .box.post-summary h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar .box.post-summary h3 a:hover {
  color: var(--primary-pink);
}

.sidebar .meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.stats-info {
  margin: 30px 0;
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 4px var(--shadow);
}

.stats-info svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

.stats-info strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* 视频网格布局 */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}

/* 确保PC端视频网格始终3列 */
@media (min-width: 769px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.video-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
}

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

.video-thumb {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比例 */
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
  transform: scale(1);
}

.video-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-pink);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Open Sans Condensed', sans-serif;
}

.video-info {
  padding: 16px;
}

.video-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
}

.video-title a {
  color: var(--text-dark);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.video-title a:hover {
  color: var(--primary-pink);
}

/* 分页导航 */
.ct-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  gap: 8px;
}

.page-numbers {
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 44px;
  text-align: center;
  background: var(--bg-white);
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
}

.page-numbers:hover {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
}

.page-numbers.current {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
}

.next.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
}

/* 页脚 */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  margin-top: 60px;
  padding: 40px 0;
}

.site-info {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.site-info p {
  margin: 8px 0;
}

/* 搜索模态框 */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* 分类页面样式 */
.category-header {
  margin: 30px 0 40px 0;
  border-bottom: 3px solid var(--primary-pink);
  padding-bottom: 20px;
}

.category-title {
  font-size: 30px;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  font-weight: 700;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 移动端分类标题优化 */
@media (max-width: 768px) {
  .category-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 16px !important;
  }
}

.category-title svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

.category-stats {
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 32px;
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px var(--shadow);
}

.no-results h2 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
}

.no-results p {
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.no-results a {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.no-results a:hover {
  color: var(--primary-pink-active);
  text-decoration: underline;
}

/* 视频详情页面样式 */
.video-title-main {
  font-size: 26px;
  color: var(--text-dark);
  margin: 30px 0 20px 0;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-title-main svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

.source-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  gap: 8px;
}

.source-tab {
  padding: 8px 15px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.3s;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
}

.source-tab.active,
.source-tab:hover {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
}

.source-info {
  margin: 15px 0;
  padding: 15px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.related-videos {
  margin-top: 40px;
}

.section-title {
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-pink);
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

/* 分类列表页面样式 */
.all-categories-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.all-category-item {
  display: block;
  padding: 18px 24px;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}

.all-category-item:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 131, 151, 0.3);
}

.all-category-count {
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 6px;
}

.all-category-item:hover .all-category-count {
  color: rgba(255, 255, 255, 0.8);
}

/* 搜索页面样式 */
.search-header {
  margin: 30px 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-pink);
}

.search-title {
  font-size: 28px;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  font-weight: 700;
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-title svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

/* 相关视频卡片样式 */
.entry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.entry-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px var(--shadow);
}

.entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.entry-thumb {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比例 */
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.entry-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-category {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary-pink);
  color: white;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Open Sans Condensed', sans-serif;
}

.entry-title {
  margin: 0;
  padding: 15px;
}

.entry-title a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.entry-title a:hover {
  color: var(--primary-pink);
}

/* 视频播放器样式 */
.video-wrapper {
  width: 70%;
  margin: 0 auto 20px auto;
  display: block;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 比例 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 8px;
  background: #000;
  border: 1px solid var(--border-light);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-js {
  border-radius: 8px;
}

/* PC端布局 */
@media (min-width: 993px) {
  .site-main .container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  .main-navigation {
    width: 250px;
    flex-shrink: 0;
    background: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow);
  }

  .main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-navigation li {
    margin-bottom: 8px;
  }

  .main-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
  }

  .main-navigation a:hover {
    background: var(--primary-pink);
    color: white;
  }

  .main-navigation .more-categories {
    color: var(--primary-pink);
    font-weight: bold;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
  }

  .content-area {
    flex: 1;
    min-width: 0;
  }

  .content-area .video-wrapper {
    width: 100% !important;
  }

  .content-area .related-videos {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .content-area .entry-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 响应式设计 */
@media (max-width: 992px) {
  .main-navigation {
    display: none;
  }

  .video-wrapper {
    width: 85% !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .header-container {
    height: 70px;
    padding: 0 15px;
  }

  .logo a {
    font-size: 24px;
  }

  .header-center {
    margin: 0 15px;
    max-width: none;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
    z-index: 1002;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 4px;
  }
  
  .menu-toggle span {
    background: var(--text-dark) !important;
    z-index: 1003;
  }
  
  /* 修复移动端头部布局 */
  .header-inner {
    flex-wrap: nowrap;
    overflow: hidden;
  }
  
  .logo-container {
    flex-shrink: 0;
    min-width: 0;
  }
  
  .logo-container a {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }
  
  .logo-tagline {
    font-size: 10px;
  }
  
  .header-center {
    flex: 1;
    min-width: 0;
    margin: 0 8px;
  }
  
  .search-input {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .header-nav {
    display: none;
  }

  .container {
    padding: 0 15px;
  }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 8px;
  }
  
  .logo-container a {
    font-size: 16px;
    max-width: 100px;
  }
  
  .logo-tagline {
    font-size: 9px;
  }
  
  .header-center {
    margin: 0 4px;
  }
  
  .search-input {
    font-size: 13px;
    padding: 6px 10px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 25px 0;
  }

  .ct-pagination {
    margin: 40px 0;
    gap: 6px;
  }

  .page-numbers {
    padding: 10px 12px;
    font-size: 13px;
    min-width: 36px;
  }

  .entry-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .video-wrapper {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .logo a {
    font-size: 20px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
  }

  .ct-pagination {
    margin: 30px 0;
    gap: 4px;
  }

  .page-numbers {
    padding: 8px 10px;
    font-size: 12px;
    min-width: 32px;
  }

  .entry-cards {
    gap: 12px;
  }

  .header-container {
    padding: 0 10px;
  }

  .header-center {
    margin: 0 10px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 100vw;
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
    margin: 0;
  }

  .video-grid {
    padding-left: 0;
    padding-right: 0;
  }
}