body, html {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* background-color: #1f2937;
    color: #f9fafb; */
    color: #1f2937
}

/* 第一屏 */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

header section{
    position: relative;
    z-index: 2;
}

.object-cover {
    object-fit: cover;
}

.object-center {
    object-position: center;
}

.bg-black\/60 {
    background: rgba(0,0,0,0.01);
}

.inset-0 {
    width: 100%;
    height: 100%;
}

.z-\[1\] {
    z-index: 1;
}

.absolute {
    position: absolute;
}

header logo{
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FECE06;
    margin-bottom: 30px;
}

header button {
    padding: 15px 35px;
    font-size: 1.2rem;
    background-color: #FECE06;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #333333;
    transition: transform 0.2s;
}

header button a{
    color: #333333;
    text-decoration: none;
}

header button:hover {
    transform: scale(1.05);
}

header button:hover a{
    text-decoration: none;
}

@media (max-width: 1200px) {
    header h1 {
        font-size: 2.5rem;
    }
    header button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.company{
    padding-bottom: 20px;
}

.company p{
    padding-bottom: .2rem;
    font-size: 1rem;
    line-height: 1.8rem;
    text-align: center;
}

main {
    margin: 40px auto;
    padding: 0 10rem;
}

main h2 {
    color: #1A1A1A;
    margin: 40px 0;
    font-size: 2rem;
    text-align: center;
}

main p, main li {
    margin-bottom: 15px;
}

main ul {
    padding-left: 20px;
}

/* 固定 5 列的剧集网格 */
.show-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 始终 6 列 */
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* 响应式处理，小屏幕自动换行 */
@media (max-width: 1000px) {
    .show-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .show-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.show-card {
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transition:  transform 0.3s ease;
    /* 卡片整体轻微上浮，增加互动感 */
}

.show-card img {
    width: 100%;
    display: block;            /* 避免 inline 多余间隙 */
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
    will-change: transform;    /* 优化动画性能 */
}

.show-card:hover {
    transform: translateY(-2px);
}

.show-card:hover img {
    transform: scale(1.04);    /* 减小缩放幅度，避免突兀 */
    filter: brightness(1.02);  /* 轻微提亮，增加柔和感 */
}


.show-title {
    padding: 15px 0 10px 0;
    font-size:1rem;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    color: #9ca3af;
}

a {
    color: #f9fafb;
    text-decoration: none;
    margin: 0 10px;
}

a:hover {
    text-decoration: underline;
}

/*核心优势*/
.core-advantages {
    padding: 10px 0;
  }
  
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto;
  }
  
  .advantage-card {
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  

  .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
  
  .advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform .3s;
    background-color: #e8f0fe;
  }
  
  .advantage-content h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #333;
  }
  
  .advantage-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #5f6368;
  }
  
  /* 响应式处理：小屏幕改成单列 */
  @media (max-width: 768px) {
    .advantages-grid {
      grid-template-columns: 1fr;
    }
  }



