/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */

/* 全局背景色和基础样式 */
body {
  background-color: #000000;
  color: #000000;
  font-family: 'PixelFont', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  background-color: #000000;
}

.aoher-maomi-content {
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

/* 区域衔接优化 */
#aoher-main-container {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* 区域间分隔装饰 */
#aoher-main-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    #222 0px,
    #222 10px,
    #333 10px,
    #333 20px
  );
  z-index: 2;
}

/* 背景网格 */
.aoher-maomi-content::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}


/* 全局设置 */
.aoher-pixel-header * {
  box-sizing: border-box;
  image-rendering: pixelated;
}

/* 顶部导航条 */
.aoher-pixel-header {
  background: #d4af37;
  color: #000000;
  font-family: 'PixelFont', sans-serif;
  position: relative;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* 顶部信息栏 */
.aoher-pixel-top-bar {
  background: #d4af37;
  border-bottom: 2px solid #333;
  padding: 5px 0;
  font-size: 12px;
  text-align: right;
}

.aoher-pixel-site-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.aoher-pixel-site-name {
  color: #000000;
  text-decoration: none;
  margin-right: 15px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
  transition: all 0.2s;
}

.aoher-pixel-site-name:hover {
  color: #000000;
  text-shadow: 2px 2px 0 #008;
}

.aoher-pixel-stats {
  color: #000000;
  font-size: 10px;
  padding: 2px 8px;
  background: #d4af37;
  border: 1px solid #444;
}

/* 主导航栏 */
.aoher-pixel-main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

/* Logo */
.aoher-pixel-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.aoher-pixel-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.aoher-pixel-logo-icon {
  width: 32px;
  height: 32px;
  background: #d4af37;
  margin-right: 10px;
  position: relative;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
  animation: aoher-pixel-pulse 2s infinite;
}

.aoher-pixel-logo-icon:before,
.aoher-pixel-logo-icon:after {
  content: '';
  position: absolute;
  background: #d4af37;
  width: 8px;
  height: 8px;
  top: 8px;
  border: 2px solid #000;
}

.aoher-pixel-logo-icon:before {
  left: 4px;
}

.aoher-pixel-logo-icon:after {
  right: 4px;
}

@keyframes aoher-pixel-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.aoher-pixel-title {
  color: #000000;
  font-size: 24px;
  margin: 0;
  text-shadow: 3px 3px 0 #f00, 
              -1px -1px 0 #00f,
               1px -1px 0 #00f,
              -1px 1px 0 #00f,
               1px 1px 0 #00f;
  letter-spacing: 1px;
}

.aoher-pixel-desc {
  color: #000000;
  font-size: 10px;
  margin: 5px 0 0 42px;
  letter-spacing: 1px;
  border-top: 1px dotted #444;
  padding-top: 3px;
}

/* 搜索框 */
.aoher-pixel-search {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}

.aoher-pixel-search-group {
  display: flex;
  border: 2px solid #444;
  background: #d4af37;
  padding: 2px;
  position: relative;
}

.aoher-pixel-search-group:focus-within {
  border-color: #000000;
  box-shadow: 0 0 0 1px #0f0;
}

.aoher-pixel-search-input {
  flex: 1;
  background: #d4af37;
  border: none;
  color: #000000;
  padding: 8px 12px;
  font-family: 'PixelFont', sans-serif;
  font-size: 14px;
  outline: none;
}

.aoher-pixel-search-input::placeholder {
  color: #000000;
  opacity: 0.5;
}

.aoher-pixel-search-btn {
  background: #d4af37;
  color: #000000;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.aoher-pixel-search-btn:hover {
  background: #d4af37;
}

.aoher-pixel-hot-words {
  display: flex;
  margin-top: 8px;
  flex-wrap: wrap;
}

.aoher-pixel-tag {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  color: #000000;
  text-decoration: none;
  font-size: 10px;
  background: #d4af37;
  padding: 2px 8px;
  border: 1px solid #333;
  transition: all 0.2s;
}

.aoher-pixel-tag:hover {
  background: #d4af37;
  color: #000000;
  border-color: #000000;
}

/* 汉堡菜单按钮 */
.aoher-pixel-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.aoher-pixel-burger {
  width: 24px;
  height: 18px;
  position: relative;
}

.aoher-pixel-burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #d4af37;
  left: 0;
  transition: all 0.2s;
}

.aoher-pixel-burger span:nth-child(1) {
  top: 0;
}

.aoher-pixel-burger span:nth-child(2) {
  top: 7px;
}

.aoher-pixel-burger span:nth-child(3) {
  top: 14px;
}

/* 主菜单 */
.aoher-pixel-nav {
  background: #d4af37;
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
}

.aoher-pixel-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aoher-pixel-menu-item {
  position: relative;
}

.aoher-pixel-link {
  display: flex;
  align-items: center;
  color: #000000;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.2s;
  border-right: 2px solid #333;
}

.aoher-pixel-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: #000000;
  position: relative;
}

.aoher-pixel-home {
  background-color: #000000;
}

.aoher-pixel-home:before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #d4af37;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.aoher-pixel-cat-1 { background-color: #000000!important; }
.aoher-pixel-cat-2 { background-color: #000000!important; }
.aoher-pixel-cat-3 { background-color: #000000!important; }
.aoher-pixel-cat-4 { background-color: #000000!important; }
.aoher-pixel-cat-5 { background-color: #000000!important; }

.aoher-pixel-text {
  font-size: 12px;
  letter-spacing: 1px;
}

.aoher-pixel-arrow {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}

.aoher-pixel-menu-item:hover > .aoher-pixel-link {
  background: #d4af37;
  color: #000000;
}

.aoher-pixel-active > .aoher-pixel-link {
  background: #d4af37;
  color: #000000;
  box-shadow: inset 0 -2px 0 #0f0;
}

/* 下拉菜单 */
.aoher-pixel-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: #d4af37;
  border: 2px solid #444;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}

.aoher-pixel-dropdown:hover .aoher-pixel-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aoher-pixel-sublink {
  display: block;
  padding: 8px 15px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.aoher-pixel-sublink:hover {
  background: #d4af37;
  color: #000000;
  border-left-color: #000000;
}

/* 移动端菜单 */
.aoher-pixel-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #d4af37;
  z-index: 1001;
  transition: all 0.3s;
  overflow-y: auto;
  border-left: 2px solid #444;
}

.aoher-pixel-mobile-menu.active {
  right: 0;
}

.aoher-pixel-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 2px solid #333;
}

.aoher-pixel-mobile-logo {
  color: #000000;
  font-size: 16px;
  text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-mobile-close {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.aoher-pixel-mobile-close span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #d4af37;
  top: 8px;
}

.aoher-pixel-mobile-close span:first-child {
  transform: rotate(45deg);
}

.aoher-pixel-mobile-close span:last-child {
  transform: rotate(-45deg);
}

.aoher-pixel-mobile-search {
  padding: 15px;
  border-bottom: 1px solid #333;
}

.aoher-pixel-mobile-search form {
  display: flex;
}

.aoher-pixel-mobile-search input {
  flex: 1;
  background: #d4af37;
  border: 1px solid #333;
  color: #000000;
  padding: 8px;
  font-family: 'PixelFont', sans-serif;
  font-size: 12px;
}

.aoher-pixel-mobile-search button {
  background: #d4af37;
  color: #000000;
  border: none;
  padding: 0 10px;
}

.aoher-pixel-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aoher-pixel-mobile-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #222;
  font-size: 14px;
}

.aoher-pixel-mobile-icon {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background-color: #000000;
}

.aoher-pixel-mobile-arrow {
  margin-left: auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  transition: all 0.2s;
}

.aoher-pixel-has-submenu.open .aoher-pixel-mobile-arrow {
  transform: rotate(180deg);
}

.aoher-pixel-mobile-submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #d4af37;
}

.aoher-pixel-has-submenu.open .aoher-pixel-mobile-submenu {
  display: block;
}

.aoher-pixel-mobile-sublink {
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 40px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid #111;
}

.aoher-pixel-mobile-dot {
  width: 6px;
  height: 6px;
  background: #d4af37;
  margin-right: 8px;
}

.aoher-pixel-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.aoher-pixel-menu-mask.active {
  display: block;
}

/* 响应式设计 */
@media (max-width: 991px) {
  .aoher-pixel-search {
    margin: 0 10px;
  }
  
  .aoher-pixel-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .aoher-pixel-menu-toggle {
    display: block;
  }
  
  .aoher-pixel-nav {
    display: none;
  }
  
  .aoher-pixel-search {
    max-width: none;
  }
  
  .aoher-pixel-hot-words {
    display: none;
  }
}

@media (max-width: 575px) {
  .aoher-pixel-logo-icon {
    width: 24px;
    height: 24px;
  }
  
  .aoher-pixel-title {
    font-size: 16px;
  }
  
  .aoher-pixel-desc {
    display: none;
  }
  
  .aoher-pixel-site-info {
    justify-content: center;
  }
}

/* 视频列表 */

/* 视频列表区域 */
.aoher-pixel-game-section {
  margin-bottom: 40px;
  background: #d4af37;
  border: 4px solid #333;
  padding: 0;
  position: relative;
  font-family: 'PixelFont', sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.aoher-pixel-game-section::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #000;
  pointer-events: none;
  z-index: 1;
}

/* 标题区域 */
.aoher-pixel-game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d4af37;
  padding: 15px;
  border-bottom: 4px solid #333;
  position: relative;
  overflow: hidden;
}

.aoher-pixel-game-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 255, 0, 0) 0%,
    rgba(0, 255, 0, 0.5) 50%,
    rgba(0, 255, 0, 0) 100%
  );
}

.aoher-pixel-game-title-box {
  display: flex;
  align-items: center;
}

.aoher-pixel-game-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  position: relative;
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 #000;
}

.aoher-pixel-game-heading {
  color: #000000;
  margin: 0;
  font-size: 18px;
  text-shadow: 2px 2px 0 #f00;
  letter-spacing: 1px;
}

.aoher-pixel-game-more {
  display: inline-block;
  padding: 5px 10px;
  background: #d4af37;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  border: 2px solid #444;
  transition: all 0.2s;
  position: relative;
}

.aoher-pixel-game-more::after {
  content: '>';
  margin-left: 5px;
}

.aoher-pixel-game-more:hover {
  background: #d4af37;
  color: #000000;
  transform: translateY(-2px);
}

/* 筛选按钮 */
.aoher-pixel-game-filter {
  display: flex;
}

.aoher-pixel-game-filter-btn {
  display: inline-block;
  padding: 5px 10px;
  background: #d4af37;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  border: 2px solid #444;
  margin-left: 10px;
  transition: all 0.2s;
}

.aoher-pixel-game-filter-btn:hover {
  background: #d4af37;
  color: #000000;
}

.aoher-pixel-game-filter-btn.active {
  background: #d4af37;
  color: #000000;
  border-color: #000000;
}

/* 内容区域 */
.aoher-pixel-game-content {
  padding: 20px;
  background: #d4af37;
  position: relative;
}

.aoher-pixel-game-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 5px,
    rgba(0, 0, 0, 0) 5px,
    rgba(0, 0, 0, 0) 10px
  );
  pointer-events: none;
}

/* 视频网格 */
.aoher-pixel-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 视频卡片项 */
.aoher-pixel-game-item {
  position: relative;
  transition: all 0.3s;
  transform-origin: center bottom;
  height: 100%; /* 确保项目高度一致 */
}

.aoher-pixel-game-item:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.aoher-pixel-game-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 视频卡片 */
.aoher-pixel-game-card {
  background: #d4af37;
  border: 3px solid #333;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  height: 100%; /* 确保卡片高度一致 */
  display: flex;
  flex-direction: column;
}

.aoher-pixel-game-item:hover .aoher-pixel-game-card {
  border-color: #000000;
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
}

/* 视频缩略图 */
.aoher-pixel-game-screen {
  position: relative;
  overflow: hidden;
  padding-top: 150%; /* 2:3比例，适合竖图 */
  background: #d4af37;
}

.aoher-pixel-game-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 改回cover，确保图片填满容器 */
  image-rendering: pixelated;
  transition: all 0.5s;
  opacity: 1 !important; /* 强制显示图片 */
  visibility: visible !important; /* 确保图片可见 */
}

/* 确保图片加载过渡效果 */
.aoher-pixel-game-screen img.lazy {
  opacity: 1 !important; /* 强制显示 */
  background-color: #000000; /* 加载前的背景色 */
}

.aoher-pixel-game-screen img.lazy.loaded {
  opacity: 1;
}

.aoher-pixel-game-item:hover .aoher-pixel-game-screen img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* 悬停遮罩 */
.aoher-pixel-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s;
}

.aoher-pixel-game-item:hover .aoher-pixel-game-overlay {
  opacity: 1;
}

/* 播放按钮 */
.aoher-pixel-game-btn {
  width: 40px;
  height: 40px;
  background: #d4af37;
  border: 3px solid #fff;
  position: relative;
  transform: scale(0);
  transition: all 0.3s;
}

.aoher-pixel-game-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.aoher-pixel-game-item:hover .aoher-pixel-game-btn {
  transform: scale(1);
}

/* 视频信息 */
.aoher-pixel-game-info {
  padding: 10px;
  background: #d4af37;
  border-top: 3px solid #333;
  flex-grow: 1; /* 让信息区域自动填充剩余空间 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aoher-pixel-game-title {
  color: #000000;
  font-size: 12px;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.aoher-pixel-game-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.aoher-pixel-game-score {
  color: #000000;
  position: relative;
  padding-left: 15px;
}

.aoher-pixel-game-score::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
}

.aoher-pixel-game-year {
  color: #000000;
  background: #d4af37;
  padding: 1px 5px;
  border-radius: 0;
  border: 1px solid #333;
}

/* 分页 */
.aoher-pixel-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 20px 0;
  font-family: 'PixelFont', sans-serif;
  background-color: #000000;
  border-top: 4px solid #333;
}

/* 页面信息区域 */
.aoher-pixel-page-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  background: #d4af37;
  padding: 8px 15px;
  border: 2px solid #333;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.aoher-pixel-page-counter,
.aoher-pixel-page-current {
  display: flex;
  align-items: center;
}

.aoher-pixel-counter-label,
.aoher-pixel-current-label {
  color: #000000;
  font-size: 12px;
  margin-right: 8px;
}

.aoher-pixel-counter-value,
.aoher-pixel-current-value {
  background-color: #000000;
  color: #000000;
  padding: 2px 8px;
  font-size: 12px;
  border: 1px solid #444;
  letter-spacing: 1px;
}

/* 分页控制区域 */
.aoher-pixel-page-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

/* 页码数字区域 */
.aoher-pixel-page-nums {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 5px;
}

/* 通用按钮样式 */
.aoher-pixel-page-btn,
.aoher-pixel-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background-color: #000000;
  color: #000000;
  text-decoration: none;
  border: 2px solid #333;
  transition: all 0.2s;
  padding: 0 8px;
  font-size: 12px;
}

/* 页码按钮 */
.aoher-pixel-page-num {
  width: 36px;
  font-size: 14px;
}

/* 当前页码样式 */
.aoher-pixel-page-current {
  background-color: #000000;
  color: #000000;
  border-color: #000000;
  font-weight: bold;
}

/* 按钮悬停效果 */
.aoher-pixel-page-btn:hover,
.aoher-pixel-page-num:hover:not(.aoher-pixel-page-current) {
  background-color: #000000;
  color: #000000;
  border-color: #000000;
  transform: translateY(-2px);
}

/* 按钮激活效果 */
.aoher-pixel-page-btn:active,
.aoher-pixel-page-num:active:not(.aoher-pixel-page-current) {
  transform: translateY(0);
}

/* 首页、尾页按钮 */
.aoher-pixel-page-first,
.aoher-pixel-page-last {
  background-color: #000000;
  border-color: #000000;
}

/* 下一页、上一页按钮 */
.aoher-pixel-page-next,
.aoher-pixel-page-prev {
  background-color: #000000;
}

/* 按钮文本 */
.aoher-pixel-btn-text {
  margin: 0 3px;
}

/* 按钮图标 */
.aoher-pixel-btn-icon-first,
.aoher-pixel-btn-icon-prev,
.aoher-pixel-btn-icon-next,
.aoher-pixel-btn-icon-last {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
}

/* 首页图标 */
.aoher-pixel-btn-icon-first::before,
.aoher-pixel-btn-icon-first::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  width: 2px;
  height: 10px;
  left: 0;
}

.aoher-pixel-btn-icon-first::after {
  left: 5px;
}

.aoher-pixel-btn-icon-first::before {
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  background-color: transparent;
  width: 0;
  height: 0;
  left: 2px;
}

/* 上一页图标 */
.aoher-pixel-btn-icon-prev {
  border-right: 6px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid currentColor;
  width: 0;
  height: 0;
}

/* 下一页图标 */
.aoher-pixel-btn-icon-next {
  border-left: 6px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid currentColor;
  width: 0;
  height: 0;
}

/* 尾页图标 */
.aoher-pixel-btn-icon-last::before,
.aoher-pixel-btn-icon-last::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  width: 2px;
  height: 10px;
  right: 0;
}

.aoher-pixel-btn-icon-last::after {
  right: 5px;
}

.aoher-pixel-btn-icon-last::before {
  border-left: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid currentColor;
  background-color: transparent;
  width: 0;
  height: 0;
  right: 2px;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .aoher-pixel-page-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .aoher-pixel-page-controls {
    justify-content: center;
  }
  
  .aoher-pixel-btn-text {
    display: none;
  }
  
  .aoher-pixel-page-btn {
    min-width: 40px;
  }
}

@media (max-width: 575px) {
  .aoher-pixel-page-nums {
    max-width: 180px;
    justify-content: center;
  }
  
  .aoher-pixel-page-num {
    width: 32px;
    height: 32px;
  }
  
  .aoher-pixel-page-btn {
    min-width: 32px;
    height: 32px;
  }
}

/* 动画效果 */
@keyframes aoher-pixel-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* 底部CSS */

/* 页脚主体 */
.aoher-pixel-footer {
  background-color: #000000;
  padding: 30px 0 15px;
  color: #000000;
  font-family: 'PixelFont', sans-serif;
  border-top: 4px solid #333;
  position: relative;
  margin-top: 40px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.aoher-pixel-footer::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #000000;
}

/* 分隔线 */
.aoher-pixel-divider {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.aoher-pixel-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 255, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.2);
}

.aoher-pixel-brick {
  height: 8px;
  flex: 1;
  margin: 0 4px;
  background-color: #000000;
  border: 2px solid #000;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.1);
}

.aoher-pixel-brick:nth-child(odd) {
  background-color: #000000;
}

.aoher-pixel-brick:nth-child(3n) {
  background-color: #000000;
}

.aoher-pixel-brick:nth-child(5n) {
  background-color: #000000;
}

/* 友情链接区域 */
.aoher-pixel-link-section {
  margin-bottom: 30px;
  background: #d4af37;
  padding: 15px;
  border: 3px solid #333;
  position: relative;
  border-radius: 2px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.aoher-pixel-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.aoher-pixel-icon-link {
  width: 24px;
  height: 24px;
  background-color: #000000;
  margin-right: 10px;
  position: relative;
  border: 2px solid #fff;
}

.aoher-pixel-icon-link::before,
.aoher-pixel-icon-link::after {
  content: '';
  position: absolute;
  background-color: #000000;
  height: 2px;
  width: 14px;
  left: 3px;
  top: 6px;
}

.aoher-pixel-icon-link::after {
  transform: rotate(90deg);
}

.aoher-pixel-section-title {
  color: #000000;
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aoher-pixel-link-item {
  display: inline-block;
  background-color: #000000;
  padding: 5px 8px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  border: 2px solid #444;
  transition: all 0.2s;
}

.aoher-pixel-link-item:hover {
  background-color: #000000;
  color: #000000;
  border-color: #000000;
  transform: translateY(-2px);
}

/* 底部导航菜单 */
.aoher-pixel-nav-section {
  margin-bottom: 30px;
}

.aoher-pixel-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.aoher-pixel-nav-item {
  display: flex;
  align-items: center;
  background-color: #000000;
  padding: 8px 12px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  border: 2px solid #444;
  transition: all 0.2s;
}

.aoher-pixel-nav-item:hover {
  background-color: #000000;
  color: #000000;
  border-color: #000000;
  transform: translateY(-3px);
}

.aoher-pixel-home-btn {
  background-color: #000000;
  border-color: #000000;
}

.aoher-pixel-nav-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-color: #000000;
}

.aoher-pixel-home-icon {
  background-color: #000000;
}

.aoher-pixel-home-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #000000;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* 站点信息区域 */
.aoher-pixel-site-info {
  background: #d4af37;
  padding: 20px;
  border: 3px solid #333;
  position: relative;
  border-radius: 2px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.aoher-pixel-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.aoher-pixel-footer-logo {
  width: 40px;
  height: 40px;
  background-color: #000000;
  margin-right: 15px;
  position: relative;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #000;
}

.aoher-pixel-footer-logo::before,
.aoher-pixel-footer-logo::after {
  content: '';
  position: absolute;
  background-color: #000000;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  top: 10px;
}

.aoher-pixel-footer-logo::before {
  left: 5px;
}

.aoher-pixel-footer-logo::after {
  right: 5px;
}

.aoher-pixel-site-name-footer {
  display: flex;
  flex-direction: column;
}

.aoher-pixel-site-name-footer a {
  color: #000000;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-slogan {
  color: #000000;
  font-size: 12px;
  margin-top: 3px;
}

/* 免责声明 */
.aoher-pixel-disclaimer {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #000000;
  border: 2px solid #333;
}

.aoher-pixel-disclaimer-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.aoher-pixel-disclaimer-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #000000;
  margin-right: 8px;
  position: relative;
  border: 2px solid #fff;
  border-radius: 0;
}

.aoher-pixel-disclaimer-icon::before {
  content: '!';
  position: absolute;
  top: -2px;
  left: 4px;
  color: #000000;
  font-weight: bold;
  font-size: 12px;
}

.aoher-pixel-disclaimer-header h4 {
  color: #000000;
  margin: 0;
  font-size: 14px;
}

.aoher-pixel-disclaimer p {
  color: #000000;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* 版权区域 */
.aoher-pixel-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 2px dotted #333;
  flex-wrap: wrap;
}

.aoher-pixel-copyright-text {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 12px;
}

.aoher-pixel-copyright-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #000000;
  text-align: center;
  line-height: 16px;
  margin-right: 8px;
  font-size: 10px;
  border: 1px solid #444;
}

.aoher-pixel-contact {
  display: flex;
  align-items: center;
}

.aoher-pixel-mail-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #000000;
  margin-right: 8px;
  position: relative;
}

.aoher-pixel-mail-icon::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 8px;
  background-color: #000000;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.aoher-pixel-contact a {
  color: #000000;
  text-decoration: none;
  font-size: 12px;
}

.aoher-pixel-contact a:hover {
  text-decoration: underline;
}

/* 回到顶部按钮 */
.aoher-pixel-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border: 3px solid #0f0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.aoher-pixel-back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.aoher-pixel-back-to-top:hover {
  transform: translateY(-5px);
  border-color: #000000;
}

.aoher-pixel-arrow-up {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #0f0;
}

.aoher-pixel-back-to-top:hover .aoher-pixel-arrow-up {
  border-bottom-color: #000000;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .aoher-pixel-copyright {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .aoher-pixel-contact {
    margin-top: 10px;
  }
  
  .aoher-pixel-nav-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .aoher-pixel-link-grid {
    gap: 5px;
  }
  
  .aoher-pixel-link-item {
    padding: 3px 6px;
    font-size: 10px;
  }
  
  .aoher-pixel-site-name-footer a {
    font-size: 16px;
  }
  
  .aoher-pixel-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
  }
}

/* 添加统一的过渡动画 */
.aoher-pixel-footer,
.aoher-pixel-header,
.aoher-pixel-game-section,
.aoher-pixel-pagination,
.aoher-pixel-link-section,
.aoher-pixel-site-info,
.aoher-pixel-page-info,
.aoher-pixel-game-header,
.aoher-pixel-game-content {
  transition: all 0.3s ease;
}

/* 过渡动画 */
@keyframes aoher-pixel-scan-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.aoher-maomi-content::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.05),
    rgba(0, 255, 0, 0)
  );
  pointer-events: none;
  animation: aoher-pixel-scan-line 10s linear infinite;
  z-index: 999;
  opacity: 0.3;
}

/*  - 视频详情页和播放页 */

/* 通用面包屑导航 */
.aoher-pixel-breadcrumb {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 20px;
    background-color: #000000;
    border: 2px solid #444;
    box-shadow: 0 0 0 2px #000;
    image-rendering: pixelated;
}

.aoher-pixel-breadcrumb-item {
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-family: monospace;
    font-size: 14px;
    transition: all 0.2s;
}

.aoher-pixel-breadcrumb-item:hover {
    color: #000000;
    transform: scale(1.05);
    text-shadow: 0 0 5px #8df776;
}

.aoher-pixel-breadcrumb-current {
    color: #000000;
    font-family: monospace;
    font-size: 14px;
    text-shadow: 0 0 5px #ff5252;
}

.aoher-pixel-breadcrumb-separator {
    width: 8px;
    height: 8px;
    margin: 0 10px;
    background-color: #000000;
    clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 50% 100%);
}

.aoher-pixel-home-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* 视频详情页样式 */
.aoher-pixel-detail-card {
    background-color: #000000;
    border: 2px solid #444;
    box-shadow: 0 0 0 2px #000, 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden;
    image-rendering: pixelated;
}

.aoher-pixel-detail-main {
    display: flex;
    padding: 20px;
    border-bottom: 4px dashed #444;
}

.aoher-pixel-poster-container {
    flex: 0 0 220px;
    margin-right: 20px;
}

.aoher-pixel-poster-frame {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    border: 4px solid #444;
    box-shadow: 0 0 0 2px #000;
    overflow: hidden;
}

.aoher-pixel-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.aoher-pixel-poster-frame:hover .aoher-pixel-poster-img {
    transform: scale(1.05);
}

.aoher-pixel-poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
}

.aoher-pixel-poster-score {
    background-color: #000000;
    color: #000000;
    font-weight: bold;
    padding: 2px 6px;
    border: 2px solid #000;
    font-family: monospace;
}

.aoher-pixel-poster-year {
    background-color: #000000;
    color: #000000;
    font-family: monospace;
    padding: 2px 6px;
    border: 2px solid #000;
}

.aoher-pixel-info-container {
    flex: 1;
}

.aoher-pixel-title-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.aoher-pixel-cat-tag {
    background-color: #000000;
    color: #000000;
    font-size: 12px;
    padding: 2px 6px;
    margin-right: 10px;
    border: 2px solid #000;
    font-family: monospace;
    text-transform: uppercase;
}

.aoher-pixel-detail-title {
    color: #000000;
    font-size: 24px;
    margin: 0;
    font-family: 'Press Start 2P', monospace;
    text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-attrs-panel {
    margin-bottom: 20px;
}

.aoher-pixel-attrs-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.aoher-pixel-attr-item {
    background-color: #000000;
    border: 2px solid #555;
    padding: 5px 10px;
    font-family: monospace;
}

.aoher-pixel-wide-attr {
    grid-column: 1 / -1;
}

.aoher-pixel-attr-label {
    display: block;
    color: #000000;
    font-size: 12px;
    margin-bottom: 2px;
}

.aoher-pixel-attr-value {
    display: block;
    color: #000000;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aoher-pixel-action-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.aoher-pixel-primary-btn, .aoher-pixel-secondary-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border: none;
    font-family: monospace;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    image-rendering: pixelated;
}

.aoher-pixel-primary-btn {
    background-color: #000000;
    color: #000000;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.aoher-pixel-secondary-btn {
    background-color: #000000;
    color: #000000;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.aoher-pixel-primary-btn:hover, .aoher-pixel-secondary-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.aoher-pixel-primary-btn:active, .aoher-pixel-secondary-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 #000;
}

.aoher-pixel-btn-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.aoher-pixel-play-icon {
    background-color: #000000;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.aoher-pixel-fav-icon {
    background-color: #000000;
    clip-path: polygon(50% 0%, 65% 35%, 100% 35%, 72% 57%, 85% 100%, 50% 75%, 15% 100%, 28% 57%, 0% 35%, 35% 35%);
}

.aoher-pixel-btn-text {
    font-size: 14px;
}

.aoher-pixel-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aoher-pixel-tag-item {
    background-color: #000000;
    color: #000000;
    padding: 3px 8px;
    border: 1px solid #666;
    font-size: 12px;
    font-family: monospace;
    text-decoration: none;
    transition: all 0.2s;
}

.aoher-pixel-tag-item:hover {
    background-color: #000000;
    color: #000000;
    transform: translateY(-2px);
}

.aoher-pixel-desc-section {
    padding: 20px;
    border-bottom: 4px dashed #444;
}

.aoher-pixel-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.aoher-pixel-header-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: #000000;
}

.aoher-pixel-info-icon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.aoher-pixel-play-list-icon {
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 30%, 0% 60%, 100% 60%, 100% 100%, 0% 100%);
}

.aoher-pixel-related-icon {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.aoher-pixel-section-title {
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-family: monospace;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-desc-content {
    color: #000000;
    line-height: 1.6;
    font-family: monospace;
    padding: 10px;
    background-color: #000000;
    border: 2px solid #555;
}

.aoher-pixel-empty-text {
    color: #000000;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.aoher-pixel-play-section {
    padding: 20px;
    border-bottom: 4px dashed #444;
}

.aoher-pixel-line-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.aoher-pixel-line-tab {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #000000;
    border: 2px solid #555;
    color: #000000;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.2s;
}

.aoher-pixel-line-tab.aoher-pixel-active {
    background-color: #000000;
    color: #000000;
    border-color: #000000;
}

.aoher-pixel-line-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    background-color: currentColor;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.aoher-pixel-line-name {
    font-size: 14px;
}

.aoher-pixel-episodes-wrapper {
    background-color: #000000;
    border: 2px solid #555;
    padding: 15px;
}

.aoher-pixel-hidden {
    display: none;
}

.aoher-pixel-episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
}

.aoher-pixel-episode-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #000000;
    border: 2px solid #666;
    color: #000000;
    font-family: monospace;
    text-decoration: none;
    transition: all 0.2s;
}

.aoher-pixel-episode-btn:hover {
    background-color: #000000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 2px 0 #000;
}

.aoher-pixel-episode-btn.aoher-pixel-current {
    background-color: #000000;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 0 5px #8df776;
}

.aoher-pixel-episode-text {
    font-size: 14px;
}

.aoher-pixel-related-section {
    margin-bottom: 30px;
}

.aoher-pixel-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    padding: 0;
    list-style: none;
}

/* 播放页样式 */
.aoher-pixel-player-frame {
    background-color: #000000;
    border: 2px solid #444;
    box-shadow: 0 0 0 2px #000, 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    overflow: hidden;
    image-rendering: pixelated;
}

.aoher-pixel-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #000000;
    border-bottom: 2px solid #444;
}

.aoher-pixel-player-title {
    display: flex;
    align-items: center;
}

.aoher-pixel-player-title h2 {
    margin: 0;
    font-size: 18px;
    color: #000000;
    font-family: monospace;
    text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-player-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: #000000;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.aoher-pixel-player-info {
    display: flex;
    gap: 15px;
}

.aoher-pixel-player-line {
    background-color: #000000;
    color: #000000;
    padding: 3px 8px;
    font-size: 12px;
    font-family: monospace;
    border: 2px solid #000;
}

.aoher-pixel-player-time {
    color: #000000;
    font-size: 12px;
    font-family: monospace;
}

.aoher-pixel-player-body {
    position: relative;
    padding: 10px;
    background-color: #000000;
}

.aoher-pixel-player-corners {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border: 2px solid #444;
    overflow: hidden;
}

.aoher-pixel-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #000000;
}

.aoher-pixel-corner.top-left {
    top: -2px;
    left: -2px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.aoher-pixel-corner.top-right {
    top: -2px;
    right: -2px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}

.aoher-pixel-corner.bottom-left {
    bottom: -2px;
    left: -2px;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}

.aoher-pixel-corner.bottom-right {
    bottom: -2px;
    right: -2px;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

.aoher-pixel-player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: #000000;
    border-top: 2px solid #444;
}

.aoher-pixel-control-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s;
}

.aoher-pixel-control-btn:hover {
    color: #000000;
    transform: translateY(-3px);
}

.aoher-pixel-control-icon {
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    background-color: currentColor;
}

.aoher-pixel-report-icon {
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 60% 70%, 50% 100%, 40% 70%, 0% 70%);
}

.aoher-pixel-fav-icon {
    clip-path: polygon(50% 0%, 65% 35%, 100% 35%, 72% 57%, 85% 100%, 50% 75%, 15% 100%, 28% 57%, 0% 35%, 35% 35%);
}

.aoher-pixel-detail-icon {
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 30% 30%, 30% 100%, 0% 100%);
}

.aoher-pixel-share-icon {
    clip-path: polygon(50% 0%, 100% 30%, 70% 30%, 70% 100%, 30% 100%, 30% 30%, 0% 30%);
}

.aoher-pixel-control-text {
    font-size: 12px;
    font-family: monospace;
}

.aoher-pixel-video-info-card {
    background-color: #000000;
    border: 2px solid #444;
    box-shadow: 0 0 0 2px #000, 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    padding: 20px;
    image-rendering: pixelated;
}

.aoher-pixel-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.aoher-pixel-card-title {
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-family: monospace;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-card-content {
    margin-bottom: 15px;
}

.aoher-pixel-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.aoher-pixel-info-item {
    background-color: #000000;
    border: 2px solid #555;
    padding: 5px 10px;
    font-family: monospace;
}

.aoher-pixel-info-label {
    display: block;
    color: #000000;
    font-size: 12px;
    margin-bottom: 2px;
}

.aoher-pixel-info-value {
    display: block;
    color: #000000;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aoher-pixel-desc-toggle-wrapper {
    margin-top: 15px;
}

.aoher-pixel-desc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: #000000;
    border: 2px solid #555;
    color: #000000;
    text-decoration: none;
    font-family: monospace;
    cursor: pointer;
}

.aoher-pixel-desc-toggle-text {
    margin-right: 8px;
}

.aoher-pixel-desc-toggle-icon {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s;
}

.aoher-pixel-desc-toggle-icon.aoher-pixel-toggled {
    transform: rotate(180deg);
}

.aoher-pixel-desc-content {
    margin-top: 10px;
    padding: 10px;
    background-color: #000000;
    border: 2px solid #555;
    color: #000000;
    font-family: monospace;
    line-height: 1.6;
}

.aoher-pixel-episodes-section {
    margin-top: 20px;
}

.aoher-pixel-episode-icon {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70%, 70% 70%, 70% 30%, 0% 30%);
}

.aoher-pixel-episode-btn.aoher-pixel-current {
    background-color: #000000;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 0 5px #8df776;
    animation: pixel-pulse 1.5s infinite;
}

@keyframes pixel-pulse {
    0% { box-shadow: 0 0 0 0 rgba(141, 247, 118, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(141, 247, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(141, 247, 118, 0); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .aoher-pixel-detail-main {
        flex-direction: column;
    }
    
    .aoher-pixel-poster-container {
        flex: 0 0 auto;
        width: 180px;
        margin: 0 auto 20px;
    }
    
    .aoher-pixel-info-grid,
    .aoher-pixel-episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .aoher-pixel-game-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .aoher-pixel-player-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .aoher-pixel-player-info {
        margin-top: 10px;
    }
    
    .aoher-pixel-player-controls {
        flex-wrap: wrap;
    }
    
    .aoher-pixel-info-grid {
        grid-template-columns: 1fr;
    }
    
    .aoher-pixel-episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    
    .aoher-pixel-game-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* 播放器主体样式优化 */
.aoher-pixel-player-body {
    position: relative;
    padding: 10px;
    background-color: #000000;
}

.aoher-pixel-player-corners {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border: 2px solid #444;
    overflow: hidden;
}

/* 播放器容器样式 */
.MacPlayer, #player-left-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

/* 确保播放器内部元素也是全屏的 */
.MacPlayer iframe, 
.MacPlayer video,
.MacPlayer object,
.MacPlayer embed,
#player-left-container iframe,
#player-left-container video,
#player-left-container object,
#player-left-container embed {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
    background-color: #000000;
}

/* 响应式播放器调整 */
@media (max-width: 1200px) {
    .aoher-pixel-player-frame {
        margin-bottom: 25px;
    }
    
    .aoher-pixel-player-header {
        padding: 8px 12px;
    }
    
    .aoher-pixel-player-title h2 {
        font-size: 16px;
    }
    
    .aoher-pixel-player-controls {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .aoher-pixel-player-frame {
        margin-bottom: 20px;
    }
    
    .aoher-pixel-player-body {
        padding: 8px;
    }
    
    .aoher-pixel-player-corners {
        padding-bottom: 58%; /* 略微调整宽高比，适应平板 */
    }
    
    .aoher-pixel-player-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .aoher-pixel-player-info {
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .aoher-pixel-player-frame {
        margin-bottom: 15px;
    }
    
    .aoher-pixel-player-body {
        padding: 5px;
    }
    
    .aoher-pixel-player-corners {
        padding-bottom: 60%; /* 小平板和大手机的宽高比 */
    }
    
    .aoher-pixel-player-title h2 {
        font-size: 14px;
    }
    
    .aoher-pixel-player-controls {
        padding: 10px;
        gap: 10px;
    }
    
    .aoher-pixel-control-icon {
        width: 20px;
        height: 20px;
    }
    
    .aoher-pixel-control-text {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .aoher-pixel-player-frame {
        margin-bottom: 10px;
    }
    
    .aoher-pixel-player-body {
        padding: 3px;
    }
    
    .aoher-pixel-player-corners {
        padding-bottom: 56.25%; /* 恢复到16:9比例，但容器更小 */
        border-width: 1px;
    }
    
    .aoher-pixel-player-header {
        padding: 5px 8px;
    }
    
    .aoher-pixel-player-title h2 {
        font-size: 12px;
    }
    
    .aoher-pixel-player-icon {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
    
    .aoher-pixel-player-line {
        padding: 2px 5px;
        font-size: 10px;
    }
    
    .aoher-pixel-player-time {
        font-size: 10px;
    }
    
    .aoher-pixel-player-controls {
        padding: 8px 5px;
        gap: 8px;
    }
    
    .aoher-pixel-control-icon {
        width: 16px;
        height: 16px;
        margin-bottom: 3px;
    }
    
    .aoher-pixel-control-text {
        font-size: 9px;
    }
    
    .aoher-pixel-corner {
        width: 6px;
        height: 6px;
    }
}

/* 竖屏手机的特别处理 */
@media (max-width: 480px) {
    .aoher-pixel-player-corners {
        padding-bottom: 62%; /* 竖屏手机调整为更接近方形的比例 */
    }
    
    .aoher-pixel-player-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 超小屏幕设备的特别处理 */
@media (max-width: 360px) {
    .aoher-pixel-player-corners {
        padding-bottom: 65%; /* 超小屏手机的高宽比 */
    }
}

/* 横屏模式下的特别优化 */
@media (max-height: 500px) and (orientation: landscape) {
    .aoher-pixel-player-corners {
        padding-bottom: 52%; /* 横屏模式下稍微降低高度比例 */
    }
    
    .aoher-pixel-player-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 8px;
    }
    
    .aoher-pixel-player-info {
        margin-top: 0;
    }
}

/*  - 搜索页面 */

/* 搜索头部 */
.aoher-pixel-search-header {
    margin-bottom: 25px;
    background-color: #000000;
    border: 4px solid #333;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    image-rendering: pixelated;
}

.aoher-pixel-search-header::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #000;
    pointer-events: none;
    z-index: 1;
}

.aoher-pixel-search-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
    background-color: #000000;
    border: 2px solid #444;
    padding: 10px;
    position: relative;
}

.aoher-pixel-search-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 5px,
        rgba(0, 0, 0, 0) 5px,
        rgba(0, 0, 0, 0) 10px
    );
    pointer-events: none;
}

.aoher-pixel-search-term-box,
.aoher-pixel-result-count-box {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #000000;
    border: 2px solid #333;
    margin: 5px;
}

.aoher-pixel-search-label,
.aoher-pixel-count-label {
    color: #000000;
    font-family: monospace;
    font-size: 14px;
    margin-right: 10px;
    text-transform: uppercase;
}

.aoher-pixel-search-value,
.aoher-pixel-count-value {
    color: #000000;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 8px;
    background-color: #000000;
    border: 1px solid #444;
    text-shadow: 1px 1px 0 #000;
    animation: aoher-pixel-blink 2s infinite;
}

@keyframes aoher-pixel-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 搜索筛选器 */
.aoher-pixel-search-filter {
    margin-bottom: 25px;
    background-color: #000000;
    border: 4px solid #333;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.aoher-pixel-filter-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.aoher-pixel-filter-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: #000000;
    clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 30%, 0% 60%, 100% 60%, 100% 100%, 0% 100%);
}

.aoher-pixel-filter-title {
    color: #000000;
    font-family: monospace;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aoher-pixel-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 8px 15px;
    background-color: #000000;
    border: 2px solid #555;
    color: #000000;
    font-family: monospace;
    text-decoration: none;
    transition: all 0.2s;
}

.aoher-pixel-filter-btn:hover {
    background-color: #000000;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 3px 0 #000;
}

.aoher-pixel-filter-btn.aoher-pixel-active {
    background-color: #000000;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 0 5px #8df776;
}

/* 搜索结果 */
.aoher-pixel-search-results {
    margin-bottom: 25px;
    background-color: #000000;
    border: 4px solid #333;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.aoher-pixel-results-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.aoher-pixel-results-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: #000000;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.aoher-pixel-results-title {
    color: #000000;
    font-family: monospace;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

/* 空结果样式 */
.aoher-pixel-empty-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #000000;
    border: 2px solid #444;
    text-align: center;
}

.aoher-pixel-empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background-color: #000000;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: aoher-pixel-rotate 10s linear infinite;
}

@keyframes aoher-pixel-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.aoher-pixel-empty-text {
    color: #000000;
    font-family: monospace;
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
}

.aoher-pixel-return-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #000000;
    border: 2px solid #000;
    color: #000000;
    font-family: monospace;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 3px 3px 0 #000;
    transition: all 0.2s;
}

.aoher-pixel-return-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.aoher-pixel-return-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 #000;
}

/* 分页容器 */
.aoher-pixel-pagination-wrapper {
    margin-bottom: 30px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .aoher-pixel-search-info {
        flex-direction: column;
    }
    
    .aoher-pixel-search-term-box,
    .aoher-pixel-result-count-box {
        width: 100%;
        margin: 5px 0;
    }
    
    .aoher-pixel-filter-options {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .aoher-pixel-search-header,
    .aoher-pixel-search-filter,
    .aoher-pixel-search-results {
        padding: 10px;
        border-width: 2px;
    }
    
    .aoher-pixel-filter-title,
    .aoher-pixel-results-title {
        font-size: 16px;
    }
    
    .aoher-pixel-search-label,
    .aoher-pixel-count-label {
        font-size: 12px;
    }
    
    .aoher-pixel-search-value,
    .aoher-pixel-count-value {
        font-size: 14px;
    }
    
    .aoher-pixel-filter-btn {
        min-width: 60px;
        padding: 6px 10px;
    }
    
    .aoher-pixel-empty-icon {
        width: 48px;
        height: 48px;
    }
    
    .aoher-pixel-empty-text {
        font-size: 16px;
    }
}

/* 搜索页视频网格优化 */
.aoher-pixel-search-results .aoher-pixel-game-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* 搜索页视频卡片高度统一 */
.aoher-pixel-search-results .aoher-pixel-game-item {
  display: flex;
  height: 100%;
}

.aoher-pixel-search-results .aoher-pixel-game-item a {
  display: flex;
  width: 100%;
  height: 100%;
}

/* 搜索页视频封面优化 */
.aoher-pixel-search-results .aoher-pixel-game-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.aoher-pixel-search-results .aoher-pixel-game-screen {
  padding-top: 150%; /* 保持2:3比例，适合竖图 */
  position: relative;
  overflow: hidden;
  background-color: #000000;
  border: 2px solid #333;
}

.aoher-pixel-search-results .aoher-pixel-game-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 确保图片填满容器 */
  image-rendering: pixelated;
  transition: all 0.5s;
}

/* 搜索页视频信息区统一样式 */
.aoher-pixel-search-results .aoher-pixel-game-info {
  padding: 10px;
  background: #d4af37;
  border-top: 2px solid #333;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 搜索页视频标题优化 */
.aoher-pixel-game-title {
  color: #000000;
  font-size: 12px;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
  min-height: 15px;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .aoher-pixel-search-results .aoher-pixel-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .aoher-pixel-search-results .aoher-pixel-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .aoher-pixel-game-title {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .aoher-pixel-search-results .aoher-pixel-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
  }
  
  .aoher-pixel-game-info {
    padding: 8px 5px;
  }
  
  .aoher-pixel-game-title {
    font-size: 10px;
    margin-bottom: 3px;
  }
  
  .aoher-pixel-game-meta {
    font-size: 9px;
  }
}

/* 确保图片加载过渡效果 */
.aoher-pixel-game-screen img.lazy {
  opacity: 0;
  transition: opacity 0.5s;
}

.aoher-pixel-game-screen img.lazy.loaded {
  opacity: 1;
}

/* 确保搜索页的封面图片加载效果一致 */
.aoher-pixel-search-results .aoher-pixel-game-screen img.lazy {
  opacity: 0;
  transition: opacity 0.5s;
  background-color: #000000;
}

.aoher-pixel-search-results .aoher-pixel-game-screen img.lazy.loaded {
  opacity: 1;
}

/* 搜索页视频卡片悬停效果 */
.aoher-pixel-search-results .aoher-pixel-game-item:hover .aoher-pixel-game-card {
  border-color: #000000;
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
}

.aoher-pixel-search-results .aoher-pixel-game-item:hover .aoher-pixel-game-screen img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.aoher-pixel-search-results .aoher-pixel-game-item:hover .aoher-pixel-game-overlay {
  opacity: 1;
}

/* 添加视频封面图片的样式 */
.lazy-load {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  opacity: 0.5;
}

.lazy-load.loaded {
  opacity: 1;
}

.aoher-video-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

/* 修复详情页海报样式 */
.aoher-poster-img.lazy-load {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

