/* 漫画助手免费插件版区域样式 */
.platforms-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.platforms-content.centered-layout {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 上部分样式 */
.platforms-header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* 下部分样式 */
.platforms-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    clear: both;
}

.platforms-description {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #333;
}

.platforms-description p {
    margin-bottom: 15px;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.highlights-grid .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.platforms-cta {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .highlights-grid .row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .highlights-grid .row {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}