        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #ffb3b3;
            font-family: Arial, "Microsoft YaHei", sans-serif;
        }
        
        .container {
            width: 1500px;
            margin: 0 auto;
            background-color: #2a2a2a;
            min-height: 100vh;
            color: #fff;
        }
        
        header {
            background-color: #1a1a1a;
            padding: 20px 0;
            text-align: center;
        }
        
        h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #ff6b6b;
        }
        
        nav {
            background-color: #333;
            padding: 15px 0;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 40px;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        nav a:hover {
            background-color: #ff6b6b;
        }
        
        .content {
            padding: 40px;
        }
        
        .section-title {
            font-size: 24px;
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .section-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background-color: #ff6b6b;
        }
        
        .anime-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .anime-item {
    cursor: pointer;
    transition: transform 0.3s;
    position: relative; /* 新增：作为播放图定位参考 */
    overflow: hidden; /* 新增：防止图标溢出 */
}

        
        .anime-item:hover {
            transform: scale(1.05);
        }
        
        .anime-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .anime-item h3 {
            text-align: center;
            margin-top: 10px;
            font-size: 16px;
        }
        /* 播放图标伪元素 - 新增 */

.anime-item::after {
    content: "";
    background-image: url("../bofang.png");
    background-size: 180px 180px; /* 修正后的尺寸 */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; /* 修正后的尺寸 */
    height: 180px; /* 修正后的尺寸 */
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0.1) contrast(8); /* 新增这一行，实现颜色加深 */
}


.anime-item:hover::after {
    opacity: 1;
}

        .promo-section {
            text-align: center;
            margin: 60px 0;
            padding: 40px;
            background-color: #1a1a1a;
            border-radius: 10px;
        }
        
        .promo-title {
            font-size: 28px;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        
        .promo-text {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #ff6b6b;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 18px;
            transition: background-color 0.3s;
            margin: 10px;
        }
        
        .btn:hover {
            background-color: #ff5252;
        }
        
        .btn-secondary {
            background-color: #666;
        }
        
        .btn-secondary:hover {
            background-color: #555;
        }
        
        footer {
            text-align: center;
            padding: 30px;
            background-color: #1a1a1a;
            color: #999;
        }
        
        /* 弹窗样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 1000;
        }
        
        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #2a2a2a;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            min-width: 300px;
        }
        
        .modal-content h2 {
            color: #ff6b6b;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #fff;
        }
        
        .close:hover {
            color: #ff6b6b;
        }
        
        .modal-desc {
            margin: 20px 0;
            font-size: 16px;
        }
		
		
		
		
		/* ---- 漫画标题水平线 ---- */
.manga-section-title{
    font-size:24px;
    margin:50px 0 20px;
    display:flex;
    align-items:center;
    gap:20px;
}
.manga-section-title::after{
    content:'';
    flex:1;
    height:2px;
    background:#ff6b6b;
}

/* ---- 漫画网格 ---- */
.manga-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}
.manga-item{
    cursor:pointer;
    transition:transform .3s;
position: relative; /* 新增：作为播放图定位参考 */
    overflow: hidden; /* 新增：防止图标溢出 */
}
.manga-item:hover{
    transform:scale(1.05);
}
.manga-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}
.manga-item h3{
    text-align:center;
    margin-top:10px;
    font-size:16px;


}
.manga-item::after {
    content: "";
    background-image: url("../bofang.png");
    background-size: 180px 180px; /* 修正后的尺寸 */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; /* 修正后的尺寸 */
    height: 180px; /* 修正后的尺寸 */
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0.1) contrast(8); /* 新增这一行，实现颜色加深 */
}
.game-section-title{
    font-size:24px;
    margin:50px 0 20px;
    display:flex;
    align-items:center;
    gap:20px;
}
.game-section-title::after{
    content:'';
    flex:1;
    height:2px;
    background:#ff6b6b;
}

/* ---- 游戏网格 ---- */
.game-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}
.game-item{
    cursor:pointer;
    transition:transform .3s;
position: relative; /* 新增：作为播放图定位参考 */
    overflow: hidden; /* 新增：防止图标溢出 */
}
.game-item:hover{
    transform:scale(1.05);
}
.game-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}
.game-item h3{
    text-align:center;
    margin-top:10px;
    font-size:16px;
}

.game-item::after {
    content: "";
    background-image: url("../bofang.png");
    background-size: 180px 180px; /* 修正后的尺寸 */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; /* 修正后的尺寸 */
    height: 180px; /* 修正后的尺寸 */
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0.1) contrast(8); /* 新增这一行，实现颜色加深 */
}




.photo-section-title{
    font-size:24px;
    margin:50px 0 20px;
    display:flex;
    align-items:center;
    gap:20px;
}
.photo-section-title::after{
    content:'';
    flex:1;
    height:2px;
    background:#ff6b6b;
}

/* ---- 写真网格 ---- */
.photo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}
.photo-item{
    cursor:pointer;
    transition:transform .3s;
position: relative; /* 新增：作为播放图定位参考 */
    overflow: hidden; /* 新增：防止图标溢出 */
}
.photo-item:hover{
    transform:scale(1.05);
}
.photo-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}
.photo-item h3{
    text-align:center;
    margin-top:10px;
    font-size:16px;
}

.photo-item::after {
    content: "";
    background-image: url("../bofang.png");
    background-size: 180px 180px; /* 修正后的尺寸 */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; /* 修正后的尺寸 */
    height: 180px; /* 修正后的尺寸 */
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0.1) contrast(8); /* 新增这一行，实现颜色加深 */
}









/* ---- 真人标题水平线 ---- */
.real-section-title{
    font-size:24px;
    margin:50px 0 20px;
    display:flex;
    align-items:center;
    gap:20px;
}
.real-section-title::after{
    content:'';
    flex:1;
    height:2px;
    background:#ff6b6b;
}

/* ---- 真人网格 ---- */
.real-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}
.real-item{
    cursor:pointer;
    transition:transform .3s;
position: relative; /* 新增：作为播放图定位参考 */
    overflow: hidden; /* 新增：防止图标溢出 */
}
.real-item:hover{
    transform:scale(1.05);
}
.real-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}
.real-item h3{
    text-align:center;
    margin-top:10px;
    font-size:16px;
}


.real-item::after {
    content: "";
    background-image: url("../bofang.png");
    background-size: 180px 180px; /* 修正后的尺寸 */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; /* 修正后的尺寸 */
    height: 180px; /* 修正后的尺寸 */
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0.1) contrast(8); /* 新增这一行，实现颜色加深 */
}





/* ---- 标题水平线 ---- */
.mf-section-title{
    font-size: 28px;
    margin: 60px 0 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.mf-section-title::after{
    content: '';
    flex: 1;
    height: 2px;
    background: #ff6b6b;
}

/* ---- 一行一模块大卡片 ---- */
.mf-row-card{
    display: flex;
    align-items: center;
    gap: 30px;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: transform .3s;
}
.mf-row-card:hover{
    transform: translateY(-4px);
}
.mf-row-img{
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.mf-row-content{
    color: #fff;
}
.mf-row-title{
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff6b6b;
}
.mf-row-desc{
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
}

/* ---- 右下角机器人气泡 ---- */
.mf-bot-bubble{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    box-shadow: 0 4px 20px rgba(255,107,107,.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}
@keyframes float{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
}

/* ---- 机器人对话框 ---- */
.mf-dialog-overlay{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1001;
}
.mf-dialog-box{
    position: absolute;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
    overflow: hidden;
}
.mf-dialog-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ff6b6b;
    color: #fff;
    font-size: 16px;
}
.mf-dialog-close{
    cursor: pointer;
    font-size: 20px;
}
.mf-dialog-body{
    padding: 16px;
    color: #eee;
    font-size: 14px;
    line-height: 1.6;
}
.mf-dialog-body p{
    margin: 8px 0;
}
.mf-dialog-body strong{
    color: #ff6b6b;
}

.mf-bot-bubble{
    position: absolute;          /* 关键：绝对定位 */
    bottom: 30px;                /* 距底部 30px */
    left: calc(100% - 300px);    /* 距右 300px（向左移300px） */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    box-shadow: 0 4px 20px rgba(255,107,107,.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}



.mf-copy-area{
    width: 800px;
    margin: 40px auto;
    text-align: center;
}
.mf-step-title{
    font-size: 22px;
    color: #ff6b6b;
    margin-bottom: 25px;
}
.mf-copy-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2a2a2a;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 15px;
}
.mf-copy-text{
    color: #ff6b6b;          /* 红字 */
    font-size: 16px;
    user-select: all;        /* 允许手动选择 */
}
.mf-copy-btn{
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background .3s;
}
.mf-copy-btn:hover{
    background: #ff5252;
}
.mf-copy-tip{
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}