/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
a {
  text-decoration: none;
}

/* 顶部导航 */
.idbn-tech-header {
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.2);
  z-index: 100;
}

.idbn-tech-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
  animation: idbn-scan-line 4s linear infinite;
}

.idbn-tech-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
  animation: idbn-scan-line 4s linear infinite reverse;
}

.idbn-tech-container {
  position: relative;
  padding: 0.5rem 0;
}

.idbn-tech-logo {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  position: relative;
}

.idbn-tech-logo h1 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
  text-shadow: 0 0 5px rgba(0, 200, 255, 0.7);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.idbn-tech-logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 70%;
  background: rgba(232,239,255,0.85);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.9);
  border-radius: 0 4px 4px 0;
}

.idbn-tech-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
}

.idbn-tech-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.idbn-tech-nav li {
  position: relative;
  margin: 0 4px;
}

.idbn-tech-nav li::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(232,239,255,0.85);
  transition: width 0.3s ease;
}

.idbn-tech-nav li:hover::before,
.idbn-tech-nav li.active::before {
  width: 100%;
}

.idbn-tech-nav a {
  display: block;
  padding: 0 15px;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.idbn-tech-nav a:hover,
.idbn-tech-nav li.active a {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.8);
}

/* 搜索框 */
.idbn-tech-search {
  background: rgba(232,239,255,0.85);
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.idbn-tech-search-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.8);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding-left: 15px;
  display: flex;
  align-items: center;
  height: 40px;
}

/* 搜索框宽度 */
.idbn-tech-search .container,
.idbn-tech-search .row,
.idbn-tech-search .col-xs-12,
.idbn-tech-search .col-sm-8,
.idbn-tech-search .col-md-9 {
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.idbn-tech-search-form {
  position: relative;
  height: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.idbn-tech-search-input {
  width: 100%;
  height: 40px;
  padding: 0 50px 0 15px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  background: rgba(232,239,255,0.85);
  border-radius: 4px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s;
  outline: none;
  box-sizing: border-box;
}

.idbn-tech-search-input:focus {
  border-color: rgba(0, 200, 255, 0.7);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}

.idbn-tech-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.idbn-tech-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 50px;
  background: transparent;
  border: none;
  color: rgba(0, 200, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.idbn-tech-search-btn:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 1);
}

/* 搜索图标样式 */
.idbn-tech-search-icon {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  color: white;
  text-shadow: 0 0 5px rgba(0, 150, 255, 0.8);
  transition: all 0.3s ease;
}

.idbn-tech-search-btn:hover .idbn-tech-search-icon {
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(0, 180, 255, 1);
}

/* 移动菜单 */
.idbn-tech-mobile-toggle {
  width: 40px;
  height: 40px;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  margin-right: 15px;
}

.idbn-tech-mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: rgba(0, 200, 255, 0.8);
  margin: 2px 0;
  transition: all 0.3s;
  position: relative;
}

.idbn-tech-mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(232,239,255,0.85);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.idbn-tech-mobile-menu.active {
  right: 0;
}

.idbn-tech-mobile-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.idbn-tech-mobile-header h4 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.8);
}

.idbn-tech-mobile-close {
  color: rgba(0, 200, 255, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.idbn-tech-mobile-close:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 1);
}

.idbn-tech-mobile-nav {
  padding: 15px 0;
}

.idbn-tech-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.idbn-tech-mobile-nav li {
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.idbn-tech-mobile-nav a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-mobile-nav a:hover {
  background: rgba(232,239,255,0.85);
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.8);
}

/* 科技感扫描线和高亮效果 */
.idbn-tech-scan-line {
  position: absolute;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, 
                             transparent, 
                             rgba(0, 200, 255, 0.05) 20%, 
                             rgba(0, 200, 255, 0.1) 50%,
                             rgba(0, 200, 255, 0.05) 80%,
                             transparent);
  top: 0;
  left: 0;
  opacity: 0.7;
  pointer-events: none;
  animation: idbn-scan-vertical 3s linear infinite;
}

.idbn-tech-active-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: rgba(0, 200, 255, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  box-shadow: 0 0 8px rgba(0, 200, 255, 0.9);
  animation: idbn-pulse 2s infinite;
}

.idbn-tech-search-active .idbn-tech-search-input {
  border-color: rgba(0, 200, 255, 0.7);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
  background: rgba(232,239,255,0.85);
}

.idbn-tech-loaded .idbn-tech-logo h1 {
  animation: idbn-glow 2s infinite alternate;
}

/* 视频列表 */
.idbn-tech-layout {
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.idbn-tech-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-layout::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-layout-head {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.idbn-tech-layout-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 50%;
  background: rgba(232,239,255,0.85);
  border-radius: 0 2px 2px 0;
}

.idbn-tech-layout-head h4 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 12px;
  position: relative;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

.idbn-tech-layout-head a {
  color: rgba(0, 200, 255, 0.7);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.idbn-tech-layout-head a i {
  margin-right: 5px;
}

.idbn-tech-layout-head a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.9);
}

.idbn-tech-layout-body {
  padding: 15px;
}

/* 视频列表 - 自适应布局 */
.idbn-tech-video-item {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  padding: 0 5px;
}

.idbn-tech-video-item:hover {
  transform: translateY(-5px);
}

.idbn-tech-video-cover {
  position: relative;
  height: 0;
  padding-bottom: 130%;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background-size: cover !important;
  background-position: center center !important;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.idbn-tech-video-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
                             rgba(10, 15, 30, 0) 50%, 
                             rgba(10, 15, 30, 0.8) 100%);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.idbn-tech-video-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 200, 255, 0);
  box-shadow: inset 0 0 0 transparent;
  transition: all 0.3s;
  border-radius: 4px;
}

.idbn-tech-video-item:hover .idbn-tech-video-cover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.idbn-tech-video-item:hover .idbn-tech-video-cover::after {
  border: 1px solid rgba(0, 200, 255, 0.3);
  box-shadow: inset 0 0 15px rgba(0, 180, 255, 0.2);
}

.idbn-tech-video-item:hover .idbn-tech-video-cover::before {
  opacity: 0.9;
}

.idbn-tech-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(232,239,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(0, 200, 255, 0.3);
}

.idbn-tech-video-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(0, 200, 255, 0.7);
  margin-left: 4px;
}

.idbn-tech-video-item:hover .idbn-tech-video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.idbn-tech-video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(232,239,255,0.85);
  color: rgba(0, 200, 255, 0.9);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  border-radius: 2px;
  text-shadow: 0 0 5px rgba(0, 180, 255, 0.5);
  border-left: 2px solid rgba(0, 200, 255, 0.6);
  z-index: 1;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.idbn-tech-video-title {
  margin: 10px 0 5px;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.idbn-tech-video-title a {
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-video-title a:hover {
  color: rgba(0, 200, 255, 0.9);
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

.idbn-tech-video-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.idbn-tech-video-info span.idbn-tech-time {
  color: rgba(0, 200, 255, 0.7);
}

/* 分页 */
.idbn-tech-pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  position: relative;
}

.idbn-tech-pagination::before,
.idbn-tech-pagination::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 30%;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
  top: 50%;
  transform: translateY(-50%);
}

.idbn-tech-pagination::before {
  left: 0;
}

.idbn-tech-pagination::after {
  right: 0;
}

.idbn-tech-pagination ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 15px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.idbn-tech-pagination li {
  margin: 5px 3px;
}

.idbn-tech-pagination a,
.idbn-tech-pagination span,
.idbn-tech-pagination em,
.idbn-tech-pagination strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(0, 200, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.idbn-tech-pagination a::before,
.idbn-tech-pagination span::before,
.idbn-tech-pagination em::before,
.idbn-tech-pagination strong::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: rgba(232,239,255,0.85);
  transition: all 0.3s;
}

.idbn-tech-pagination a:hover {
  border-color: rgba(0, 200, 255, 0.5);
  background: rgba(232,239,255,0.85);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
  transform: translateY(-2px);
}

.idbn-tech-pagination a:hover::before {
  left: 0;
}

.idbn-tech-pagination span.active,
.idbn-tech-pagination em,
.idbn-tech-pagination strong,
.idbn-tech-pagination span.current {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}

.idbn-tech-pagination span.active::before,
.idbn-tech-pagination em::before,
.idbn-tech-pagination strong::before,
.idbn-tech-pagination span.current::before {
  left: 0;
  background: rgba(232,239,255,0.85);
}

.idbn-tech-pagination .pagego {
  display: flex;
  align-items: center;
  margin: 5px 3px;
}

.idbn-tech-pagination .pagego input {
  width: 50px;
  height: 38px;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 4px 0 0 4px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  padding: 0 10px;
  text-align: center;
}

.idbn-tech-pagination .pagego button {
  height: 38px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-left: none;
  border-radius: 0 4px 4px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  padding: 0 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.idbn-tech-pagination .pagego button:hover {
  background: rgba(232,239,255,0.85);
  color: #fff;
}

/* 兼容默认分页样式 */
.mac_pages {
  display: none; /* 隐藏默认分页*/
}

/* 响应式调整 */
@media (max-width: 767px) {
  .idbn-tech-pagination::before,
  .idbn-tech-pagination::after {
    display: none;
  }
  
  .idbn-tech-pagination a,
  .idbn-tech-pagination span,
  .idbn-tech-pagination em,
  .idbn-tech-pagination strong {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 0.8rem;
  }
  
  .idbn-tech-pagination .pagego input {
    width: 40px;
    height: 34px;
    font-size: 0.8rem;
  }
  
  .idbn-tech-pagination .pagego button {
    height: 34px;
    font-size: 0.8rem;
    padding: 0 8px;
  }
  
  /* 搜索框移动端优化 */
  .idbn-tech-search {
    padding: 10px 0;
  }
  
  .idbn-tech-search-form {
    padding: 0 15px;
  }
  
  .idbn-tech-search-input {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* 小屏幕搜索框优化 */
  .idbn-tech-search-form {
    padding: 0 10px;
  }
  
  .idbn-tech-search-input {
    font-size: 13px;
    padding: 0 40px 0 10px;
  }
  
  .idbn-tech-search-btn {
    width: 40px;
  }
}

/* 面包屑导航和高亮 */
.idbn-tech-crumb {
  padding: 12px 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
}

.idbn-tech-crumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-crumb a:hover {
  color: rgba(0, 200, 255, 0.9);
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

.idbn-tech-divider {
  margin: 0 10px;
  color: rgba(0, 200, 255, 0.5);
}

.idbn-tech-highlight {
  color: rgba(0, 200, 255, 0.9);
  text-shadow: 0 0 5px rgba(0, 180, 255, 0.5);
  font-family: 'Orbitron', sans-serif;
}

/* 视频网格布局自适应 */
.idbn-tech-video-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

/* 增强响应式布局 */
@media (min-width: 1200px) {
  .idbn-tech-video-grid .col-md-3 {
    width: 16.66666%; /* 大屏幕显示6列 */
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .idbn-tech-video-grid .col-md-3 {
    width: 20%; /* 中等屏幕显示5列 */
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .idbn-tech-video-grid .col-sm-4 {
    width: 25%; /* 平板显示4列 */
  }
  
  .idbn-tech-video-cover {
    padding-bottom: 120%;
  }
}

@media (max-width: 767px) and (min-width: 480px) {
  .idbn-tech-video-grid .col-xs-6 {
    width: 25%; /* 小屏幕显示4列 */
  }
  
  .idbn-tech-video-cover {
    padding-bottom: 120%;
  }
  
  .idbn-tech-video-title {
    font-size: 12px;
  }
  
  .idbn-tech-video-info {
    font-size: 10px;
  }
}

@media (max-width: 479px) {
  .idbn-tech-video-grid .col-xs-6 {
    width: 33.33333%; /* 超小屏幕显示3列 */
  }
  
  .idbn-tech-video-cover {
    padding-bottom: 110%;
  }
  
  .idbn-tech-video-badge {
    padding: 2px 6px;
    font-size: 10px;
    max-width: 60%;
  }
  
  .idbn-tech-video-title {
    margin: 8px 0 4px;
  }
  
  .idbn-tech-video-title a {
    font-size: 12px;
  }
  
  .idbn-tech-video-info {
    font-size: 10px;
  }
  
  .idbn-tech-layout-head h4 {
    font-size: 14px;
  }
}

@media (max-width: 359px) {
  .idbn-tech-video-badge {
    padding: 1px 4px;
    font-size: 9px;
  }
  
  .idbn-tech-video-title a {
    font-size: 11px;
  }
}

body {
  background-color: #0a0a1a;
  background-image: radial-gradient(circle at 50% 50%, #e1fcff 0%, #74baa9 100%);
  background-attachment: fixed;
  color: #fff;
}

/* 动画效果 */
@keyframes idbn-scan-line {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes idbn-scan-vertical {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

@keyframes idbn-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes idbn-glow {
  0% {
    text-shadow: 0 0 5px rgba(0, 200, 255, 0.7);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 200, 255, 1), 0 0 30px rgba(0, 100, 255, 0.5);
  }
}

@keyframes idbn-badge-pulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 200, 255, 0);
    background: rgba(232,239,255,0.85);
  }
  50% {
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    background: rgba(232,239,255,0.85);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 200, 255, 0);
    background: rgba(232,239,255,0.85);
  }
}

@keyframes idbn-glitch {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  20% {
    transform: translate(-5px, 5px);
    opacity: 0.8;
  }
  40% {
    transform: translate(5px, -5px);
    opacity: 0.9;
  }
  60% {
    transform: translate(-5px, -5px);
    opacity: 0.8;
  }
  80% {
    transform: translate(5px, 5px);
    opacity: 0.9;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

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

/* 响应式设计 */
@media (max-width: 991px) {
  .idbn-tech-nav {
    display: none;
  }
  
  .idbn-tech-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 767px) {
  .idbn-tech-search-title {
    display: none;
  }
  
  .idbn-tech-logo h1 {
    font-size: 1.5rem;
  }
  
  .idbn-tech-video-info {
    font-size: 0.75rem;
  }
}

.idbn-tech-badge-glow {
  animation: idbn-badge-pulse 1.5s infinite;
}

.idbn-tech-link a {
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 3px 10px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.idbn-tech-link a:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.4);
  color: #fff;
  box-shadow: 0 0 8px rgba(0, 200, 255, 0.3);
}

.idbn-tech-glitch {
  animation: idbn-glitch 0.5s;
}

.idbn-tech-rotate {
  animation: idbn-rotate 1s;
}

/* 底部 */
.idbn-tech-footer {
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
  position: relative;
  overflow: hidden;
  padding: 40px 0 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.idbn-tech-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.idbn-tech-footer-section {
  position: relative;
  padding-left: 15px;
}

.idbn-tech-footer-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 3px;
  height: 15px;
  background: rgba(232,239,255,0.85);
  border-radius: 0 2px 2px 0;
}

.idbn-tech-footer-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
  position: relative;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
  display: inline-block;
}

.idbn-tech-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.idbn-tech-footer-links li {
  margin-bottom: 10px;
}

.idbn-tech-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 15px;
  transition: all 0.3s;
}

.idbn-tech-footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(232,239,255,0.85);
  transition: all 0.3s;
}

.idbn-tech-footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

.idbn-tech-footer-links a:hover::before {
  background: rgba(232,239,255,0.85);
  box-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

.idbn-tech-footer-text {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.idbn-tech-footer-text a {
  color: rgba(0, 200, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-footer-text a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

.idbn-tech-footer-copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  position: relative;
}

.idbn-tech-footer-copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.idbn-tech-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.3s;
}

.idbn-tech-footer-social a:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.5);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.idbn-tech-rss-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.idbn-tech-rss-links a {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-rss-links a:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.idbn-tech-gotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  list-style: none;
  padding: 0;
  margin: 0;
}

.idbn-tech-gotop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 50%;
  color: rgba(0, 200, 255, 0.7);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.idbn-tech-gotop a.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.idbn-tech-gotop a:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.6);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 响应式适配 */
@media (max-width: 991px) {
  .idbn-tech-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .idbn-tech-footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .idbn-tech-footer {
    padding: 30px 0 15px;
  }
  
  .idbn-tech-footer-social {
    justify-content: center;
  }
  
  .idbn-tech-gotop {
    bottom: 20px;
    right: 20px;
  }
  
  .idbn-tech-gotop a {
    width: 40px;
    height: 40px;
  }
}

/* 视频详情页 */
.idbn-tech-detail-container {
  position: relative;
  background: rgba(10, 15, 30, 0.7);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.idbn-tech-detail-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-detail-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-detail-media {
  display: flex;
  padding: 25px;
  position: relative;
}

.idbn-tech-detail-poster {
  position: relative;
  width: 260px;
  flex-shrink: 0;
  margin-right: 25px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.idbn-tech-detail-poster::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 15, 30, 0) 50%, rgba(10, 15, 30, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.idbn-tech-detail-poster::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 15, 30, 0) 50%, rgba(10, 15, 30, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.idbn-tech-detail-cover {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  background-size: cover !important;
  background-position: center center !important;
  transition: all 0.5s ease;
  position: relative;
}

.idbn-tech-detail-poster:hover .idbn-tech-detail-cover {
  transform: scale(1.05);
}

.idbn-tech-detail-status {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(232,239,255,0.85);
  color: rgba(0, 200, 255, 0.9);
  border-left: 2px solid rgba(0, 200, 255, 0.6);
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 2px;
  z-index: 2;
  text-shadow: 0 0 5px rgba(0, 180, 255, 0.5);
  font-family: 'Orbitron', sans-serif;
}

.idbn-tech-detail-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.4);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.idbn-tech-detail-play-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgba(0, 200, 255, 0.9);
  margin-left: 4px;
}

.idbn-tech-detail-poster:hover .idbn-tech-detail-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}

.idbn-tech-detail-info {
  flex-grow: 1;
}

.idbn-tech-detail-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 15px;
  padding-bottom: 12px;
  position: relative;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

.idbn-tech-detail-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: rgba(232,239,255,0.85);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.8);
}

.idbn-tech-detail-score {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 50%;
  color: rgba(0, 200, 255, 0.9);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.idbn-tech-detail-row {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.idbn-tech-detail-row:last-child {
  margin-bottom: 0;
}

.idbn-tech-detail-label {
  color: rgba(255, 255, 255, 0.5);
  width: 60px;
  flex-shrink: 0;
}

.idbn-tech-detail-value {
  color: rgba(255, 255, 255, 0.85);
  flex-grow: 1;
}

.idbn-tech-detail-value a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s;
}

.idbn-tech-detail-value a:hover {
  color: rgba(0, 200, 255, 0.9);
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

/* 播放列表 */
.idbn-tech-playlist-container {
  position: relative;
  background: rgba(10, 15, 30, 0.7);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.idbn-tech-playlist-head {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
  position: relative;
}

.idbn-tech-playlist-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: rgba(232,239,255,0.85);
  border-radius: 0 2px 2px 0;
}

.idbn-tech-playlist-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

.idbn-tech-playlist-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.idbn-tech-playlist-body {
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden; /* 防止内容溢出 */
}

.idbn-tech-playlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  width: 100%; /* 确保列表占据整个容器宽度 */
  box-sizing: border-box; /* 确保边距计算正确 */
}

.idbn-tech-playlist li {
  padding: 5px;
  width: 16.666667%;
  box-sizing: border-box; /* 确保内边距不会增加宽度 */
}

.idbn-tech-playlist a {
  display: block;
  padding: 8px 5px;
  text-align: center;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.idbn-tech-playlist a:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.idbn-tech-playlist a.active {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

/* 相关视频 */
.idbn-tech-related-container {
  position: relative;
  background: rgba(10, 15, 30, 0.7);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.idbn-tech-related-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

.idbn-tech-related-container .idbn-tech-video-grid {
  margin: 0 -5px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* 防止内容溢出 */
}

.idbn-tech-related-container .idbn-tech-video-grid .col-md-3,
.idbn-tech-related-container .idbn-tech-video-grid .col-sm-4,
.idbn-tech-related-container .idbn-tech-video-grid .col-xs-6 {
  padding: 0 5px;
  margin-bottom: 10px;
  box-sizing: border-box; /* 确保内边距不会增加宽度 */
}

/* 视频信息标签 */
.idbn-tech-detail-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.idbn-tech-detail-tag {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 4px 10px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: all 0.3s;
}

.idbn-tech-detail-tag:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 767px) {
  .idbn-tech-detail-media {
    flex-direction: column;
    padding: 15px;
  }
  
  .idbn-tech-detail-poster {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .idbn-tech-detail-score {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .idbn-tech-detail-title {
    font-size: 1.4rem;
    padding-right: 60px;
  }
  
  .idbn-tech-playlist {
    margin: -3px; /* 减小间距 */
    width: 100%; /* 确保全宽 */
  }
  
  .idbn-tech-playlist li {
    width: 25%; /* 手机端四列显示 */
    padding: 3px; /* 减小内边距 */
    box-sizing: border-box;
  }
  
  .idbn-tech-playlist a {
    padding: 6px 3px; /* 减小按钮内边距 */
    font-size: 12px; /* 减小字体 */
  }
  
  .idbn-tech-playlist-head {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .idbn-tech-playlist-note {
    margin-top: 5px;
    padding-left: 15px;
  }
  
  /* 优化猜你喜欢在手机端显示 */
  .idbn-tech-related-container .idbn-tech-video-grid {
    width: 100%;
    margin: 0 -3px; /* 减小间距 */
  }
  
  .idbn-tech-related-container .idbn-tech-video-grid .col-xs-6 {
    width: 33.33333%; /* 在手机端显示三列 */
    padding: 0 3px; /* 减小内边距 */
    box-sizing: border-box;
  }
  
  .idbn-tech-related-container .idbn-tech-video-title {
    font-size: 12px;
    margin: 8px 0 2px;
  }
  
  .idbn-tech-related-container .idbn-tech-video-info {
    font-size: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .idbn-tech-playlist li {
    width: 20%; /* 平板端五列显示 */
  }
}

@media (max-width: 480px) {
  .idbn-tech-playlist li {
    width: 33.333333%; /* 小屏幕三列显示 */
  }
  
  .idbn-tech-playlist-body {
    padding: 8px; /* 更小的内边距 */
  }
  
  .idbn-tech-playlist a {
    padding: 5px 2px;
    font-size: 11px;
  }
  
  /* 极小屏幕进一步优化猜你喜欢 */
  .idbn-tech-related-container .idbn-tech-video-grid {
    margin: 0 -2px; /* 更小的间距 */
  }
  
  .idbn-tech-related-container .idbn-tech-video-grid .col-xs-6 {
    width: 50%; /* 在小屏手机显示两列 */
    padding: 0 2px; /* 更小的内边距 */
  }
}

@media (max-width: 359px) {
  .idbn-tech-playlist li {
    width: 50%; /* 超小屏幕两列显示 */
  }
  
  .idbn-tech-playlist-body {
    padding: 5px; /* 极小的内边距 */
  }
  
  .idbn-tech-related-container .idbn-tech-video-grid .col-xs-6 {
    padding: 0 2px; /* 极小的内边距 */
  }
}

/* 详情页按钮动画效果 */
@keyframes idbn-tech-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.4);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 200, 255, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 255, 0);
  }
}

.idbn-tech-pulse {
  animation: idbn-tech-pulse 1s ease-in-out;
}

.idbn-tech-animated-in {
  animation: idbn-tech-fade-in 0.5s forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes idbn-tech-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.idbn-tech-playlist-clicked {
  animation: idbn-tech-click 0.5s;
}

@keyframes idbn-tech-click {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background: rgba(232,239,255,0.85);
  }
  100% {
    transform: translateY(0);
  }
}

/* 视频播放页 */
.idbn-tech-player-container {
  position: relative;
  background: rgba(10, 15, 30, 0.7);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.idbn-tech-player-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
  z-index: 1;
}

.idbn-tech-player-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, rgba(232,239,255,0.9), rgba(232,239,255,0.7));
}

.idbn-tech-player-wrap {
  position: relative;
  padding: 0;
  background: #000;
  aspect-ratio: 16/9;
  max-height: 70vh;
  width: 100%;
  overflow: hidden;
}

/* 强制播放器内容铺满容器的关键样式 */
#player {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  z-index: 1 !important;
  background: #000 !important;
}

#player iframe,
#player video,
#player embed,
#player object {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  border: none !important;
  outline: none !important;
}

.idbn-tech-player-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.idbn-tech-player-loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.idbn-tech-player-spinner {
  width: 80px;
  height: 80px;
  position: relative;
}

.idbn-tech-player-spinner::before,
.idbn-tech-player-spinner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(0, 200, 255, 0.8);
  animation: idbn-tech-spin 1.5s linear infinite;
}

.idbn-tech-player-spinner::before {
  z-index: 10;
}

.idbn-tech-player-spinner::after {
  border: 3px solid rgba(0, 200, 255, 0.2);
}

@keyframes idbn-tech-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.idbn-tech-player-controls {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.idbn-tech-player-title {
  display: flex;
  align-items: center;
}

.idbn-tech-player-title-text {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

.idbn-tech-player-episode {
  margin-left: 10px;
  padding: 3px 8px;
  background: rgba(232,239,255,0.85);
  border-radius: 3px;
  color: rgba(0, 200, 255, 0.8);
  font-size: 0.85rem;
  border-left: 2px solid rgba(0, 200, 255, 0.6);
}

.idbn-tech-player-actions {
  display: flex;
  align-items: center;
}

.idbn-tech-player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  margin-left: 10px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-player-btn i {
  margin: 0 5px;
}

.idbn-tech-player-btn:hover {
  background: rgba(232,239,255,0.85);
  border-color: rgba(0, 200, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.idbn-tech-player-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* 播放地址选择器 */
.idbn-tech-source-container {
  position: relative;
  background: rgba(10, 15, 30, 0.7);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.idbn-tech-source-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
  padding: 0 15px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.idbn-tech-source-tab {
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.idbn-tech-source-tab.active {
  color: #fff;
}

.idbn-tech-source-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(232,239,255,0.85);
  transition: width 0.3s ease;
}

.idbn-tech-source-tab.active::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.6);
}

.idbn-tech-source-panel {
  display: none;
  padding: 20px;
}

.idbn-tech-source-panel.active {
  display: block;
}

.idbn-tech-episode-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.idbn-tech-episode-btn {
  position: relative;
  padding: 10px 5px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.idbn-tech-episode-btn:hover {
  border-color: rgba(0, 200, 255, 0.4);
  background: rgba(232,239,255,0.85);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.idbn-tech-episode-btn.active {
  border-color: rgba(0, 200, 255, 0.6);
  background: rgba(232,239,255,0.85);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

.idbn-tech-episode-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(232,239,255,0.85);
  box-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
}

/* 播放器报错提示 */
.idbn-tech-error-tip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(232,239,255,0.85);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.idbn-tech-error-tip.show {
  opacity: 1;
  visibility: visible;
}

.idbn-tech-error-message {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
  text-align: center;
  padding: 0 20px;
}

.idbn-tech-error-actions {
  display: flex;
  gap: 10px;
}

.idbn-tech-error-btn {
  padding: 8px 15px;
  background: rgba(232,239,255,0.85);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.idbn-tech-error-btn:hover {
  background: rgba(232,239,255,0.85);
  transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 767px) {
  .idbn-tech-player-wrap {
    aspect-ratio: 16/9;
  }
  
  .idbn-tech-player-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .idbn-tech-player-actions {
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
  }
  
  .idbn-tech-player-btn {
    padding: 5px 10px;
    margin-left: 0;
  }
  
  .idbn-tech-player-title-text {
    font-size: 1rem;
  }
  
  /* 优化源选择按钮和集数列表在手机上的显示 */
  .idbn-tech-source-tab {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .idbn-tech-source-panel {
    padding: 15px 10px;
  }
  
  .idbn-tech-episode-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .idbn-tech-episode-btn {
    padding: 8px 3px;
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .idbn-tech-episode-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 480px) {
  /* 小屏手机上使用三列显示集数 */
  .idbn-tech-episode-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  
  .idbn-tech-source-tab {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .idbn-tech-source-tabs {
    padding: 0 10px;
  }
}

@media (max-width: 359px) {
  /* 超小屏幕上调整集数列表为两列 */
  .idbn-tech-episode-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

/* 视频播放页的闪光效果 */
.idbn-tech-flash {
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(232,239,255,0.85);
  top: 0;
  left: -100%;
  animation: idbn-tech-flash 2s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes idbn-tech-flash {
  0% {
    left: -100%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0.5;
  }
}

/* 分页图标样式 */
.idbn-tech-icon {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}

.idbn-tech-pagination .idbn-tech-icon {
  font-family: Arial, sans-serif;
}

.idbn-tech-pagination a {
  color: #4a90e2;
  transition: all 0.3s ease;
}

.idbn-tech-pagination a:hover {
  color: #fff;
  background: #4a90e2;
}

.idbn-tech-pagination a.disabled {
  color: #999;
  cursor: not-allowed;
}

.idbn-tech-pagination a.disabled:hover {
  background: transparent;
  color: #999;
}

/* 保留原有样式兼容处理 */
.idbn-tech-related-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

/* 修复搜索框超出问题 */
.idbn-tech-search form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.idbn-tech-search .row [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .idbn-tech-search .container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .idbn-tech-search-form {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  
  .idbn-tech-search .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .idbn-tech-search .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

/* 添加加载中的状态样式 */
.idbn-tech-video-cover.idbn-tech-loading {
  opacity: 0.5;
  position: relative;
  animation: idbn-tech-pulse-loading 2s infinite;
}

/* 添加加载完成后的样式 */
.idbn-tech-video-cover.idbn-tech-loaded {
  opacity: 1;
  animation: idbn-tech-fade-in 0.5s forwards;
}

/* 添加动画关键帧 */
@keyframes idbn-tech-pulse-loading {
  0% {
    opacity: 0.3;
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.3);
  }
  70% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 150, 255, 0);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 150, 255, 0);
  }
}

@keyframes idbn-tech-fade-in {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* 数据加载中指示器 */
.idbn-tech-data-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: rgba(232,239,255,0.85);
}

.idbn-tech-loading-indicator {
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  border-top-color: rgba(0, 200, 255, 0.8);
  border-radius: 50%;
  animation: idbn-tech-spin 1s linear infinite;
}

.idbn-tech-loaded .idbn-tech-data-loading {
  opacity: 0;
  pointer-events: none;
}

@keyframes idbn-tech-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
