:root{
  /* 深夜诱惑主题 - 性感神秘配色 */
  --primary: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
  --primary-solid: #e91e63;
  --primary-dark: #ad1457;
  --secondary: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 100%);
  --secondary-solid: #9c27b0;
  --accent: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
  --accent-solid: #ff4081;

  /* 特殊诱惑色 */
  --neon-pink: #e91e63;
  --neon-purple: #9c27b0;
  --neon-rose: #ff4081;
  --neon-white: #ffffff;
  --seductive-red: #d32f2f;
  --midnight-purple: #4a148c;

  /* 深夜神秘主题 */
  --dark-bg: #0d0d0d;
  --dark-card: #1a1a1a;
  --dark-surface: #2d2d2d;
  --dark-text: #ffffff;
  --dark-text-secondary: #e0e0e0;

  /* 诱惑发光效果 */
  --glow-pink: 0 0 25px #e91e63, 0 0 50px #e91e63, 0 0 75px #e91e63;
  --glow-purple: 0 0 25px #9c27b0, 0 0 50px #9c27b0, 0 0 75px #9c27b0;
  --glow-rose: 0 0 25px #ff4081, 0 0 50px #ff4081, 0 0 75px #ff4081;
  --glow-strong: 0 0 15px currentColor, 0 0 30px currentColor, 0 0 60px currentColor, 0 0 90px currentColor;
  --glow-seductive: 0 0 30px #d32f2f, 0 0 60px #d32f2f, 0 0 90px #d32f2f;

  /* 通用色彩 */
  --white: #ffffff;
  --black: #000000;
  --border: rgba(233, 30, 99, 0.4);
  --shadow: rgba(233, 30, 99, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.9);

  /* 兼容旧变量 */
  --hong: var(--neon-pink);
  --huang: var(--secondary-solid);
  --babi: var(--primary-solid);
  --more: var(--primary-solid);
  --qian: var(--accent-solid);
  --bai: var(--white);
  --hei: var(--dark-text);
  --tan: var(--dark-text-secondary);
  --hui: var(--dark-surface);
  --yin: var(--dark-bg);
}
/* 性感成人网站全局样式 */
*,*::before,*::after{
  margin:0;
  padding:0;
  border:0;
  outline:0;
  box-sizing: border-box;
}

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

body{
  font-family: 'Orbitron', 'Roboto', 'Arial', sans-serif;
  background: var(--dark-bg);
  color: var(--dark-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* 深夜诱惑动态背景 */
body::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 64, 129, 0.08) 0%, transparent 50%),
    linear-gradient(45deg, rgba(233, 30, 99, 0.06) 0%, rgba(156, 39, 176, 0.06) 100%);
  z-index: -2;
  animation: seductivePulse 20s ease-in-out infinite;
}

/* 诱惑网格背景 */
body::after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(156, 39, 176, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 30, 99, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  opacity: 0.5;
  animation: gridFloat 25s linear infinite;
}

@keyframes seductivePulse {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  33% { opacity: 0.7; transform: scale(1.03) rotate(0.8deg); }
  66% { opacity: 0.9; transform: scale(0.97) rotate(-0.8deg); }
}

@keyframes gridFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(60px, 60px) rotate(1deg); }
}

a,button{
  cursor:pointer;
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration:none;
  -webkit-tap-highlight-color: transparent;
}

#app{
  width:100%;
  max-width: 1600px;
  margin:0 auto;
  padding:1rem;
  display: flex;
  flex-direction:column;
  align-items: center;
  min-height: 100vh;
  position: relative;
}



/* 深夜诱惑头部设计 */
.header{
  width:100%;
  padding:2rem 3rem;
  display: flex;
  justify-content:space-between;
  align-items: center;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 2px solid var(--neon-pink);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-pink);
}

.header::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  opacity: 0.08;
  z-index: -1;
  animation: headerLuxury 4s ease-in-out infinite;
}

@keyframes headerLuxury {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.15; }
}

.logo{
  display: flex;
  align-items: center;
  font-weight: 900;
  color: var(--neon-pink);
  font-size: 2rem;
  text-shadow: var(--glow-pink);
  position: relative;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  box-shadow: var(--glow-purple);
  animation: logoShine 3s ease-in-out infinite alternate;
}

@keyframes logoShine {
  0% { box-shadow: 0 0 15px var(--neon-purple); }
  100% { box-shadow: 0 0 30px var(--neon-purple), 0 0 50px var(--neon-purple); }
}

/* 性感域名横幅 */
.domain-banner {
  position: relative;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 50%, #9c27b0 100%);
  border-radius: 25px;
  padding: 0.8rem 2rem;
  margin: 0 1rem;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(255, 23, 68, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  animation: domainPulse 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.domain-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: domainShine 4s ease-in-out infinite;
}

.domain-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.domain-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.domain-url {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 23, 68, 0.8);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.domain-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.3) 0%, transparent 70%);
  animation: domainGlow 2s ease-in-out infinite alternate;
}

@keyframes domainPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 8px 32px rgba(255, 23, 68, 0.4),
      inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow:
      0 12px 40px rgba(255, 23, 68, 0.6),
      inset 0 0 25px rgba(255, 255, 255, 0.15);
  }
}

@keyframes domainShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@keyframes domainGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.logo svg{
  height:3rem;
  margin-right:1.5rem;
  filter: drop-shadow(0 0 12px var(--neon-orange));
}

.logo h1{
  font-size:2.2rem;
  font-weight:900;
  color:var(--neon-orange);
  margin: 0;
  text-shadow: var(--glow-strong);
}

/* 诱惑搜索框 */
.soso{
  width: 28rem;
  height: 4rem;
  border-radius:50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(15px);
  border: 2px solid var(--neon-pink);
  box-shadow:
    0 0 25px rgba(233, 30, 99, 0.6),
    inset 0 0 25px rgba(233, 30, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.soso::before{
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.soso:focus-within{
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 35px rgba(233, 30, 99, 0.8),
    0 0 70px rgba(156, 39, 176, 0.4),
    inset 0 0 35px rgba(233, 30, 99, 0.2);
  border-color: var(--neon-purple);
}

.soso:focus-within::before{
  opacity: 0.2;
  animation: searchLuxury 2s ease-in-out infinite;
}

@keyframes searchLuxury {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.03); opacity: 0.3; }
}

.soso input{
  width: 100%;
  height:100%;
  padding:0 2.5rem;
  background:transparent;
  border: none;
  color:var(--white);
  font-size:1.1rem;
  font-weight: 600;
  caret-color:var(--neon-purple);
  font-family: 'Orbitron', sans-serif;
}

.soso button{
  border:0;
  padding:0;
  width: 4rem;
  height:4rem;
  cursor:pointer;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 50%;
  margin-right: -2px;
  box-shadow:
    0 0 25px rgba(156, 39, 176, 0.7),
    inset 0 0 25px rgba(156, 39, 176, 0.3);
}

.soso button:hover{
  background: var(--accent);
  transform: scale(1.15) rotate(15deg);
  box-shadow:
    0 0 35px rgba(255, 64, 129, 0.9),
    0 0 70px rgba(255, 64, 129, 0.5);
}

.soso button svg{
  width:1.8rem;
  height:1.8rem;
  fill:var(--white);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

input{
  appearance: none;
  -webkit-appearance:none;
  outline: none;
}
input::placeholder{
  color:rgba(255, 255, 255, 0.8);
  font-size:1.1rem;
  font-weight: 500;
}



/* 金橙奢华内容卡片 */
.box{
  width:100%;
  margin-bottom: 2rem;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction:column;
  border-radius: 24px;
  border: 2px solid var(--neon-orange);
  box-shadow:
    0 0 35px rgba(255, 107, 53, 0.25),
    inset 0 0 35px rgba(255, 107, 53, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  opacity: 0.04;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.box:hover{
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 50px rgba(255, 107, 53, 0.4),
    0 0 100px rgba(255, 215, 0, 0.15),
    inset 0 0 50px rgba(255, 107, 53, 0.12);
  border-color: var(--neon-gold);
}

.box:hover::before{
  opacity: 0.08;
}

/* 全新推荐框标题设计 */
.title{
  padding:1.5rem 2.5rem;
  width: 100%;
  background: var(--primary);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 5rem;
  position: relative;
  overflow: hidden;
}

/* 动态光效背景 */
.title::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.title:hover::before{
  left: 100%;
}

/* 装饰性边框 */
.title::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  box-shadow: var(--glow-gold);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { box-shadow: 0 0 10px var(--neon-gold); }
  100% { box-shadow: 0 0 25px var(--neon-gold), 0 0 40px var(--neon-gold); }
}

.title h3{
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  font-weight: 800;
  text-shadow: var(--glow-orange);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

/* 标题图标装饰 */
.title h3::before{
  content: '🔥';
  margin-right: 1rem;
  font-size: 1.2rem;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.title a{
  display: block;
  font-size:1rem;
  line-height: 1.4;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 1rem 2rem;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

/* 按钮悬停效果 */
.title a::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  transition: left 0.4s ease;
  z-index: -1;
}

.title a:hover::before{
  left: 0;
}

.title a:hover{
  transform: scale(1.1) translateY(-3px);
  box-shadow: var(--glow-gold);
  border-color: var(--neon-gold);
}


.nav{
  width:100%;
  margin-bottom:1.5rem;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap:.5rem;
  padding: 0;
}
.nav a{
  display: block;
  width:100%;
  height: 2.5rem;
  line-height:2.5rem;
  font-size: .95rem;
  font-weight:600;
  text-align:center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color:var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}
.nav a:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.link1{
  width:100%;
  margin-bottom:1rem;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap:.5rem;
}
.link1 a{
  display: block;
  width:100%;
  height: 2.5rem;
  line-height:2.5rem;
  font-size: .9rem;
  text-align:center;
  overflow: hidden;
  background: var(--white);
  color:var(--secondary);
  border-radius: 8px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  font-weight: 500;
}
.link1 a:hover{
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

.links{
  width: 100%;
  padding:1.5rem;
  box-sizing: border-box;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap:.5rem;
}
.links a{
  display: block;
  width:100%;
  height: 2.5rem;
  line-height:2.5rem;
  font-size: .85rem;
  text-align:center;
  overflow: hidden;
  background: var(--light-gray);
  color:var(--dark);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.links a:hover{
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* 性感视频卡片网格 - 优化居中布局 */
.vods{
  width: 100%;
  padding:2rem 1rem;
  box-sizing: border-box;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vod{
  width:calc(50% - 0.5rem);
  max-width: 280px;
  min-width: 240px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow:
    0 0 25px rgba(255, 107, 53, 0.15),
    inset 0 0 25px rgba(255, 107, 53, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.vod::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.vod:hover{
  transform: translateY(-8px) scale(1.03);
  border-color: var(--neon-gold);
  box-shadow:
    0 0 45px rgba(255, 107, 53, 0.3),
    0 0 90px rgba(255, 215, 0, 0.15),
    inset 0 0 45px rgba(255, 107, 53, 0.08);
}

.vod:hover::before{
  opacity: 0.06;
}

.vod-img{
  width: 100%;
  height:0;
  padding-top:56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.vod-img a{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 215, 0, 0.06) 100%);
}

.vod-img::after{
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.vod:hover .vod-img::after{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
  color: var(--neon-orange);
  text-shadow: var(--glow-orange);
}

.vod-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
}

.vod:hover .vod-img img{
  transform: scale(1.1);
  filter: brightness(0.65) contrast(1.2) saturate(1.2);
}

.vod-txt{
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

.vod-txt a{
  display:block;
  font-size:1rem;
  line-height:1.5;
  color:var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.vod-txt a:hover{
  color:var(--neon-orange);
  text-shadow: var(--glow-orange);
}

.pages{
  width: 100%;
  margin:2rem 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pages a{
  padding:.75rem 1.25rem;
  border-radius:8px;
  background: var(--white);
  font-size:.9rem;
  color:var(--dark);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 2.5rem;
  text-align: center;
}
.pages a:hover{
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.pages .num{display: none}
.pages .on{
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.player{
  width:100%;
  height:0;
  padding-top:56.25%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.player iframe{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.footer{
  width: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
  margin-top: 3rem;
  padding: 3rem 0;
  font-size: .85rem;
  text-align: center;
  display: flex;
  flex-direction:column;
  align-items: center;
  color: #d1d5db;
  line-height: 1.6;
}
/* 移动端优化 */
@media (max-width:539px) {
  .header{
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    height: auto;
  }
  .soso{width: 100%;}
  .nav{grid-template-columns: repeat(3, 1fr);}
  .link1, .links{grid-template-columns: repeat(3, 1fr);}
  .vods{
    padding: 1rem 0.5rem;
    gap: 0.8rem;
  }
  .vod{
    width: calc(50% - 0.4rem) !important;
    max-width: none !important;
    min-width: auto !important;
  }

  /* 手机端视频文字优化 */
  .vod-txt{
    padding: 1rem;
  }

  .vod-txt a{
    font-size: 0.85rem;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  .links{padding: 1rem;}

  /* 移动端域名横幅优化 */
  .domain-banner {
    margin: 0.5rem 0;
    padding: 0.6rem 1rem;
    border-radius: 15px;
  }

  .domain-label {
    font-size: 0.8rem;
  }

  .domain-url {
    font-size: 0.9rem;
  }
}

/* 平板端优化 */
@media (min-width:540px) {
  .vod{
    width:calc(33.333% - 0.67rem);
    max-width: 300px;
  }
  .vods{
    padding: 2rem 1.5rem;
    gap: 1rem;
  }
  .nav{grid-template-columns: repeat(6, 1fr);}
  .link1, .links{grid-template-columns: repeat(6, 1fr);}
  .header{padding: 1.5rem 2rem;}
  .soso{width: 20rem;}
}

/* 桌面端优化 */
@media (min-width:864px) {
  .header{
    padding: 1.5rem 2rem;
    flex-wrap: nowrap;
  }
  .soso{width: 24rem;}
  .nav, .link1, .links{grid-template-columns: repeat(8, 1fr);}
  .vod{
    width:calc(25% - 0.75rem);
    max-width: 280px;
  }
  .vods{
    padding: 2rem;
    gap: 1rem;
  }
  .pages .num{display:block;}
  .box{margin-bottom: 2rem;}
  .links{padding: 2rem;}

  /* 桌面端域名横幅优化 */
  .domain-banner {
    margin: 0 2rem;
    padding: 1rem 2.5rem;
  }

  .domain-banner:hover {
    transform: scale(1.05);
    box-shadow:
      0 15px 50px rgba(255, 23, 68, 0.6),
      inset 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

/* 大屏幕优化 */
@media (min-width:1088px) {
  #app{
    width:1200px;
    padding: 0 2rem;
  }
  .vod{
    width:calc(20% - 0.8rem);
    max-width: 260px;
  }
  .vods{
    padding: 2rem 1.5rem;
    gap: 1rem;
  }
  .nav{grid-template-columns: repeat(10, 1fr);}
  .link1, .links{grid-template-columns: repeat(8, 1fr);}
}

/* 超大屏幕优化 */
@media (min-width:1400px) {
  #app{width:1400px;}
  .vod{
    width:calc(16.666% - 0.84rem);
    max-width: 240px;
  }
  .vods{
    padding: 2rem;
    gap: 1.2rem;
  }
  .nav{grid-template-columns: repeat(12, 1fr);}
}