/* 导航页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* 顶部导航�?*/
.header {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 100;
}

/* MOOBC Logo 样式 */
.moobc-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 15px;
    background: linear-gradient(135deg, #333333, #444444);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.moobc-logo:hover {
    transform: scale(1.05);
}

.moobc-letter {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    margin: 0 2px;
    text-shadow: 1px 1px 2px #000;
    transition: all 0.3s ease;
    font-family: 'Arial Black', 'Segoe UI', sans-serif;
}

.moobc-letter:nth-child(1) { 
    color: #FF5252; 
    animation: letter-pulse 2s infinite alternate; 
}
.moobc-letter:nth-child(2) { 
    color: #FF9800; 
    animation: letter-pulse 2s 0.2s infinite alternate; 
}
.moobc-letter:nth-child(3) { 
    color: #FFEB3B; 
    animation: letter-pulse 2s 0.4s infinite alternate; 
}
.moobc-letter:nth-child(4) { 
    color: #4CAF50; 
    animation: letter-pulse 2s 0.6s infinite alternate; 
}
.moobc-letter:nth-child(5) { 
    color: #2196F3; 
    animation: letter-pulse 2s 0.8s infinite alternate; 
}

@keyframes letter-pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; text-shadow: 0 0 8px currentColor; }
}

/* 搜索�?*/
.search-container {
    flex: 1;
    max-width: 500px;
    min-width: 250px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

/* 关于菜单 */
.about-menu {
    display: flex;
    gap: 20px;
}

.about-link {
    color: #FFD700;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.about-link:hover {
    color: #FFC107;
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* 精选推荐区�?*/
.featured-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.section-title {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-icon {
    font-size: 1.5rem;
    animation: icon-bounce 2s infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title-decoration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
    margin-left: 10px;
}

/* 3D转轮轮播 */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 40px;
    padding: 40px 20px;
    max-width: 100%;
}

.carousel-wrapper {
    flex: 0 0 auto;
    width: 400px;
    max-width: 100%;
    height: 380px;
    position: relative;
    perspective: 1500px;
    overflow: visible;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 350px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    will-change: transform, opacity;
}

.carousel-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-item:hover .carousel-card {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.carousel-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-image svg {
    width: 70px;
    height: 70px;
    color: #667eea;
}

.carousel-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.carousel-card p {
    font-size: 0.95rem;
    color: #666;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    font-size: 2rem;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 20;
    position: relative;
    user-select: none;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #667eea;
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* 全部应用区域 - 横向列表 */
.all-apps-section {
    margin-bottom: 60px;
    padding-top: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-list-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.app-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.app-list-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

.app-list-item:hover::before {
    transform: scaleY(1);
}

.app-list-rank {
    flex-shrink: 0;
}

.rank-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
}

.rank-number.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.rank-number.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.4);
}

.rank-number.bronze {
    background: linear-gradient(135deg, #CD7F32, #B8733C);
    box-shadow: 0 5px 15px rgba(205, 127, 50, 0.4);
}

.app-list-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-list-content {
    flex: 1;
    min-width: 0;
}

.app-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 15px;
    flex-wrap: wrap;
}

.app-list-title {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.app-list-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.app-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.app-badge.new {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.app-badge.game {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.app-rating {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.app-list-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.app-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-list-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.app-list-stats {
    display: flex;
    gap: 10px;
}

.stat-item {
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
}

.app-list-arrow {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.app-list-item:hover .app-list-arrow {
    transform: translateX(5px);
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.footer {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-top: 30px;
}

.footer-content {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 20px;
    line-height: 1.8;
    border: 1px solid rgba(68, 68, 68, 0.5);
}

.footer-content p {
    margin: 8px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
    font-weight: 500;
    margin-bottom: 12px;
    color: #CCCCCC;
}

.icp-info a,
.police-info a {
    color: #FFD700;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.icp-info a:hover,
.police-info a:hover {
    color: #FFC107;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.police-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
}

.police-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.contact-info {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #CCCCCC;
}

/* 模态框样式 */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content {
    padding: 40px 30px;
}

.modal-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content h3 {
    color: #555;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content p {
    color: #666;
    line-height: 1.8;
    margin: 10px 0;
}

.modal-content ul {
    color: #666;
    line-height: 1.8;
    margin: 10px 0;
    padding-left: 30px;
}

.modal-content ul li {
    margin: 8px 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

.about-info {
    text-align: left;
}

.donation-info {
    text-align: center;
}

.donation-info img {
    max-width: 300px;
    width: 100%;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scan-tip {
    font-size: 0.95rem;
    color: #888;
    margin-top: 10px;
}

.donate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .moobc-logo {
        justify-content: center;
    }
    
    .moobc-letter {
        font-size: 24px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-input {
        padding: 10px 40px 10px 15px;
        font-size: 14px;
    }
    
    .about-menu {
        justify-content: center;
    }
    
    .title {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .title-decoration {
        font-size: 0.8rem;
        margin-left: 0;
    }
    
    /* 轮播响应�?*/
    .carousel-container {
        flex-direction: row;
        gap: 15px;
        padding: 30px 10px;
    }
    
    .carousel-wrapper {
        max-width: 300px;
        height: 350px;
    }
    
    .carousel-item {
        width: 260px;
        height: 320px;
    }
    
    .carousel-card {
        padding: 25px 20px;
    }
    
    .carousel-image {
        width: 110px;
        height: 110px;
        margin-bottom: 15px;
    }
    
    .carousel-card h3 {
        font-size: 1.2rem;
    }
    
    .carousel-card p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    /* 分类标签响应�?*/
    
    /* 排行榜响应式 */
    
    /* 应用列表响应�?*/
    .app-list-item {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .app-list-rank {
        order: 1;
    }
    
    .app-list-icon {
        width: 70px;
        height: 70px;
        order: 2;
    }
    
    .app-list-content {
        order: 4;
        width: 100%;
    }
    
    .app-list-arrow {
        order: 3;
        font-size: 1.5rem;
    }
    
    .rank-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .app-list-title {
        font-size: 1.2rem;
    }
    
    .app-list-desc {
        font-size: 0.9rem;
    }
    
    .app-list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-list-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .donation-info img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    
    .carousel-item {
        width: 220px;
        height: 290px;
    }
    
    .carousel-card {
        padding: 20px 15px;
    }
    
    .carousel-image {
        width: 100px;
        height: 100px;
    }
    
    .carousel-card h3 {
        font-size: 1.1rem;
    }
    
    .carousel-card p {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .app-list-item {
        padding: 15px;
        gap: 12px;
    }
    
    .rank-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .app-list-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-list-title {
        font-size: 1.1rem;
    }
    
    .app-list-desc {
        font-size: 0.85rem;
    }
    
    .app-list-arrow {
        font-size: 1.3rem;
    }
}


/* 筛选按钮响应式 */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .title-decoration {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

/* 页脚统计信息样式 */
.stats-info {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stats-info span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stats-separator {
    color: #666;
}

/* VIP 徽章样式 */
.app-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* 响应式 - 页脚统计 */
@media (max-width: 768px) {
    .stats-info {
        font-size: 0.8rem;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .stats-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .stats-separator {
        display: none;
    }
}
