/* skin/css/index.css */

/* 海报 Banner */
.poster-swiper-box {
    position: relative;
    background: #fff;
    padding: 5px;
    border: 3px solid #000;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
    transform: rotate(-1deg); /* 微微倾斜 */
    margin: 20px 10px;
}
.tape-deco {
    width: 100px; height: 30px;
    background: rgba(255,255,255,0.7);
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%) rotate(2deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.main-swiper img { width: 100%; height: auto; border: 2px solid #000; }

/* 胶卷列表 (最新应用) */
.film-strip {
    display: flex;
    overflow-x: auto;
    background: #000;
    padding: 10px 0;
    gap: 15px;
}
.film-item {
    flex: 0 0 70px;
    background: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
}
.film-item img {
    width: 60px; height: 60px; border: 2px solid #000; margin-bottom: 5px;
}
.film-item span { font-weight: bold; font-size: 12px; }

/* 堆叠卡片 (热门游戏) */
.stack-list { display: flex; flex-direction: column; gap: 15px; padding: 0 5px; }
.pop-card {
    background: var(--pop-white);
    border: 3px solid var(--pop-black);
    border-radius: 12px;
    padding: 15px;
    display: flex; align-items: center;
    box-shadow: 4px 4px 0 var(--pop-black);
    transition: transform 0.1s;
}
.pop-card:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--pop-black); }
.pc-icon { width: 56px; height: 56px; border: 2px solid #000; border-radius: 10px; margin-right: 15px; }
.pc-info { flex: 1; }
.pc-info h3 { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.pc-info p { font-size: 12px; font-weight: bold; color: #555; }

/* 漫画网格 (安卓游戏) */
.comic-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; padding: 0 5px;
}
.cg-item {
    background: #fff; border: 2px solid #000;
    border-radius: 10px; padding: 8px 4px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.cg-item img { width: 40px; height: 40px; border: 2px solid #000; border-radius: 50%; margin-bottom: 5px; }
.cg-item span { font-size: 11px; font-weight: bold; }

/* 条纹列表 (热门软件) */
.stripe-list {
    background: #fff; border: 3px solid #000; border-radius: 12px; overflow: hidden;
}
.stripe-row {
    display: flex; align-items: center; padding: 10px 15px;
    border-bottom: 2px solid #000;
}
.stripe-row:nth-child(even) { background: #f9f9f9; }
.stripe-row:last-child { border-bottom: none; }
.stripe-row img { width: 32px; height: 32px; border: 2px solid #000; margin-right: 15px; border-radius: 6px; }
.stripe-row span { flex: 1; font-weight: 900; font-size: 14px; }
.s-dl { background: var(--pop-pink); color: #fff; padding: 4px 10px; border: 2px solid #000; border-radius: 20px; font-size: 12px; font-weight: bold; }

/* 排行榜 */
.rank-board {
    background: var(--pop-blue); border: 3px solid #000;
    border-radius: 12px; padding: 10px; color: #fff;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}
.rank-strip {
    display: flex; align-items: center; padding: 8px 0;
    border-bottom: 2px dashed rgba(255,255,255,0.5);
}
.rank-strip:last-child { border-bottom: none; }
.rs-num { 
    font-size: 20px; font-weight: 900; width: 30px; 
    text-shadow: 2px 2px 0 #000; margin-right: 10px; 
}
.rs-name { flex: 1; font-weight: bold; text-shadow: 1px 1px 0 #000; }
.rs-hot { font-weight: bold; color: var(--pop-yellow); text-shadow: 1px 1px 0 #000; }