body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #0b0c10;
    color: #f1f1f1;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #141820;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
}

.nav a {
    margin-right: 12px;
    font-size: 14px;
}

.search-form {
    margin-left: auto;
}

.search-form input {
    padding: 4px 8px;
    border-radius: 4px;
    border: none;
}

.site-main {
    padding: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.video-card {
    background: #161a23;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s;
}

.video-card:hover {
    transform: translateY(-3px);
}

.video-card img {
    width: 100%;
    display: block;
}

.video-info {
    padding: 8px;
}

.video-info h3 {
    margin: 0 0 4px;
    font-size: 14px;
}

.video-info .category {
    font-size: 12px;
    color: #999;
}

.site-footer {
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #222;
    margin-top: 20px;
}

.player-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.player-wrap video {
    width: 100%;
    max-height: 520px;
    background: #000;
}

.video-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}
/* 限制主要区域最大宽度 */
.site-main,
.site-header,
.cat-bar,
.site-footer {
    max-width: 760px;
    margin: 0 auto; /* 居中 */
}

/* 页面整体左右留白 */
body {
    padding-left: 10px;
    padding-right: 10px;
}

/* 每一行分类容器：一级 + 二级 */
.cat-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

/* 左侧一级分类：统一宽度，所有行左边对齐 */
.cat-main {
    flex: 0 0 60px;
    margin-right: 8px;
    color: #fff;
    font-size: 14px;
}

/* 右侧二级分类区域：占满剩余宽度 */
.cat-tags {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow: hidden;
}

/* 二级按钮：自动平分一行宽度 */
.cat-tags a {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    background: #222;
    color: #ccc;
    padding: 6px 6px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-tags a:hover {
    background: #333;
}

/* 整个页面左右留 10px */
body {
    padding-left: 10px;
    padding-right: 10px;
}

/* 主要区域限制宽度并居中 */
.site-header,
.cat-bar,
.site-main,
.site-footer {
    max-width: 760px;
    margin: 0 auto;
}

/* 广告位：每行 6 个图标，自动换行 */
.cat-ads {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 12px;
}

/* 图标外层，自动适应 */
.cat-ads a {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
}

/* 图标自适应填充 */
.cat-ads img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* logo 限制大小 */
.logo img {
    height: 20px;
    width: auto;
    display: block;
}

/* 推广广告按钮样式 */
.promo-row .cat-tags a {
    color: #fff;
    font-weight: bold;
}

/* 四个不同颜色 */
.promo1 { background: #ff4b4b !important; }
.promo2 { background: #ff933b !important; }
.promo3 { background: #3aa3ff !important; }
.promo4 { background: #42c76a !important; }

/* 悬停效果 */
.promo-row .cat-tags a:hover {
    opacity: 0.85;
}

/* 五彩文字广告区：每行固定 5 个，自动三行 */
.text-ads {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* 文字广告按钮 */
.text-ads a {
    display: block;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 自动循环五彩缤纷颜色 */
.text-ads a:nth-child(1n)  { background: #ff4b4b; }
.text-ads a:nth-child(2n)  { background: #ff8f2a; }
.text-ads a:nth-child(3n)  { background: #ffd041; }
.text-ads a:nth-child(4n)  { background: #26c059; }
.text-ads a:nth-child(5n)  { background: #3aa3ff; }

/* 悬停透明度效果 */
.text-ads a:hover {
    opacity: 0.85;
}

/* 底部横幅广告区（无缝贴合） */
.banner-ads {
    width: 100%;
    max-width: 960px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
}

/* 横幅容器：强制固定比例 */
.banner-ads a {
    width: 100%;
    display: block;
    border-radius: 0;
    overflow: hidden;
}

/* 图片保持 960×100 比例（手机自动缩小） */
.banner-ads img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
