/* 游戏开发者资料样式 */
.developer-page {
    width: 650px;
}

.developer-profile {
    margin-bottom: 25px;
}

.developer-header {
    display: flex;
    padding: 20px;
}

.developer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.developer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gray);
}

.developer-info {
    flex: 1;
}

.developer-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
}


.developer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray);
}

.developer-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.developer-bio {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
}

/* 游戏列表样式 - 复制APK样式并修改类名 */
.game-list-app-list {
    display: flex;
    flex-direction: column;
}

.game-list-app-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
    gap: 15px;
}

.game-list-app-item:last-child {
    border-bottom: none;
}

.game-list-app-item:hover {
    background-color: rgba(var(--primary-rgb), 0.02);
}

.game-list-app-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

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

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

.game-list-app-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-list-app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
}

.game-list-app-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-list-app-actions {
    flex-shrink: 0;
    margin-left: 15px;
}

.game-list-app-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
    min-width: 80px;
}

/* 分页样式 - 复制APK样式并修改类名 */
.game-list-pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
}

.game-list-pagination-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    gap: 6px;
}

.game-list-pagination-btn:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.game-list-pagination-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* 空结果样式 */
.empty-result {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--border);
}

.empty-result h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-result p {
    margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .developer-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .developer-page {
        width: 100%;
    }
    
    .developer-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .developer-meta {
        justify-content: center;
    }
    
    .game-list-app-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .game-list-app-icon-wrapper {
        margin-bottom: 5px;
    }
    
    .game-list-app-actions {
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
    }
    
    .game-list-app-actions .btn {
        width: 100%;
    }
    
    .game-list-pagination-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
