/* skin/css/download.css */

.app-detail-header {
    background: #fff;
    padding: 25px;
    margin: 20px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card); /* DNA: 阴影 */
    border: none;
}

.adh-top {
    display: flex;
    margin-bottom: 25px;
}

.d-icon {
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 20px;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.d-info h1 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2d3436;
}

.d-tags li {
    display: inline-block;
    background: #f1f2f6;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #636e72;
    margin-right: 5px;
    margin-bottom: 5px;
}

.main-down-btn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(90deg, var(--primary-color), #ff9f43);
    color: #fff;
    text-align: center;
    border-radius: 25px;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4); /* Stronger shadow */
    transition: transform 0.2s;
}
.main-down-btn:active { transform: scale(0.98); }
.swiper-slide {
    width: auto;
}
.screenshot-swiper { padding-bottom: 20px; }
.swiper-slide img, .swiper-slide video {
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 500px;
    object-fit: fill;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.app-intro {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    font-size: 15px;
    color: #636e72;
    line-height: 1.8;
}