/*
Theme Name: Google Play Style
Theme URI: https://example.com/
Author: 你的名称
Author URI: https://example.com/
Description: 仿Google Play的应用推荐WordPress主题
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: google-play-style
*/

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}

/* 头部导航 */
.site-header {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-logo {
    width: 120px;
}
.nav-menu {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
}
.nav-menu a:hover {
    color: #007bff;
}

/* 主内容区 */
.site-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 置顶推荐栏 */
.featured-banner {
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.featured-text {
    flex: 1;
}
.featured-tag {
    font-size: 12px;
    color: #e0e0e0;
    margin-bottom: 8px;
}
.featured-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.featured-desc {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 12px;
}
.featured-btn {
    background-color: #34a853;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}
.featured-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

/* 特别关注栏（多卡片） */
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.special-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.special-card {
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 16px;
}
.special-card-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}
.special-card-text {
    flex: 1;
}
.special-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.special-card-desc {
    font-size: 12px;
    color: #e0e0e0;
    margin-bottom: 8px;
}

/* 个性化推荐（图标列表） */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.recommend-item {
    text-align: center;
}
.recommend-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 8px;
}
.recommend-name {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommend-rating {
    font-size: 10px;
    color: #666;
}

/* 底部 */
.site-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 14px;
    color: #666;
}